-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathvertical-rhythm.scss
234 lines (190 loc) · 4.49 KB
/
vertical-rhythm.scss
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
/*
// Vertical Rhythm
// -------------------------------------------------- */
/* Variables
* -------------------------------------------
* Put your custom variables here. If you use bootstrap, use those
* and add your own for vertical rhythm
*/
$font-size-base: 14px;
$line-height-base: 20px;
/* TYPOGRAPHY BASE
* -------------------------------------------
* First, we establish a baseline to normalize typography.
* Credit: this BASE section is based on Twitter Bootstrap's type.less
* but with everything that isn't related to rhythm removed.
*/
/* Headings
* -------------------------------------------
* normalize baselines for headings, remove
* this block if you use Twitter Bootstrap
*/
h1, h2, h3, h4, h5, h6 {
margin: ($line-height-base / 2) 0;
line-height: $line-height-base;
small {
line-height: 1;
}
}
h1, h2 {
margin-top: $line-height-base;
margin-bottom: ($line-height-base / 2);
line-height: ($line-height-base * 2);
}
h3, h4, h5, h6 {
margin-top: ($line-height-base / 2);
margin-bottom: ($line-height-base / 2);
}
h1 { font-size: $font-size-base * 2.75; font-size: 4rem; } // ~38px
h2 { font-size: $font-size-base * 2.25; font-size: 3rem; } // ~32px
h3 { font-size: $font-size-base * 1.75; font-size: 2.5rem; } // ~24px
h4 { font-size: $font-size-base * 1.25; font-size: 2rem; } // ~18px
h5 { font-size: $font-size-base; font-size: 1.6rem; }
h6 { font-size: $font-size-base * 0.85; font-size: 1.2rem; } // ~12px
h1 small { font-size: $font-size-base * 1.75; } // ~24px
h2 small { font-size: $font-size-base * 1.25; } // ~18px
h3 small { font-size: $font-size-base; }
h4 small { font-size: $font-size-base; }
/* Lists
* -------------------------------------------
*/
// Unordered and Ordered lists
ul, ol {
padding: 0;
margin: 0 0 ($line-height-base / 2) 25px;
}
ul ul,
ul ol,
ol ol,
ol ul {
margin-bottom: 0;
}
li {
line-height: $line-height-base;
}
// Description Lists
dl {
margin-bottom: $line-height-base;
}
dt, dd {
line-height: $line-height-base;
}
dd {
margin-left: ($line-height-base / 2);
}
// MISC
// ----
// Horizontal rules
hr {
margin: $line-height-base 0;
border: 0;
border-top: 1px solid $hr-border;
border-bottom: 1px solid #fff;
}
/* VERTICAL RHYTHM
* -------------------------------------------
* Add .rhythm to parent elements when you
* wish to apply vertical rhythm to child elements
*/
/* Body text & Misc
* -------------------------------------------
*/
.rhythm {
p, ul, ol, blockquote, address, pre, form {
margin-bottom: $line-height-base;
// And remove margin from last element
&:last-child {
margin-bottom: 0;
}
}
}
/* Headings & paragraphs
* -------------------------------------------
* Here we apply special spacing to certain
* typographical patterns. It is impossible to
* predict the patterns you require for your
* project, so this is only a starting point.
*/
.rhythm {
h1, h2, h3 {
margin-bottom: ($line-height-base / 4);
}
h1 + h2 {
margin-top: $line-height-base;
}
h4 {
margin-bottom: ($line-height-base / 6);
}
h1 + p,
p + h4 {
margin-top: ($line-height-base * 1.5);
}
h2 + h3,
h2 + h4 {
margin-top: $line-height-base;
}
h2 + p,
h3 + p {
margin-top: ($line-height-base / 2);
}
p + h2 {
margin-top: ($line-height-base * 3);
}
h3 + h4 {
margin-top: ($line-height-base * 2);
}
}
/* Lists
* -------------------------------------------
* Special classes for numbered, bulleted,
* and alpha lists.
*/
.rhythm {
//
h3 + ul.bullet-list,
h3 + ul.numbered-list,
h3 + ul.alpha-list,
h3 + ol.numbered-list {
margin-top: ($line-height-base / 2);
}
ul.bullet-list + h3,
ul.numbered-list + h3,
ul.alpha-list + h3 {
margin-top: ($line-height-base * 2);
}
h4 + ul.bullet-list,
h4 + ul.numbered-list,
h4 + ul.alpha-list,
h4 + ol.numbered-list {
margin-top: ($line-height-base / 2);
}
.bullet-list {
list-style-type: disc; // bullets
padding-left: 1.25em;
}
.numbered-list {
list-style-type: decimal; // numbers
padding-left: 1.5em;
}
.alpha-list {
list-style-type: lower-alpha; // letters
padding-left: 1.5em;
}
.bullet-list li,
.numbered-list li,
.alpha-list li {
margin-bottom: ($line-height-base / 2);
}
.condensed-list li {
margin-bottom: 0;
}
.flush-list li {
padding-left: 0;
}
}
/* Blockquotes
* -------------------------------------------
*/
.rhythm blockquote {
padding: $line-height-base $line-height-base 0;
}