7
7
@tailwind components;
8
8
9
9
: not (input ) {
10
- -webkit-user-select : none;
11
- -moz-user-select : none;
12
- -ms-user-select : none;
13
10
user-select : none;
14
11
}
15
12
16
13
: root {
17
14
--violet-gradient : linear-gradient (
18
15
-180deg ,
19
- rgba (144 , 89 , 255 , 0.8 ) 0% ,
20
- rgba (144 , 89 , 255 , 0.4 ) 100%
16
+ rgb (144 89 255 / 80 % ) 0% ,
17
+ rgb (144 89 255 / 40 % ) 100%
21
18
);
22
19
}
23
20
71
68
72
69
.checkbox > label ::before {
73
70
/* @apply bg-grey-10; */
74
- @apply border;
71
+ @apply border-default ;
75
72
@apply rounded-sm;
76
73
77
74
content : '' ;
@@ -204,32 +201,31 @@ progress::-webkit-progress-value {
204
201
background-image : -webkit-linear-gradient (
205
202
-45deg ,
206
203
transparent 20% ,
207
- rgba (255 , 255 , 255 , 0.4 ) 20% ,
208
- rgba (255 , 255 , 255 , 0.4 ) 40% ,
204
+ rgb (255 255 255 / 40 % ) 20% ,
205
+ rgb (255 255 255 / 40 % ) 40% ,
209
206
transparent 40% ,
210
207
transparent 60% ,
211
- rgba (255 , 255 , 255 , 0.4 ) 60% ,
212
- rgba (255 , 255 , 255 , 0.4 ) 80% ,
208
+ rgb (255 255 255 / 40 % ) 60% ,
209
+ rgb (255 255 255 / 40 % ) 80% ,
213
210
transparent 80%
214
211
),
215
212
-webkit-linear-gradient (left, var (--color-primary ), var (--color-primary ));
216
213
/* stylelint-enable */
217
214
border-radius : 2px ;
218
215
background-size : 21px 20px , 100% 100% , 100% 100% ;
219
- -webkit-animation : animate-stripes 1s linear infinite;
220
216
}
221
217
222
218
progress ::-moz-progress-bar {
223
219
/* stylelint-disable */
224
220
background-image : -moz-linear-gradient (
225
221
135deg ,
226
222
transparent 20% ,
227
- rgba (255 , 255 , 255 , 0.4 ) 20% ,
228
- rgba (255 , 255 , 255 , 0.4 ) 40% ,
223
+ rgb (255 255 255 / 40 % ) 20% ,
224
+ rgb (255 255 255 / 40 % ) 40% ,
229
225
transparent 40% ,
230
226
transparent 60% ,
231
- rgba (255 , 255 , 255 , 0.4 ) 60% ,
232
- rgba (255 , 255 , 255 , 0.4 ) 80% ,
227
+ rgb (255 255 255 / 40 % ) 60% ,
228
+ rgb (255 255 255 / 40 % ) 80% ,
233
229
transparent 80%
234
230
),
235
231
-moz-linear-gradient (left, var (--color-primary ), var (--color-primary ));
@@ -239,12 +235,6 @@ progress::-moz-progress-bar {
239
235
animation : animate-stripes 1s linear infinite;
240
236
}
241
237
242
- @-webkit-keyframes animate-stripes {
243
- 100% {
244
- background-position : -21px 0 ;
245
- }
246
- }
247
-
248
238
@keyframes animate-stripes {
249
239
100% {
250
240
background-position : -21px 0 ;
@@ -313,7 +303,7 @@ select {
313
303
314
304
@screen md {
315
305
.main > section {
316
- @apply border;
306
+ @apply border-default ;
317
307
@apply border-grey-80;
318
308
}
319
309
}
@@ -323,13 +313,12 @@ select {
323
313
324
314
@responsive {
325
315
.shadow-light {
326
- box-shadow : 0 0 8px 0 rgba (12 , 12 , 13 , 0.1 );
316
+ box-shadow : 0 0 8px 0 rgb (12 12 13 / 10 % );
327
317
}
328
318
329
319
.shadow-big {
330
- box-shadow : 0 12px 18px 2px rgba (34 , 0 , 51 , 0.04 ),
331
- 0 6px 22px 4px rgba (7 , 48 , 114 , 0.12 ),
332
- 0 6px 10px -4px rgba (14 , 13 , 26 , 0.12 );
320
+ box-shadow : 0 12px 18px 2px rgb (34 0 51 / 4% ),
321
+ 0 6px 22px 4px rgb (7 48 114 / 12% ), 0 6px 10px -4px rgb (14 13 26 / 12% );
333
322
}
334
323
}
335
324
0 commit comments