tazpanel view styles/default/style.css @ rev 144

index.cgi: add top button
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 17 13:23:15 2011 +0200 (2011-04-17)
parents 30036a49cacd
children 29a4a55db6e3
line source
1 /*
2 * CSS style for TazPanel - (C) 2011 SliTaz GNU/Linux
3 *
4 */
6 /* To always have a scroll bar */
7 html {
8 min-height: 102%;
9 }
11 body {
12 background: #ffffff;
13 color: black;
14 font: 13px sans-serif, vernada, arial;
15 margin: 25px 0 0;
16 }
18 h1 { color: #d66018; padding: 10px 0 0 40px;}
19 h2 { color: #444; margin: 10px 0 10px; }
20 h3 { color: #666; font-size: 140%; }
21 h4 { color: #888; font-size: 120%; margin: 10px 0 5px; }
22 img { border: 0pt none; vertical-align: middle; padding: 0px 6px 2px 0;}
23 p { margin: 10px 0; }
24 ul { list-style-type: square; }
25 li { padding: 4px 0; }
26 a { text-decoration: none; color: #666; }
27 a:hover { color: #000; }
29 /* Header and main title */
31 #header {
32 height: 52px;
33 border-bottom: 1px dotted #ddd;
34 }
36 /* Desktop gui style bar */
38 #toolbar {
39 position: fixed;
40 top: 0;
41 left: 0;
42 height: 24px;
43 width: 100%;
44 padding: 0;
45 background-color: #f1efeb;
46 border-bottom: 1px solid #c1baad;
47 z-index: 200;
48 cursor: default;
49 }
51 #menu { margin: 4px 8px; }
52 #menu a { padding: 2px 4px; color: #000;
53 cursor: default; }
54 #menu a:hover { color: #444; }
55 #icons { margin: 2px 8px; float: right; }
56 #icons img { padding: 0; }
58 #loading {
59 /* font-weight: bold; */
60 background-color: #f8f8f8;
61 border: 1px solid #ddd;
62 color: #666;
63 cursor: progress;
64 position: fixed;
65 top: 92px;
66 right: 120px;
67 width: 248px;
68 padding: 4px 4px 2px;
69 }
71 /* Blocks */
73 #block { float: left; }
75 /* Sidebar menus */
77 #sidebar {
78 position: fixed;
79 top: 102px;
80 right: 5px;
81 width: 116px;
82 }
84 #sidebar a {
85 display: block;
86 padding: 0px 0 0px 12px;
87 margin: 0;
88 }
90 #sidebar a.active {
91 color: #000;
92 font-weight: bold;
93 }
95 #sidebar h4 { margin: 0 0 2px 12px; }
96 #sidebar ul { list-style-type: none; padding: 0; }
98 /* Content */
100 #content { margin: 20px 40px 20px 40px; }
101 #content-sidebar { margin: 20px 120px 20px 40px; }
102 #wrapper { margin: 10px 0 20px; }
104 #actions {
105 height: 20px;
106 margin: 16px 0;
107 }
109 #actions p { margin: 6px 0; }
111 .search {
112 position: absolute;
113 right: 40px;
114 top: 32px;
115 }
117 .search input[type=submit] {
118 padding: 4px;
119 margin-left: -4px;
120 background-color: #f1f1f1;
121 border: 1px solid #ddd;
122 cursor: pointer;
123 color: #000;
124 font-weight: bold;
125 border-radius: 0px;
126 }
128 .search input[type=submit].radius {
129 border-top-right-radius: 4px;
130 border-bottom-right-radius: 4px;
131 border-top-left-radius: 0px;
132 border-bottom-left-radius: 0px;
133 }
135 .search input[type=text] {
136 border: 1px solid #ddd;
137 padding: 4px;
138 height: 17px;
139 margin: 0;
140 width: 200px;
141 border-top-left-radius: 4px;
142 border-bottom-left-radius: 4px;
143 }
145 .box {
146 margin: 10px 0;
147 padding: 12px;
148 background: #f8f8f8;
149 border: 1px solid #ddd;
150 }
152 .box ul { list-style-type: none; padding: 0; }
154 .debug {
155 position: fixed;
156 bottom: 0px;
157 right: 10px;
158 left: 10px;
159 margin: 5px;
160 padding: 4px 10px;
161 background-color: #111;
162 color: #fff;
163 border: 0;
164 font-size: 12px;
165 opacity: 0.9;
166 }
168 .float-left { float: left; }
169 .float-right { float: right; }
171 /* Table */
173 table {
174 background-color: #f8f8f8;
175 border: 1px solid #ddd;
176 padding: 10px;
177 width: 100%;
178 margin: 0 0 6px 0;
179 }
181 table a { color: #000; }
182 table a:hover { color: #666; }
183 td.small { min-width: 60px; }
184 td.pkg { max-width: 160px; }
185 td.desc { max-width: 300px; }
187 #thead, .thead, thead {
188 height: 10px;
189 font-weight: bold;
190 }
192 /* syntax_highlighter */
194 span.conf-comment { color: #666; }
195 span.conf-var { color: #392600; }
196 span.conf-val, span.sh-val { color: #f35a00; }
197 span.sh-comment { color: #b20000; }
198 span.activity-log { color: #888; font-size: 95%; }
199 span.diff-rm { color: red; }
200 span.diff-add { color: green; }
201 span.diff-at { color: blue; }
203 /* Misc */
205 pre, .pre-main {
206 background-color: #f8f8f8;
207 border: 1px solid #ddd;
208 padding: 10px;
209 margin: 10px 0;
210 overflow: auto;
211 }
213 .pre-main { margin: 16px 0; }
215 input[type=submit], select, .button {
216 padding: 4px;
217 margin: 0;
218 background-color: #f1f1f1;
219 border: 1px solid #ddd;
220 cursor: pointer;
221 color: #000;
222 }
224 input[type=submit]:hover, select:hover, .button:hover {
225 background-color: #ddd;
226 border: 1px solid #999;
227 }
229 input[type=text], input[type=password] { height: 18px; }
231 div.scroll { height: 200px; overflow: auto;
232 border: 1px solid #ddd; }
233 div.scroll table { border: 0px solid #fff; }
235 /* Round corner */
237 #loading, table, pre, input[type=submit], .debug, .box,
238 .button, div.scroll {
239 /*-moz-border-radius: 4px;
240 -webkit-border-radius: 4px; */
241 border-radius: 4px;
242 }
244 /* Help page */
246 #help { text-align: justify; }
247 #help a { color: #215090; text-decoration: underline; }
248 #help a:hover { text-decoration: none; color: blue; }
250 /* Footer */
252 #footer {
253 /* border-bottom: 1px solid #c1baad; */
254 height: 25px;
255 text-align: center;
256 padding: 40px 10px;
257 font-size: 11px;
258 color: #bbb;
259 }
261 #footer a { color: #bbb; }
262 #footer a:hover { color: #555; }