blob: b88f35ddb88b45e5f1a3125b00c15963288f1a30 (
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
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
|
.current {
color: red;
}
.dimmedtext {
color: gray;
}
.dimmedtext a {
color: #3344dd;
}
.textright {
width: 100%;
text-align: right;
}
table {
border-collapse: collapse;
}
table, th, td, tr {
border: 1px solid black;
}
a {
text-decoration: underline;
cursor: pointer;
color: blue;
}
a:visited {
color: purple;
}
a:hover {
color: darkblue;
}
a:active {
color: lightblue;
}
/* comments begin */
.comment {
margin-left: .5em;
border: 1px solid grey;
padding: .5em;
}
.odd {
background-color: darkgrey;
}
.comment small {
color: darkred;
}
.even {
background-color: lightgrey;
}
.showhide-checkbox {
display: none;
}
.commentform iframe, .commentform textarea {
width: 90%;
margin-left: 5%;
height: 7em
}
.commentform iframe {
height: 2em;
}
.commentform input[type=text] {
margin-left: 5%;
width: 75%;
}
.showhide-hiddenelement {
display: none;
}
.showhide-checkbox:checked + .showhide-hiddenelement {
display: block; /* such element is shown by default and hidden on click */
}
.showhide-checkbox:checked + .showhide-shownelement {
display: none; /* such element is hidden by default and shown on click */
}
/* comments end */
@media screen and (min-width: 600px) {
body {
margin-left: 10%;
margin-right: 10%;
}
}
body {
/* font-size: 18px;
line-height: 1.4; */
font-family: sans-serif;
}
|