-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
48 lines (37 loc) · 852 Bytes
/
style.css
File metadata and controls
48 lines (37 loc) · 852 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
@import "https://fonts.googleapis.com/css2?family=Gentium+Plus:ital,wght@0,400;0,700;1,400;1,700&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap";
html {
font-family: "Ubuntu", sans-serif;
body {
font-family: "Ubuntu", sans-serif;
h1, h2, h3, h4, h5, h6 {
font-family: "Gentium Plus", serif;
}
}
}
@keyframes spin3d {
from {
transform: rotateY(0deg);
}
to {
transform: rotateY(-360deg);
}
}
.title {
text-align: center;
position: absolute;
top: calc(50% - 174px / 2);
left: calc(50% - 172px / 2);
> .typeface > em {
color: #666;
}
> .logo {
animation: spin3d 3s ease-in-out;
}
}
.copyright {
text-align: center;
font-family: "Gentium Plus", serif;
position: absolute;
bottom: calc(24px + 16px * 2);
left: calc(50% - 262px / 2);
}