-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
66 lines (63 loc) · 1.18 KB
/
Copy pathmain.css
File metadata and controls
66 lines (63 loc) · 1.18 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import "tailwindcss";
@theme {
--font-poppins: "Poppins", sans-serif;
}
@theme {
--color-primary: #DC81AD;
--color-tertiary: #23153C;
--breakpoint-xs: 576px;
--breakpoint-xxs: 495px;
}
@theme {
--animate-zero: spinColor 5s linear infinite;
@keyframes spinColor {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
}
@theme {
--cursor: '|';
--animate-cursor: cursor 0.7s infinite;
@keyframes cursor {
0% {
opacity: 1;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
}
@theme {
--animate-phone-ringing: phoneRinging 1800ms infinite;
@keyframes phoneRinging {
0% {
transform: rotate(0deg);
}
10% {
transform: rotate(-20deg);
}
20% {
transform: rotate(10deg);
}
30% {
transform: rotate(-20deg);
}
40% {
transform: rotate(0deg);
}
100% {
transform: rotate(0deg);
}
}
}
@theme {
--breakpoint-glide: 976px;
}