-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
62 lines (54 loc) · 962 Bytes
/
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
*{
padding:0;
margin:0;
box-sizing:border-box;
}
body{
background: #121212;
justify-content:center;
align-content:center;
align-items:center;
text-align:center;
color:black;
}
.top{
background-color:black;
display: flex;
align-items: center;
justify-content: space-around;
color:#3DFF33;
}
#loading {
background-color: #111;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.waviy {
position: relative;
}
.waviy span {
position: relative;
display: inline-block;
font-size: 40px;
color: #fff;
text-transform: uppercase;
animation: flip 2s infinite;
animation-delay: calc(.2s * var(--i))
}
@keyframes flip {
0%,80% {
transform: rotateY(360deg)
}
}
h6{
background-color:black;
font-family: 'Ubuntu', sans-serif;
font-size: 1.5rem;
font-weight: bold;
color: #CFC547;
text-align: center;
letter-spacing: 5px;
text-shadow: 0px 11px 10px rgba(81,67,21,0.8);
}