blob: f9d201fa210a100208ead1dd82bdcbd46aad70ff (
plain) (
blame)
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
|
body {
font-size: 120%;
}
h1 {
font-size: 1em;
}
article {
display: none;
margin: 6px;
}
.reference {
text-align: right;
}
ul.readings {
display: block;
padding-left: 0;
}
ul.readings li {
display: block;
list-style: none;
list-style-position: inside;
width: 50%;
}
ul.readings li:nth-child(even) {
float: left;
}
ul.readings li:nth-child(odd) {
float: right;
text-align: right;
}
footer.acknowledgment {
display: block;
margin-top: 2ex;
}
|