-
-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy pathglobal.css
More file actions
36 lines (33 loc) · 538 Bytes
/
global.css
File metadata and controls
36 lines (33 loc) · 538 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
@import "tailwindcss/base";
@import "tailwindcss/components";
@import "tailwindcss/utilities";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;900&display=swap");
.fade-A {
animation: animA 10s infinite alternate;
}
.fade-B {
animation: animB 10s infinite alternate;
}
.titleHome {
font-family: "Poppins", sans-serif;
}
@keyframes animA {
0%,
40% {
opacity: 1;
}
60%,
100% {
opacity: 0;
}
}
@keyframes animB {
0%,
40% {
opacity: 0;
}
60%,
100% {
opacity: 1;
}
}