Newer
Older
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
/* --------------------------------------------------
General
-------------------------------------------------- */
body {
background: #fff;
min-width: 600px;
}
hr {
border: 1px solid #e76808;
}
/* --------------------------------------------------
Links
-------------------------------------------------- */
a:link {
color: #d45e08;
}
a:visited {
color: #a52f0f;
}
a:active {
color: #ffc62b;
}
a:hover {
}
/* --------------------------------------------------
Page corners
-------------------------------------------------- */
#branding, #brandingC {
border-top-left-radius: 15px;
border-top-right-radius: 15px;
-moz-border-radius-topleft: 15px;
-moz-border-radius-topright: 15px;
#footer {
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
-moz-border-radius-bottomleft: 15px;
-moz-border-radius-bottomright: 15px;
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
}
/* --------------------------------------------------
Branding
-------------------------------------------------- */
#branding {
background: url('/images/orangefade.png') repeat-x #ffc62b bottom;
clear: both;
}
#brandingC {
background: url('/images/bgfade.png') repeat-y;
}
#title {
color: #a52f0f;
}
#loginForm {
float: right;
padding: 1em;
padding-bottom: 0;
line-height: 1.5em;
text-align: right;
font-size: 80%;
}
#loginForm input.text {
width: 8em;
}
/* --------------------------------------------------
Breadcrumb
-------------------------------------------------- */
#breadcrumb {
font-weight: bold;
font-size: 80%;
color: #ffc62b;
}
#breadcrumb ul {
margin: 0;
padding: 0;
list-style-type: none;
}
#breadcrumb li {
display: inline;
}
#breadcrumb a {
text-decoration: none;
}
/* --------------------------------------------------
Columns
-------------------------------------------------- */
#wrapper {
background: #fff0cd;
padding: 0;
clear: both;
border: 2px solid #e76808;
border-top: 0;
border-bottom: 0;
}
#navigation {
float: left;
width: 17%;
padding-top: 0.5em;
/* overflow: auto; */
}
#content {
float: right;
width: 82%;
}
#primary {
float: left;
width: 66%;
padding: 0;
}
#primaryC {
padding-right: 0.5em;
}
#secondary {
float: right;
width: 33%;
}
/* --------------------------------------------------
Menu
-------------------------------------------------- */
#navigationC ul {
margin: 0;
padding-left: 0;
list-style-type: none;
}
/* --- Menu item */
#navigationC ul li a {
display: block;
text-decoration: none;
font-weight: bold;
line-height: 1.5em;
font-size: 95%;
color: #ffc62b;
background: #e76808;
border-top-right-radius: 7px;
border-bottom-right-radius: 7px;
-moz-border-radius-topright: 7px;
-moz-border-radius-bottomright: 7px;
padding-left: 1em;
margin-bottom: 2px;
}
#navigationC ul li a:hover {
background-color: #d45e08;
}
#navigationC ul li a.select {
color: #fff0cd;
border-bottom-right-radius: 0;
-moz-border-radius-bottomright: 0;
}
/* --- Submenu item */
#navigationC ul ul li a {
font-size: 80%;
font-weight: normal;
padding-left: 2em;
background: #ffa405;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
-moz-border-radius-topright: 0;
-moz-border-radius-bottomright: 0;
color: #d45e08;
}
#navigationC ul li li a:hover {
background-color: #e69200;
}
#navigationC ul ul li a.select {
color: #fff0cd;
}
Graham Cole
committed
#navigationC ul ul li.lastsub a {
border-bottom-right-radius: 7px;
-moz-border-radius-bottomright: 7px;
Graham Cole
committed
#navigationC ul li.lastsub a {
border-bottom-right-radius: 7px;
-moz-border-radius-bottomright: 7px;
/* --------------------------------------------------
Boxes
-------------------------------------------------- */
div.cbb {
border-radius: 12px;
-moz-border-radius: 12px;
-webkit-border-radius: 12px;
padding: 1em;
box-shadow: 3px 3px 5px #777;
-moz-box-shadow: 3px 3px 5px #777;
-webkit-box-shadow: 3px 3px 5px #777;
}
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
/* --------------------------------------------------
Search box
-------------------------------------------------- */
#search input.text {
width: 100%;
}
#search .buttons {
margin-top: 0.5em;
}
#search div.left {
float: left;
}
#search input.submit {
float: right;
padding: 0;
}
/* --------------------------------------------------
Valid box
-------------------------------------------------- */
ul#valid {
margin: 0;
margin-left: 1em;
margin-bottom: 0.3em;
padding: 0;
}
/* --------------------------------------------------
Footer
-------------------------------------------------- */
#footer {
margin: 0;
margin-bottom: 0.5em;
background: url('/images/orangefade-bottom.png') top repeat-x #ffc62b;
}
#footer p {
margin: 0;
text-align: center;
font-size: 80%;
padding: 0.5em;
}
/* --------------------------------------------------
Content box (e.g. for news items)
-------------------------------------------------- */
.box {
background: #ffffff;
border-radius: 7px;
-moz-border-radius: 7px;
}
.box div.boxcontent {
border: 2px solid #e76808;
border-top: 1px solid #e76808;
border-bottom: 1px solid #ffffff;
}
.box .boxhead a, .box .boxhead h2, .box .boxhead h3, .box .boxfoot p, .boxfoot a {
color: #ffc62b;
}
.box .boxhead {
background: #e76808;
border-top-left-radius: 7px;
border-top-right-radius: 7px;
-moz-border-radius-topleft: 7px;
-moz-border-radius-topright: 7px;
background: #ffffff;
border-top: 2px solid #e76808;
border-left: 2px solid #e76808;
border-right: 2px solid #e76808;
border-top-left-radius: 7px;
border-top-right-radius: 7px;
-moz-border-radius-topleft: 7px;
-moz-border-radius-topright: 7px;
height: 5px;
margin: 0;
padding: 0;
}
.box .boxfoot {
background: #e76808;
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
-moz-border-radius-bottomleft: 7px;
-moz-border-radius-bottomright: 7px;
background: #ffffff;
height: 5px;
margin: 0;
padding: 0;
border-bottom: 2px solid #e76808;
border-left: 2px solid #e76808;
border-right: 2px solid #e76808;
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
-moz-border-radius-bottomleft: 7px;
-moz-border-radius-bottomright: 7px;
}
/* --------------------------------------------------
Error box
-------------------------------------------------- */
.error {
margin-right: 0.5em;
margin-bottom: 0.5em;
}
.error div.errorcontent {
background: #ffffff;
border: 2px solid #ff0000;
border-bottom-left-radius: 7px;
border-bottom-right-radius: 7px;
-moz-border-radius-bottomleft: 7px;
-moz-border-radius-bottomright: 7px;
padding-bottom: 0.5em;
}
.error .errorhead h3 {
color: #ffffff;
}
.error .errorhead {
background: #ff0000;
border-top-left-radius: 7px;
border-top-right-radius: 7px;
-moz-border-radius-topleft: 7px;
-moz-border-radius-topright: 7px;
margin: 0.5em 0 0 0;
font-size: 80%;
border-radius: 7px;
-moz-border-radius: 7px;
padding: 0.2em 0.5em;
background: #ff0000;
color: #ffffff;
margin-right: 0.5em;
}
background: #e76808;
color: #ffffff;
margin-right: 0.5em;
}
color: #ffc62b;
}
.infobar a:active {
color: #ffffff;
}
background: #e76808;
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
}
.navbar a {
color: #ffc62b;
font-weight: bold;
text-decoration: none;
}
/* --------------------------------------------------
Dialog box
-------------------------------------------------- */
.dialog {
text-align: center;
margin: auto;
width: 20em;
}
/* --------------------------------------------------
Tables
-------------------------------------------------- */
table.border th {
background: #e76808;
color: #ffc62b;
}
table.border td {
background: #ffffff;
}
table.border a:link {
color: #d45e08;
}
/* --------------------------------------------------
Edit toolbar
-------------------------------------------------- */
.edit {
margin-top: 1em;
border-top: 2px solid #e76808;
font-size: 80%;
text-align: right;
}
.edit ul {
margin: 0;
}
.edit li {
display: inline;
float: right;
padding-left: 1em;
}
/* --------------------------------------------------
Hacks to work around inadequacies of TinyMCE
-------------------------------------------------- */
.tt {
font-family: monospace;
}
/* --------------------------------------------------
Forms
-------------------------------------------------- */
fieldset {
border: 2px dotted #e76808;
}