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

Add hardware.cgi, tiny fix in pkgs.cgi and add a TODO list
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 08 05:59:24 2011 +0200 (2011-04-08)
parents 5b7e9a6565c9
children cf15cb2ff715
line source
1 /*
2 CSS style for TazPanel - (C) 2011 SliTaz GNU/Linux
3 */
5 /* To always have a scroll bar */
6 html {
7 min-height: 102%;
8 }
10 body {
11 background: #ffffff;
12 color: black;
13 font: 13px sans-serif, vernada, arial;
14 margin: 25px 0 0;
15 }
17 h1 { color: #d66018; padding: 10px 0 0 40px;}
18 h2 { color: #444; margin: 10px 0 10px; }
19 h3 { color: #666; font-size: 140%; }
20 h4 { color: #888; font-size: 120%; margin: 10px 0 5px; }
21 img { border: 0pt none; vertical-align: middle; padding: 0px 6px 2px 0;}
22 p { margin: 6px 0; }
23 ul { list-style-type: none; padding: 0; }
24 li { padding: 4px 0; }
25 a { text-decoration: none; color: #666; }
26 a:hover { color: #000; }
28 /* Header and main title */
30 #header {
31 height: 52px;
32 border-bottom: 1px dotted #ddd;
33 }
35 /* Desktop gui style bar */
37 #toolbar {
38 position: fixed;
39 top: 0;
40 left: 0;
41 height: 24px;
42 width: 100%;
43 padding: 0;
44 background-color: #f1efeb;
45 border-bottom: 1px solid #c1baad;
46 z-index: 200;
47 cursor: default;
48 }
50 #menu { margin: 4px 8px; }
51 #menu a { padding: 2px 4px; color: #000;
52 cursor: default; }
53 #menu a:hover { color: #444; }
54 #icons { margin: 2px 8px; float: right; }
55 #icons img { padding: 0; }
57 #loading {
58 /* font-weight: bold; */
59 background-color: #f8f8f8;
60 border: 1px solid #ddd;
61 color: #666;
62 cursor: progress;
63 position: fixed;
64 top: 92px;
65 right: 40px;
66 width: 248px;
67 padding: 4px 4px 2px;
68 }
70 /* Blocks */
72 #block { float: left; }
74 /* Sidebar menus */
76 #sidebar {
77 position: fixed;
78 top: 187px;
79 right: 5px;
80 width: 116px;
81 }
83 #sidebar a {
84 display: block;
85 padding: 1px 0 1px 12px;
86 margin:0;
87 }
89 #sidebar a.active {
90 color: #000;
91 font-weight: bold;
92 /* Vertical tab alike menu
93 background-color: #f8f8f8;
94 border-top: 1px solid #ddd;
95 border-bottom: 1px solid #ddd;
96 border-right: 1px solid #ddd;
97 border-top-right-radius: 4px;
98 border-bottom-right-radius: 4px; */
99 }
100 #sidebar h4 { margin: 0 0 2px 12px; }
102 /* Content */
104 #content { margin: 20px 40px 20px 40px; }
105 #content-sidebar { margin: 20px 120px 20px 40px; }
106 #wrapper { margin: 10px 0 20px; }
108 .search {
109 position: absolute;
110 right: 40px;
111 top: 32px;
112 }
114 .search input[type=submit] {
115 padding: 4px;
116 margin-left: -5px;
117 background-color: #f1f1f1;
118 border: 1px solid #ddd;
119 cursor: pointer;
120 color: #000;
121 font-weight: bold;
122 border-top-right-radius: 4px;
123 border-bottom-right-radius: 4px;
124 border-top-left-radius: 0px;
125 border-bottom-left-radius: 0px;
126 }
128 .search input[type=text] {
129 border: 1px solid #ddd;
130 padding: 4px;
131 height: 17px;
132 margin: 0;
133 width: 190px;
134 border-top-left-radius: 4px;
135 border-bottom-left-radius: 4px;
136 }
138 #actions {
139 height: 20px;
140 margin: 16px 0;
141 }
143 .box {
144 margin: 10px 0;
145 padding: 12px;
146 background: #f8f8f8;
147 border: 1px solid #ddd;
148 }
150 .debug {
151 position: fixed;
152 bottom: 0px;
153 left: 0px;
154 margin: 10px 20px;
155 padding: 6px 20px;
156 background-color: #e64a00;
157 }
159 .float-left { float: left; }
160 .float-right { float: right; }
162 /* Table */
164 table {
165 background-color: #f8f8f8;
166 border: 1px solid #ddd;
167 padding: 10px;
168 width: 100%;
169 margin: 0 0 6px 0;
170 }
172 table a { color: #000; }
173 table a:hover { color: #666; }
174 td.small { min-width: 60px; }
175 td.pkg { max-width: 160px; }
176 td.desc { max-width: 300px; }
178 #thead, .thead, thead {
179 height: 10px;
180 font-weight: bold;
181 }
183 /* Misc */
185 pre, .pre-main {
186 background-color: #f8f8f8;
187 border: 1px solid #ddd;
188 padding: 10px;
189 margin: 10px 0;
190 overflow: auto;
191 }
193 .pre-main { margin: 16px 0; }
195 input[type=submit], select, .button {
196 padding: 4px;
197 margin: 0;
198 background-color: #f1f1f1;
199 border: 1px solid #ddd;
200 cursor: pointer;
201 color: #000;
202 }
204 input[type=submit]:hover, select:hover, .button:hover {
205 background-color: #ddd;
206 border: 1px solid #999;
207 }
209 input[type=text] { height: 18px; }
211 div.scroll { height: 200px; overflow: auto;
212 border: 1px solid #ddd; }
213 div.scroll table { border: 0px solid #fff; }
215 /* Round corner */
217 #loading, table, pre, input[type=submit], .debug, .box,
218 .button, div.scroll {
219 /*-moz-border-radius: 4px;
220 -webkit-border-radius: 4px; */
221 border-radius: 4px;
222 }
224 /* Footer */
226 #footer {
227 /* border-bottom: 1px solid #c1baad; */
228 height: 25px;
229 text-align: center;
230 padding: 40px 10px;
231 font-size: 11px;
232 }