.newbie-tasks { | |
font-size: 16px; | |
line-height: 1.6; | |
} | |
.task-list ul { | |
list-style: none; | |
padding: 0; | |
} | |
.task-card { | |
background-color: #f9f9f9; | |
border-radius: 12px; | |
padding: 15px; | |
margin-bottom: 15px; | |
box-shadow: 0 2px 5px rgba(0,0,0,0.05); | |
} | |
.task-btn-group { | |
display: flex; | |
gap: 10px; | |
margin-top: 10px; | |
} | |
.task-btn-group button { | |
padding: 6px 12px; | |
border: none; | |
border-radius: 6px; | |
background-color: #0057ff; | |
color: white; | |
cursor: pointer; | |
transition: background-color 0.3s; | |
} | |
.task-btn-group button:hover { | |
background-color: #003fcc; | |
} | |
.status-completed { | |
color: green; | |
} | |
.status-pending { | |
color: orange; | |
} | |
.status-failed { | |
color: red; | |
} | |
.newbie-tasks { | |
max-width: 800px; | |
margin: 0 auto; | |
padding: 20px; | |
background-color: #fff; | |
border-radius: 12px; | |
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04); | |
} | |
.task-card { | |
background-color: #f9f9f9; | |
border-radius: 12px; | |
padding: 15px; | |
margin-bottom: 20px; | |
box-shadow: 0 1px 3px rgba(0,0,0,0.05); | |
border: 1px solid #eee; | |
} |