77@tailwind components;
88
99: not (input ) {
10- -webkit-user-select : none;
11- -moz-user-select : none;
12- -ms-user-select : none;
1310 user-select : none;
1411}
1512
1613: root {
1714 --violet-gradient : linear-gradient (
1815 -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%
2118 );
2219}
2320
7168
7269.checkbox > label ::before {
7370 /* @apply bg-grey-10; */
74- @apply border;
71+ @apply border-default ;
7572 @apply rounded-sm;
7673
7774 content : '' ;
@@ -204,32 +201,31 @@ progress::-webkit-progress-value {
204201 background-image : -webkit-linear-gradient (
205202 -45deg ,
206203 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% ,
209206 transparent 40% ,
210207 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% ,
213210 transparent 80%
214211 ),
215212 -webkit-linear-gradient (left, var (--color-primary ), var (--color-primary ));
216213 /* stylelint-enable */
217214 border-radius : 2px ;
218215 background-size : 21px 20px , 100% 100% , 100% 100% ;
219- -webkit-animation : animate-stripes 1s linear infinite;
220216}
221217
222218progress ::-moz-progress-bar {
223219 /* stylelint-disable */
224220 background-image : -moz-linear-gradient (
225221 135deg ,
226222 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% ,
229225 transparent 40% ,
230226 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% ,
233229 transparent 80%
234230 ),
235231 -moz-linear-gradient (left, var (--color-primary ), var (--color-primary ));
@@ -239,12 +235,6 @@ progress::-moz-progress-bar {
239235 animation : animate-stripes 1s linear infinite;
240236}
241237
242- @-webkit-keyframes animate-stripes {
243- 100% {
244- background-position : -21px 0 ;
245- }
246- }
247-
248238@keyframes animate-stripes {
249239 100% {
250240 background-position : -21px 0 ;
@@ -313,7 +303,7 @@ select {
313303
314304 @screen md {
315305 .main > section {
316- @apply border;
306+ @apply border-default ;
317307 @apply border-grey-80;
318308 }
319309 }
@@ -323,13 +313,12 @@ select {
323313
324314@responsive {
325315 .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 % );
327317 }
328318
329319 .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% );
333322 }
334323}
335324
0 commit comments