This repository was archived by the owner on Jan 29, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- body {
2- font-family : Arial, sans-serif;
3- background-color : # 1a1a1a ;
4- color : # ffffff ;
5- margin : 0 ;
6- padding : 20px ;
7- }
8- .container {
9- max-width : 800px ;
10- margin : 0 auto;
11- }
12- h1 , h2 {
13- color : # 4CAF50 ;
14- }
15- input , select , button {
16- margin : 5px ;
17- padding : 5px ;
18- border-radius : 5px ;
19- border : 1px solid # 4CAF50 ;
20- background-color : # 2a2a2a ;
21- color : # ffffff ;
22- }
23- button {
24- background-color : # 4CAF50 ;
25- color : white;
26- cursor : pointer;
27- }
28- button : hover {
29- background-color : # 45a049 ;
30- }
31- ul {
32- list-style-type : none;
33- padding : 0 ;
34- }
35- li {
36- background-color : # 2a2a2a ;
37- margin : 5px 0 ;
38- padding : 10px ;
39- border-radius : 5px ;
40- }
41- .completed {
42- text-decoration : line-through;
43- opacity : 0.7 ;
44- }
45- .subtask {
46- margin-left : 20px ;
47- font-size : 0.9em ;
48- }
49- .tag {
50- background-color : # 4CAF50 ;
51- color : white;
52- padding : 2px 5px ;
53- border-radius : 3px ;
54- margin-right : 5px ;
55- font-size : 0.8em ;
56- }
57- .priority-high {
58- color : # ff4444 ;
59- }
60- .priority-medium {
61- color : # ffbb33 ;
62- }
63- .priority-low {
64- color : # 00C851 ;
65- }
66- .charts {
67- display : flex;
68- justify-content : space-between;
69- margin-top : 20px ;
70- }
71- .chart-container {
72- width : 45% ;
73- }
1+ : root { color-scheme : dark; }
2+ body { @apply bg-gray-900 text-gray-100; }
3+ .custom-tab { @apply px-4 py-2 bg-blue-600 text-white rounded-t-lg hover:bg-blue-700 transition-colors; }
4+ .custom-tab .active { @apply bg-blue-800; }
5+ .task-item { @apply p-4 mb-4 rounded-lg shadow-md bg-gray-800; }
6+ .task-item .high-priority { @apply border-l-4 border-red-500; }
7+ .task-item .medium-priority { @apply border-l-4 border-yellow-500; }
8+ .task-item .low-priority { @apply border-l-4 border-green-500; }
9+ .progress-bar { @apply h-2 bg-gray-700 rounded-full overflow-hidden; }
10+ .progress-bar-fill { @apply h-full bg-blue-500 transition-all duration-300 ease-in-out; }
11+ select , input [type = "text" ], input [type = "date" ], textarea { @apply bg-gray-700 text-white border-gray-600; }
You can’t perform that action at this time.
0 commit comments