-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreloader.css
More file actions
112 lines (100 loc) · 2.48 KB
/
preloader.css
File metadata and controls
112 lines (100 loc) · 2.48 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
@import url('https://fonts.googleapis.com/css2?family=Prosto+One&display=swap');
#loader {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
display: flex;
justify-content: center;
align-items: center;
z-index: 9999;
}
#loader:after {
content: "";
width: 50px;
height: 50px;
border: 5px solid #ddd;
border-top-color: #333;
border-radius: 50%;
animation: loading 0.75s ease infinite;
}
@keyframes loading {
from {
transform: rotate(0turn)
}
to {
transform: rotate(1turn)
}
}
.m {
background: #000;
fill: #000;
position: relative;
height: 700px;
}
.ed {
color: rgb(197, 43, 43);
font-size: large;
font-style: oblique;
font-weight: bolder;
position: fixed;
}
font-family: 'Prosto One',
cursive;
top: 43%;
left: 45%;
font-stretch: ultra-expanded;
}
/* span{
animation: animate 0.5s ease-in infinite;
/* animation: name duration timing-function delay iteration-count direction fill-mode; */
/* }
@keyframes animate{
0% {
border: 2px solid rgba(150, 63, 63, 0.1);
}
50% {
border: 2px solid rgba(201, 11, 11, 0.5);
}
100% {
border: 2px solid rgba(25, 184, 33, 0.1);
}
} */
.ed span {
animation: animate 3s 3s ease-in-out infinite;
}
@keyframes animate {
0% {
text-shadow: 0 0 10px rgba(70, 194, 85, 0.902), 0 0 20px rgba(196, 186, 186, 0.936), 0 0 30px rgb(208, 213, 176), 0 0 40px rgba(255, 255, 255, 0.2);
}
100% {
opacity: 0;
text-shadow: 0 0 5px rgba(71, 37, 37, 0.5), 0 0 10px rgb(91, 215, 108), 0 0 15px rgba(223, 164, 164, 0.3), 0 0 20px rgba(199, 158, 158, 0.2);
}
}
.ed2 {
color: rgb(197, 43, 43);
font-size: large;
font-style: oblique;
font-weight: bolder;
/* font-family: Verdana, Geneva, Tahoma, sans-serif; */
position: fixed;
font-family: 'Prosto One', cursive;
top: 47%;
left: 43%;
font-stretch: ultra-expanded;
}
.ed2 span {
animation: animate2 5s 1s ease-in-out infinite;
}
@keyframes animate2 {
0% {
text-shadow: 0 0 10px rgba(70, 194, 85, 0.902), 0 0 20px rgba(196, 186, 186, 0.936), 0 0 30px rgb(208, 213, 176), 0 0 40px rgba(255, 255, 255, 0.2);
}
100% {
opacity: 0;
text-shadow: 0 0 5px rgba(71, 37, 37, 0.5), 0 0 10px rgb(91, 215, 108), 0 0 15px rgba(223, 164, 164, 0.3), 0 0 20px rgba(199, 158, 158, 0.2);
}
}