-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
47 lines (41 loc) · 716 Bytes
/
Copy pathindex.css
File metadata and controls
47 lines (41 loc) · 716 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
@import "tailwindcss";
html, body {
margin: 0;
padding: 0;
font-family: 'Space Grotesk', sans-serif;
background: #0a0a0a;
color: #f3f4f6;
}
@layer utilities {
@keyframes blink {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0;
}
}
.animate-blink {
animation: loading 0.8s step-end infinite;
}
@keyframes loading {
0% {
transform: translateX(-100%)
}
100% {
transform: translate(250%);
}
}
.animate-loading-bar {
animation: loading 0.8s ease infinite;
}
}
.reveal {
opacity: 0;
transform: translate(20px);
transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
opacity: 1;
transform: translateY(0);
}