blob: c137b2ba33bb03e8e101714ec619ede428111d5f (
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
68
69
70
71
72
73
74
75
|
body {
font-size: 120%;
}
h1 {
font-size: 1em;
}
h2 {
font-size: 0.8em;
}
article {
display: none;
margin: 6px;
clear: both;
}
.reference {
text-align: right;
}
.visible {
display: block;
}
ul.readings {
display: block;
clear: both;
padding-left: 0;
}
ul.readings li {
display: block;
/* font-size: 80%; */
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;
font-size: 80%;
padding-top: 2ex;
}
ul.navigation {
float:right;
display: block;
padding: 0;
margin: 0;
}
ul.navigation li {
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: ']';
}
|