-
Notifications
You must be signed in to change notification settings - Fork 8
/
style.css
76 lines (61 loc) · 1.03 KB
/
style.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
@import url(http://fonts.googleapis.com/css?family=Merriweather:300,400);
body {
color: #000;
background: #FFF;
width: 33em;
margin: 6em auto;
font-family: Merriweather, serif;
font-size: 12pt;
line-height: 1.7;
}
h1 { font-size:2.25em; /* 16x2.25=36 */ }
h2 { font-size:1.5em; /* 16x1.5=24 */ }
h3 { font-size:1.125em; /* 16x1.125=18 */ }
h4 { font-size:0.875em; /* 16x0.875=14 */ }
p {
margin-bottom: 0;
text-align: justify;
hyphenate: auto;
hyphenate-before:2;
hyphenate-after:3;
}
/* all paragraphs that are proceeded by another paragraph */
p + p {
margin-top: 0;
text-indent: 1em;
}
img {
width: 100%;
}
figcaption {
text-align: center;
font-size: 0.875em;
font-style: italic;
}
figure {
margin: 2em;
}
h3 {
margin-top: 5em;
}
pre {
background: #EEE;
padding: .5em;
margin: 1em 2em;
}
code {
background: #EEE;
padding: .25em;
}
a {
color: #268bd2;
text-decoration: none;
}
a:hover {
color: #1a6192;
}
#bottom {
margin-top: 2em;
font-size: 0.7em;
text-align: center;
}