1
+ @import "tailwindcss" ;
2
+ @tailwind base;
3
+ @tailwind components;
4
+ @tailwind utilities;
1
5
body {
2
6
margin : 0 ;
3
7
padding : 0 ;
4
8
background-color : rgba (251 , 251 , 251 , 0.6 );
5
9
}
6
-
7
10
* {
8
11
box-sizing : border-box;
9
12
}
50
53
list-style-type : disc !important ;
51
54
margin-left : 1rem ;
52
55
}
53
- .selectedLabel {
54
- font-weight : 400 ;
55
- color : # 333333 ;
56
- }
57
56
58
- .unselectedLabel {
59
- font-weight : 300 ;
60
- color : # 666666 ;
57
+ body , input , div , h3 , h4 , p , label , hr , # scrumReport {
58
+ transition : all 0.3s ease-in-out;
61
59
}
62
60
63
- .selectedLabel , .unselectedLabel {
64
- transition : color 0.3s ease-in-out, font-weight 0.3s ease-in-out;
61
+ .dark-mode {
62
+ background : # 1a1a1a !important ;
63
+ color : # ffffff !important ;
64
+ transition : background-color 0.3s ease-in-out, color 0.3s ease-in-out;
65
65
}
66
-
67
- .refresh-btn {
68
- transition : all 0.3s ease;
69
- position : relative;
70
- overflow : hidden;
71
- background-color : # d2d2d2 ;
66
+ .dark-mode .bg-white {
67
+ background-color : # 2d2d2d !important ;
68
+ border-color : # 404040 !important ;
69
+ transition : background-color 0.3s ease-in-out, color 0.3s ease-in-out;
72
70
}
73
71
74
- .refresh-btn : hover {
75
- background-color : # 999bac ;
76
- transform : translateY (-1px );
77
- box-shadow : 0 2px 5px rgba (0 , 0 , 0 , 0.2 );
72
+ .dark-mode input [type = "text" ],
73
+ .dark-mode input [type = "date" ],
74
+ .dark-mode # scrumReport {
75
+ background-color : # 404040 !important ;
76
+ border-color : # 505050 !important ;
77
+ color : # ffffff !important ;
78
+ transition : background-color 0.3s ease-in-out, color 0.3s ease-in-out;
79
+ }
80
+ .dark-mode h3 ,
81
+ .dark-mode h4 ,
82
+ .dark-mode p ,
83
+ .dark-mode label {
84
+ color : # ffffff !important ;
85
+ transition : color 0.3s ease-in-out;
78
86
}
79
87
80
- .refresh-btn : active {
81
- transform : translateY (1px );
82
- box-shadow : none;
83
- }
84
88
85
- .refresh-btn .loading {
86
- pointer-events : none;
87
- opacity : 0.8 ;
89
+
90
+
91
+ .dark-mode hr {
92
+ border-color : # 505050 !important ;
93
+ transition : border-color 0.3s ease-in-out;
88
94
}
89
95
90
- .refresh-btn .loading .fa-refresh {
91
- animation : spin 1s linear infinite;
96
+ # scrumReport {
97
+ font-size : 13px !important ;
98
+ line-height : 1.5 !important ;
92
99
}
93
100
94
- @keyframes spin {
95
- 100 % { transform : rotate ( 360 deg ); }
101
+ # scrumReport b {
102
+ font-size : 13 px !important ;
96
103
}
97
104
98
- # scrumReport {
99
- border : 1px solid # ccc ;
100
- padding : 10px ;
101
- min-height : 200px ;
102
- max-height : 400px ;
103
- overflow-y : auto;
104
- background-color : white;
105
+ # scrumReport li {
106
+ font-size : 13px !important ;
107
+ margin-bottom : 4px !important ;
105
108
}
106
109
107
- # scrumReport : focus {
108
- outline : none;
109
- border-color : # 26a69a ;
110
+ .dark-mode # scrumReport {
111
+ font-size : 13px !important ;
110
112
}
111
113
112
- # scrumReport a {
113
- color : # 26a69a ;
114
- text-decoration : none;
114
+ .dark-mode # scrumReport b {
115
+ font-size : 13px !important ;
115
116
}
116
117
117
- # scrumReport a : hover {
118
- text-decoration : underline ;
118
+ . dark-mode # scrumReport li {
119
+ font-size : 13 px !important ;
119
120
}
121
+
122
+ .dark-mode a {
123
+ color : # 00b7ff !important ;
124
+ }
0 commit comments