blob: cd6d4b610d1f9b823d75b0d195fc5cbddc59948e [file] [log] [blame]
Krishya34493be2025-06-09 22:45:46 +08001/* .newbie-tasks {
2230100901d3ff92025-06-07 16:16:26 +08002 font-size: 16px;
3 line-height: 1.6;
4}
5
6.task-list ul {
7 list-style: none;
8 padding: 0;
9}
10
11.task-card {
12 background-color: #f9f9f9;
13 border-radius: 12px;
14 padding: 15px;
15 margin-bottom: 15px;
16 box-shadow: 0 2px 5px rgba(0,0,0,0.05);
17}
18
19.task-btn-group {
20 display: flex;
21 gap: 10px;
22 margin-top: 10px;
23}
24
25.task-btn-group button {
26 padding: 6px 12px;
27 border: none;
28 border-radius: 6px;
29 background-color: #0057ff;
30 color: white;
31 cursor: pointer;
32 transition: background-color 0.3s;
33}
34
35.task-btn-group button:hover {
36 background-color: #003fcc;
37}
38
39.status-completed {
40 color: green;
41}
42.status-pending {
43 color: orange;
44}
45.status-failed {
46 color: red;
47}
48.newbie-tasks {
49 max-width: 800px;
50 margin: 0 auto;
51 padding: 20px;
52 background-color: #fff;
53 border-radius: 12px;
54 box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
55}
56
57.task-card {
58 background-color: #f9f9f9;
59 border-radius: 12px;
60 padding: 15px;
61 margin-bottom: 20px;
62 box-shadow: 0 1px 3px rgba(0,0,0,0.05);
63 border: 1px solid #eee;
Krishya34493be2025-06-09 22:45:46 +080064} */
65
66.newbie-tasks-container {
67 padding: 20px;
68}
69
70.page-title {
71 text-align: center;
72 margin-bottom: 20px;
73}
74
75.tasks-table {
76 width: 100%;
77 border-collapse: collapse;
78}
79
80.tasks-table th,
81.tasks-table td {
82 border: 1px solid #ccc;
83 padding: 10px;
84 text-align: left;
85}
86
87.tasks-table th {
88 background-color: #f4f4f4;
2230100901d3ff92025-06-07 16:16:26 +080089}