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

Add support for write-iso in live.cgi with nice select box :-)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Apr 05 03:35:45 2011 +0200 (2011-04-05)
parents bbd7b3e24974
children 253219c1f9fe
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: 18px 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%; }
21 img { border: 0pt none; vertical-align: middle; padding: 0 6px 0 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: 68px;
32 border-bottom: 1px dotted #ddd;
33 }
35 /* Blocks */
37 #block { float: left; }
39 #sub_block { margin: 20px 0; }
41 /* Content */
43 #content { margin: 20px 80px; }
44 #wrapper { margin: 20px 0 20px; }
46 .search {
47 position: absolute;
48 right: 80px;
49 top: 39px;
50 }
52 #actions {
54 }
56 #actions p { padding: 0; }
58 .box {
59 margin: 10px 0;
60 padding: 12px;
61 background: #f8f8f8;
62 border: 1px solid #ddd;
63 }
65 .debug {
66 position: fixed;
67 top: 20px;
68 left: 5px;
69 padding: 6px 20px;
70 background-color: #f8f8f8;
71 border: 1px solid #ddd;
72 }
74 .float_left { float: right; }
75 .float_right { float: right; }
77 /* Table */
79 table {
80 background-color: #f8f8f8;
81 border: 1px solid #ddd;
82 padding: 10px 10px 10px 0;
83 width: 100%;
84 }
86 td.pkg { max-width: 160px; }
87 td.desc { max-width: 300px; }
89 #thead, thead {
90 height: 10px;
91 font-weight: bold;
92 }
94 /* Desktop gui style bar */
96 #tazbar {
97 position: fixed;
98 top: 0;
99 left: 0;
100 height: 24px;
101 width: 100%;
102 padding: 0 0 0 0;
103 background-color: #f1efeb;
104 border-bottom: 1px solid #c1baad;
105 z-index: 200;
106 cursor: default;
107 }
108 #menu { margin: 4px 8px; }
109 #menu a { padding: 2px 4px; color: #000; cursor: default; }
110 #menu a:hover { color: #444; }
111 #icons { margin: 2px 8px; float: right; }
112 #icons img { padding: 0; }
114 .progress { cursor: progress; }
116 /* Misc */
118 pre {
119 background-color: #f8f8f8;
120 border: 1px solid #ddd;
121 padding: 10px;
122 margin: 10px 0;
123 overflow: auto;
124 }
126 .pre_main { margin: 20px 0 10px; }
128 input[type=submit], select {
129 padding: 2px 4px;
130 margin: 4px 0 0;
131 background-color: #f1f1f1;
132 border: 1px solid #ddd;
133 cursor: pointer;
134 }
136 input[type=submit]:hover, select:hover {
137 background-color: #ddd;
138 border: 1px solid #999;
139 }
141 input[type=text] { height: 15px; }
143 /* Round corner */
145 table, pre, input[type=submit], .debug, .box {
146 -moz-border-radius: 4px;
147 -webkit-border-radius: 4px;
148 border-radius: 4px;
149 }