Newer
Older
/* Styles that mainly affect where text is, but not how it looks */
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
h1, h2, h3 {
margin-bottom: 0;
margin-top: 0.25em;
}
h1 + p, h2 + p, h3 + p {
margin-top: 0;
}
div.center, p.center {
margin-left: auto;
margin-right: auto;
text-align: center;
}
div.flex-container {
display: flex;
}
/* makes the first line indented */
div.indent, p.indent {
text-indent: 2em;
}
div.double-indent, p.double-indent {
text-indent: 4em;
}
/* makes avery linue indented */
div.choices, p.choices {
margin-left: 2em;
}
div.double-choices, p.double-choices {
margin-left: 4em;
}