blob: a883d2d03c988dc28be5712343c196ecc093b9dd (
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
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
|
body {
font-size: 120%;
}
h1 {
font-size: 1em;
}
article {
display: none;
margin: 6px;
}
.reference {
text-align: right;
}
ul.readings {
display: block;
clear: right;
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;
padding-top: 2ex;
}
ul.navigation {
float:right;
display: block;
clear: right;
padding: 0;
margin: 0;
}
ul.navigation li {
font-size: 80%;
font-weight: bolder;
background-color: grey;
color: white;
display: inline;
cursor: pointer;
list-style: none;
list-style-position: inside;
}
ul.navigation li:before {
content: '[';
}
ul.navigation li:after {
content: ']';
}
|