-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathindex.css
78 lines (64 loc) · 1.14 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
67
68
69
70
71
72
73
74
75
76
77
78
@import "furtive-print";
@import "furtive-typescale";
@import "furtive-responsive-utils";
@import url(http://fonts.googleapis.com/css?family=Merriweather:300italic,300);
html {
font-size: 18px;
max-width: 100%;
}
body {
color: #444;
font-family: 'Merriweather', Georgia, serif;
margin: 0;
max-width: 100%;
}
/* === A bit of a gross hack so we can have bleeding divs/blockquotes. */
p,
*:not(div):not(img):not(body):not(html):not(li):not(blockquote):not(p) {
margin: 1rem auto 1rem;
max-width: 36rem;
padding: .25rem;
}
div {
width: 100%;
}
div img {
width: 100%;
}
blockquote p {
font-size: 1.5rem;
font-style: italic;
margin: 1rem auto 1rem;
max-width: 48rem;
}
li {
margin-left: 2rem;
}
/* Counteract the specificity of the gross *:not() chain. */
h1 {
padding: 4rem 0 !important;
}
/* === End gross hack */
p {
color: #555;
height: auto;
line-height: 1.45;
}
pre, code {
font-family: Menlo, Monaco, "Courier New", monospace
}
pre {
background-color: #fafafa;
font-size: .8rem;
overflow-x: scroll;
padding: 1.125em;
}
a,
a:visited {
color: #3498db;
}
a:hover,
a:focus,
a:active {
color: #2980b9;
}