blob: c2eb80463b3f6f22c854cc002031f98ba7b44aa0 (
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
|
/* -----------------------------------------------------------------------------------------------
GENERAL
-----------------------------------------------------------------------------------------------*/
a {
color: white;
}
a:visited {
color: white;
}
a:hover {
color: red;
}
h1 {
background: #755;
}
h2 {
background: #866;
}
h3 {
background: #977;
}
select, textarea {
width: 600px;
}
textarea {
height: 100px;
}
/* -----------------------------------------------------------------------------------------------
BODY
-----------------------------------------------------------------------------------------------*/
body {
background: black;
font-family: arial,verdana;
color: white;
}
/* -----------------------------------------------------------------------------------------------
PAGE
-----------------------------------------------------------------------------------------------*/
#page {
background: #333;
}
/* -----------------------------------------------------------------------------------------------
HEADER (and its components)
-----------------------------------------------------------------------------------------------*/
#header {
background: #444;
}
#header #version {
background: #555;
font-size: 12px;
}
#header ul#metanav {
background: #666;
}
#header ul#metanav li {
display: inline;
}
/* -----------------------------------------------------------------------------------------------
CONTENT (and its components)
-----------------------------------------------------------------------------------------------*/
#content { /* 'content' is both the wrapper and the navmenu */
background: #445;
}
#nav { /* 'nav' is only the main menu */
float: left;
width: 200px;
background: #556;
}
#nav ul {
}
#nav li {
}
#nav ul li.category {
font-weight: bold;
background: #667;
}
#nav ul li.menuitem {
list-style-type: none;
}
#nav ul li.current {
list-style-type: none;
background: #99A;
}
#nav ul li.last {
list-style-type: none;
}
#wrapper { /* 'wrapper' is the area where you display the interesting things */
float: left;
width: 800px;
background: #676;
font-size: 14px;
}
/* FOOTER */
#footer {
clear: both;
background: #898;
}
|