-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (49 loc) · 889 Bytes
/
styles.css
File metadata and controls
54 lines (49 loc) · 889 Bytes
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
51
52
53
54
@tailwind base;
@tailwind components;
@tailwind utilities;
button {
background-color: rgb(32, 39, 47);
}
@keyframes slide-top {
0% {
transform: translateY(0);
}
20% {
transform: translateY(-10);
}
50% {
transform: translateY(-20px);
}
100% {
transform: translateY(0);
}
}
@keyframes jello-horizontal {
0% {
transform: scale3d(1, 1, 1);
}
30% {
transform: scale3d(1.25, 0.75, 1);
}
40% {
transform: scale3d(0.75, 1.25, 1);
}
50% {
transform: scale3d(1.15, 0.85, 1);
}
65% {
transform: scale3d(0.95, 1.05, 1);
}
75% {
transform: scale3d(1.05, 0.95, 1);
}
100% {
transform: scale3d(1, 1, 1);
}
}
.jello-horizontal {
animation: jello-horizontal 0.9s both;
}
.slide-top {
animation: slide-top 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}