blob: 347f4430d8f12337ff4110001be685fc59998f26 (
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
|
/*
* local.css: stylesheet for subvert.org.uk.
* Copyright © 2008 Benjamin M. A'Lee <bma@subvert.org.uk>
*
* This work is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 3, as
* published by the Free Software Foundation.
*
* This work is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this work. If not, see <http://www.gnu.org/licenses/>.
*/
/* Positioning first. Colours at the end. */
body {
font-family: sans-serif;
margin: 0;
padding: 0;
}
#content {
margin: 1em 15em 0 1em;
padding: 2em 3em 4em 1.5em;
border: 1px solid;
}
#sidebar {
width: 10em;
min-height: 50%;
font-family: sans-serif;
text-align: left;
margin: 1em 1em 2em 1em;
line-height: 1em;
border: 1px solid;
position: absolute;
right: 0;
top: 5;
}
#sidebar h2 {
font-size: 1em;
}
.header {
padding: 1ex;
border-bottom: solid 1px;
margin: 0;
font-size: 1.5em;
}
#footer {
border: 1px solid;
padding: .5em;
padding-left: 1em;
margin: 1em 15em 1em 1em;
}
.pagedate, .pagelicense, .pagecopyright {
margin-top: 0;
margin-bottom: 0;
}
#pageinfo {
border: none;
}
.inlinepage {
border: none;
}
.pagelicense p, .pagecopyright p {
display: inline;
}
pre {
overflow: auto;
border: solid;
border-width: thin;
padding: 5px 10px;
}
/* Set colours here. */
body {
background: royalblue;
}
#content, #footer, .header {
background-color: silver;
border-color: black;
}
#sidebar {
background-color: silver;
border-color: black;
}
pre, code {
background-color: #EEEEEE;
}
|