-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtailwindcss-v4.css
50 lines (45 loc) · 1.35 KB
/
tailwindcss-v4.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
@import "tailwindcss";
/* ========================
tailwindcss-animation-delay
https://github.com/burnworks/tailwindcss-animation-delay
======================== */
@utility animation-delay-none {
animation-delay: 0s;
}
@utility animation-delay-inherit {
animation-delay: inherit;
}
@utility animation-delay-initial {
animation-delay: initial;
}
@utility animation-delay-revert {
animation-delay: revert;
}
@utility animation-delay-revert-layer {
animation-delay: revert-layer;
}
@utility animation-delay-unset {
animation-delay: unset;
}
@utility animation-delay-* {
animation-delay: --value([*]);
animation-delay: calc(--value(integer) * 1ms);
}
/* Usage ========================
1) Integer
e.g.
animation-delay-75 -> animation-delay: 75ms;
animation-delay-300 -> animation-delay: 300ms;
2) Keyword (the following are predefined)
animation-delay-none -> animation-delay: 0s;
animation-delay-inherit -> animation-delay: inherit;
animation-delay-initial -> animation-delay: initial;
animation-delay-revert -> animation-delay: revert;
animation-delay-revert-layer -> animation-delay: revert-layer;
animation-delay-unset -> animation-delay: unset;
3) Any <time> value
e.g.
animation-delay-[1.5s] -> animation-delay: 1.5s;
animation-delay-[-1500ms] -> animation-delay: -1500ms;
======================== */
/* end of tailwindcss-animation-delay setting */