-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
48 lines (48 loc) · 868 Bytes
/
main.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
html, body { margin: 0; padding: 0; }
body {
font: 16px 'Ubuntu', sans-serif;
}
h1 {
font: 400 90px 'Ovo', serif;
color: #d7d7d7;
}
h2, h3 {
font-size: 28px;
font-weight: 700;
}
h2 {
text-transform: uppercase;
}
a {
color: #78B5F3;
}
p, ul {
max-width: 28em;
}
strong {
color: #ff512f;
font-weight: bold;
}
pre {
background: #171516;
border: 1px solid #ccc;
border-radius: 3px;
color: #d7d7d7;
font-family: 'Consolas', 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', monospace;
max-width: 56em;
overflow-x: auto;
padding: 8px;
width: auto;
}
header, footer {
background-color: #222;
color: #e9e9e9;
}
@media(min-width:655px) {
h1 { font-size: 110px; }
}
@media(min-width:1024px) {
h1 { font-size: 140px; }
h2, h3 { font-size: 35px; }
p, ul, pre { font-size: 20px; }
}