1/*
2 * Layout & design elements for the sidebar
3 *
4 * @author Chris chris at jalakai dot co dot uk (sidebar template)
5 * @author Christopher Arndt <chris@chrisarndt.de>
6 * @author Don Bowman  <don@lynsoft.co.uk>
7 */
8
9/* ---------- document ---------- */
10div.dokuwiki #content {
11/*	color: __text__; */
12	width: 80%;
13	float: right;
14	margin-left: 2%;
15	margin-right: 0px;
16}
17
18/* ---------- sidebar ---------- */
19div.dokuwiki #sidebar {
20/*	color: __text__; */
21	float: left;
22	width: 17%;
23	margin: 0px;
24}
25
26div.dokuwiki #sitecmd, #sitenav {
27	background-color: __background_alt__;
28	margin-top: 0px;
29	margin-left:  0px;
30	margin-right: 0px;
31	margin-bottom: 1.0em;
32	border: solid 1px __border__;
33	padding-top: 0.2em;
34	padding-bottom: 0.2em;
35	padding-left: 0.2em;
36	padding-right: 0.2em;
37}
38
39div.dokuwiki #sitecmd_title, #sitenav_title {
40/*	font-family: "Times New Roman","Times",serif; */
41  color: __text_alt__;
42	font-weight: bold;
43	font-size: 110%;
44	padding-left: 0.2em;
45}
46
47div.dokuwiki #sitecmd_content, #sitenav_content {
48	overflow: hidden;
49	background-color: __background__;
50	font-size: 100%;
51	border: solid 1px __border__;
52	padding-left: 0.1em;
53	padding-right: 0.1em;
54	padding-top: 0.5em;
55	padding-bottom: 0.5em;
56}
57
58div.dokuwiki #sitecmd_content {
59	/* padding-left: 1.0em; */
60}
61
62/* ---------- unordered lists ---------- */
63div.dokuwiki #sidebar ul {
64  list-style-type: none;
65  list-style-image: none;
66  line-height: 1.2em;
67  margin: 0;
68  padding: 0;
69  padding-left: 0.8em;
70}
71
72div.dokuwiki #sidebar hr {
73	height: 3px;
74  color: __background_alt__;
75  background-color: __background_alt__;
76	border: solid 1px __border__;
77  border-left-width: 0px;
78  border-right-width: 0px;
79  margin: 0.5em 0;
80}
81
82div.dokuwiki #sitenav ul li {
83  background: transparent url(images/closed.gif) left top no-repeat;
84  padding-left: 0.6em;
85}
86
87div.dokuwiki #sitenav ul.idx li.open {
88	list-style-image: none;
89	background: transparent url(images/open.gif) left top no-repeat;
90}
91
92div.dokuwiki #sitenav ul.idx li.closed {
93	list-style-image: none;
94	background: transparent url(images/closed.gif) left top no-repeat;
95}
96
97div.dokuwiki #sitenav ul li.clear {
98  background-image: none;
99  padding-left: 0.4em;
100}
101
102div.dokuwiki #sitecmd ul {
103  padding-top: 0.4em;
104}
105
106div.dokuwiki #sitecmd ul li {
107  background: transparent url(images/bullet.gif) left top no-repeat;
108  padding-left: 0.6em;
109}
110
111/* ---------- links ---------- */
112div.dokuwiki #sitenav a, #sitecmd a  {
113	color: __text__;
114	border: 0px;
115	text-decoration: none;
116}
117
118div.dokuwiki #sitenav a:visited, #sitecmd a:visited  {
119	border: 0px;
120	text-decoration: none;
121}
122
123div.dokuwiki #sitenav a:hover, #sitecmd a:hover  {
124	color: __text_alt__;
125	border: 0px;
126}
127
128div.dokuwiki .buttonbox {
129	text-align: center;
130}
131
132div.dokuwiki .buttonbox input.button {
133	width: 90%;
134}
135
136/* ---------- special headlines ---------- */
137div.dokuwiki #sidebar h1 {
138	font-size: 100%;
139	margin-left: 0.1em;
140	margin-bottom: 0.5em;
141	border-bottom: none;
142}
143