-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
66 lines (56 loc) · 1.13 KB
/
index.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
body {
font-family: "Helvetica Neue Light", "Helvetica Neue", "DejaVu Sans",
"Bitstream Vera Sans", Helvetica, Arial, sans-serif;
width: 60%;
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
background-color: #2e3440;
color: #a3be8c;
}
blockquote {
font-family: Georgia, "DejaVu Serif", "Bitstream Vera Serif", Times,
"Times New Roman", serif;
}
header blockquote {
text-align: right;
font-style: oblique;
}
header blockquote::before {
content: open-quote;
}
header blockquote::after {
content: close-quote;
}
header h1,
header .logo,
header .statement {
font-family: Rosie, "Helvetica Neue Light", "Helvetica Neue", "DejaVu Sans",
"Bitstream Vera Sans", Helvetica, Arial, sans-serif;
font-size: clamp(12pt, 6vw, 96pt);
}
nav {
margin: 10% 10% 10% 10%;
}
header .logo {
width: 100%;
height: 100%;
position: absolute;
z-index: -1000;
overflow: hidden;
font-size: 15000%;
}
footer {
text-align: right;
}
a {
text-decoration: none;
display: block;
padding: 0.2em 1em;
font-size: 12pt;
color: #c8d0e0;
}
a:hover {
background-color: #4c566a;
}