-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (43 loc) · 961 Bytes
/
style.css
File metadata and controls
51 lines (43 loc) · 961 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
48
49
50
51
body{
margin: 0;
padding: 0;
background-color: rgb(20, 20, 20);
}
p.Text{
font-family: 'Oswald', sans-serif;
color: rgb(255, 255, 245);
font-size: 50px;
text-align: center;
font-style: initial;
font-weight: bold;
}
p.Text-2{
font-family: 'Oswald', sans-serif;
color: rgb(180, 180,180);
font-size: 20px;
text-align: center;
font-style: initial;
margin: 3px;
min-height: calc(100vh - 177px - 57px);
}
footer {
font-family: 'Oswald', sans-serif;
color: rgb(180, 180, 180, 0.7);
background-color: rgb(30, 30, 30);
text-align: center;
padding: 0.5px;
}
.Topic span {
display: inline-block;
font-size: 50px;
font-family: 'Oswald', sans-serif;
color: rgb(255, 255, 245);
text-transform: uppercase;
animation: flip 2s infinite;
animation-delay: calc(.1s * var(--i))
}
@keyframes flip {
0%,75% {
transform: rotateY(360deg)
}
}