blob: 2c4c5d323da1199376e5ca9cab86180956a73cd2 (
plain)
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
div.dateheading {
background-color: #54487a;
color: #FFFFFF;
font-size: 1.6em;
font-weight: bold;
padding: 3px 3px 3px 5px;
}
div.entryheading {
background-color: #EFEFEF;
}
span.entryheading {
font-weight: bold;
padding-left: 15px;
}
div.entrycontent {
padding-left: 15px;
padding-bottom: 10px;
min-height: 85px;
}
div.entrycontent pre {
overflow: auto;
}
div.personheading {
background-color: #DEE3E7;
}
span.personheading {
font-size: 1.4em;
font-weight: bold;
padding-left: 8px;
}
span.commentlink {
font-style: italic;
}
.altmenu {
font-size: 0.8em;
font-weight: bold;
/* font-family: Verdana, Arial, Helvetica; */
color: #000000;
padding-left: 2.0em;
padding-right: 1.0em;
}
pre {
/* padding: 0.5em; */
/* font-family: Lucida Console, Courier; */
color: #000000;
font-size: 0.9em;
border-left: 2px double grey;
}
img {
border: 0px;
max-width: 500px;
height: auto;
}
blockquote {
overflow: auto;
}
@media (min-width: 768px) {
.row.equal {
display: flex;
flex-wrap: wrap;
}
}
/* Keep the footer at the bottom
body {
min-height: 100vh;
position: relative;
margin: 0;
padding-bottom: 215px;
}
footer {
position: absolute;
margin-top: 40px;
bottom: 0;
width: 100%;
}
*/
.d-none {
display:none;
}
.page-header > h1 {
margin-top: 25px;
}
.page-header > h1 {
line-height: 1.0;
}
.page-header > h1 > small {
font-size: 65%;
}
input[type="checkbox"] + .fa,
input[type="checkbox"] + label > .fa,
input[type="radio"] + .fa,
input[type="radio"] + label > .fa { cursor: pointer; }
/* Unchecked */
input[type="radio"] + label { color: grey; }
input[type="radio"] + .fa-circle:before,
input[type="radio"] + label > .fa-circle:before { content: "\f0ac"; color: grey; }
input[type="radio"] + .fa-newspaper:before,
input[type="radio"] + label > .fa-newspaper:before { content: "\f1ea"; color: grey; }
/* Checked */
input[type="radio"]:checked + label { color: black; }
input[type="radio"]:checked + .fa-circle:before,
input[type="radio"]:checked + label > .fa-circle:before { content: "\f0ac"; color: black; }
input[type="radio"]:checked + .fa-newspaper:before,
input[type="radio"]:checked + label > .fa-newspaper:before { content: "\f1ea"; color: black; }
|