-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtypography.css
112 lines (95 loc) · 1.89 KB
/
typography.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body {
text-align:center;
font-family:'Libre Baskerville', serif;
font-size:120%;
line-height:1.6;
margin:0;
padding:2em 2em 5em;
background:rgb(250, 250, 250);
margin:auto;
max-width:45em;
color:rgb(20, 20, 20);
}
.download {
font-family: 'Libre Franklin', sans-serif;
font-size: 120%;
}
a {outline:none !important; font-weight:bold; text-decoration:none;}
a:link {color:#c00;}
a:visited {color:#606;}
a:hover {color:#606;}
a:active {color:#900; outline:none;}
strong {
font-weight: 700;
}
h1 {
font-size:320%;
line-height:1.35;
font-style:normal;
margin:1.5em 0 0.8em;
}
h2 {
font-weight:bold;
font-size:200%;
margin:1em 0 0.8em;
}
h3 {
font-weight:normal;
text-transform:uppercase;
font-size:150%;
letter-spacing:0.15em;
margin:1.75em 0 0.8em;
}
h4 {
font-weight:normal;
font-size:150%;
letter-spacing:0.1em;
margin:1.5em 0 0.8em;
}
h5 {
font-weight:normal;
font-style:italic;
font-size:150%;
margin:1.5em 0 0.8em;
}
h6 {
font-weight:bold;
font-size:100%;
letter-spacing:0.1em;
margin:1.5em 0 0.8em;
}
p {
text-align:left;
font-size:100%;
margin:1em 0 0;
}
p.lead {
font-size:150%;
margin:1em 0;
}
p + p {
margin:0;
text-indent:1.5em;
}
p + ul, p + ol, p + dl {margin-bottom:1.5em;}
p.lead + p {
text-indent:0;
}
blockquote {border-left:5px solid #eee; padding-left:1.5em; margin:1em 0;}
blockquote small {display:block; line-height:1.7em;}
ul, ol, dl {
text-align:left;
}
dt {font-weight:bold;}
code {font-family:courier, monospace;}
p > code {padding:0.25em; background:#eee;}
pre {text-align:left; font-size:100%;}
hr {height:0; color:#eee; border:1px solid #eee; margin:2em 0 1em;}
.normal {font-weight:normal;}
.quiet {color:#999;}
.pull-left {float:left; margin:0.5em 2em 1em 0;}
.pull-right {float:right; margin:0.5em 0 1em 2em;}
@media (max-width:500px) {
body {font-size:80%;}
img {max-width:100% !important; height:auto !important; float:none !important;}
}