blob: 9085cc220e7f941f402d796a0341b6da0cd97b90 (
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
|
/* Page Structure */
#container { position:absolute; top: 3em; margin-left:1em; margin-right:2em; padding:0; margin-top:1.5em; min-width:
650px; }
#header { width:100%; }
#content-main { float:left; }
/* HEADER */
#header {
background:#000;
color:#ffc;
position:absolute;
}
#header a:link, #header a:visited { color:white; }
#header a:hover { text-decoration:underline; }
#branding h1 { padding:0 10px; font-size:18px; margin:8px 0; font-weight:normal; color:#f4f379; }
#branding h2 { padding:0 10px; font-size:14px; margin:-8px 0 8px 0; font-weight:normal; color:#ffc; }
#user-tools { position:absolute; top:0; right:0; padding:1.2em 10px; font-size:11px; text-align:right; }
/*SIDEBAR*/
#sidebar {
float:left;
position: relative;
width: auto;
height: 100%;
margin-top: 3em;
padding-right: 1.5em;
padding-left: 1.5em;
padding-top: 1em;
padding-bottom:3em;
background: #000;
color:ffc;
}
a.sidebar:link {color: #fff;}
a.sidebar:active {color: #fff;}
a.sidebar:visited {color: #fff;}
a.sidebar:hover {color: #fff;}
ul.sidebar {
color: #ffc;
text-decoration: none;
list-style-type: none;
text-indent: -1em;
}
ul.sidebar-level2 {
text-indent: -2em;
list-style-type: none;
font-size: 11px;
}
/* ALIGNED FIELDSETS */
.aligned label { display:block; padding:0 1em 3px 0; float:left; width:8em; }
.aligned label.inline { display:inline; float:none; }
.colMS .aligned .vLargeTextField, .colMS .aligned .vXMLLargeTextField { width:350px; }
form .aligned p, form .aligned ul { margin-left:7em; padding-left:30px; }
form .aligned table p { margin-left:0; padding-left:0; }
form .aligned p.help { padding-left:38px; }
.aligned .vCheckboxLabel { float:none !important; display:inline; padding-left:4px; }
.colM .aligned .vLargeTextField, colM .aligned .vXMLLargeTextField { width:610px; }
.checkbox-row p.help { margin-left:0; padding-left:0 !important; }
|