-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (65 loc) · 1.22 KB
/
style.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap");
body {
margin: 0;
padding: 0;
font-family: "Montserrat", sans-serif;
background: #000;
}
.loader-content {
/* position: fixed;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: 500; */
display: flex;
text-align: center;
justify-content: center;
align-items: center;
min-height: 100vh;
/* flex-direction: column; */
}
.loader-circle {
position: absolute;
width: 200px;
height: 200px;
border-radius: 50%;
animation: ring 2s linear infinite;
}
@keyframes ring {
0% {
transform: rotate(0deg);
box-shadow: 1px 5px 2px #e65c00;
}
50% {
transform: rotate(180deg);
box-shadow: 1px 5px 2px #18b201;
}
100% {
transform: rotate(360deg);
box-shadow: 1px 5px 2px #0456c8;
}
}
.loader-circle::before {
position: absolute;
content: "";
left: 0;
top: 0;
height: 100%;
width: 100%;
border-radius: 50%;
box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}
.loader-text {
color: #737373;
font-size: 20px;
text-transform: uppercase;
letter-spacing: 1px;
line-height: 200px;
animation: text 2s ease-in-out infinite;
}
@keyframes text {
50% {
color: #000;
}
}