tazbug view web/style.css @ rev 135

Store bug in bug/open and bug/closed (not yet ready for tank still some plugins adjust)
author Christophe Lincoln <pankso@slitaz.org>
date Tue Feb 21 21:11:27 2017 +0100 (2017-02-21)
parents 039c90c60494
children f07cd117feed
line source
1 /* CSS style for SliTaz Bugs */
3 html { min-height: 102%; }
4 body { font: 13px sans-serif, vernada, arial; margin: 0; }
5 h1 { margin: 0; padding: 8px; color: #fff; font-size: 20px; }
6 h1 a { color: #fff; text-decoration: none; }
7 h2 { color: #444; } h3 { color: #666; font-size: 140%; }
8 a { text-decoration: none; color: #215090; }
9 a:hover { text-decoration: underline; }
10 img { border: 0pt none; vertical-align: middle; }
11 pre {
12 overflow: auto;
13 font-size: 98%;
14 }
15 textarea, table { width: 100%; }
16 thead { font-weight: bold; }
18 /* Header */
20 #header {
21 background: #222;
22 height: 40px;
23 border-bottom: 4px solid #afafaf;
24 }
26 #header h1 {
27 margin: 0;
28 padding: 8px 0 0 42px;
29 width: 250px;
30 }
32 #header h1 a {
33 color: white;
34 text-decoration: none;
35 font-size: 20px;
36 font-style: italic;
37 }
39 #header h1 a:hover {
40 color: #afafaf;
41 }
43 /* Header links */
45 #network {
46 float: right;
47 padding: 14px 5px 0;
48 font-size: 12px;
49 margin-right: 100px;
50 }
52 #network a, #network span {
53 padding: 0 4px;
54 color: #fff;
55 font-weight: bold;
56 text-decoration: none;
57 }
59 #network a:hover, #user a:hover, #network span { color: #cfcfcf; }
61 /* Logo */
63 #logo {
64 background: url(images/logo.png) no-repeat left;
65 position: absolute;
66 float: left;
67 left: 0px;
68 top: 0px;
69 width: 40px;
70 height: 40px;
71 }
73 /* Login and user box */
75 #login {
76 min-width: 300px;
77 float: left;
78 height: 140px;
79 }
81 #login input[type="text"], #login input[type="password"] {
82 width: 280px; }
84 #login input[type="submit"] { float: none; }
86 #user {
87 background-color: #333;
88 padding: 4px;
89 width: 84px;
90 float: right;
91 font-size: 12px;
92 position: absolute;
93 right: 10px;
94 top: 6px;
95 }
96 #user a { padding: 0 2px; color: #fff;
97 font-weight: bold; text-decoration: none; }
99 #account-info { width: 360px; height: 140px; float: right; }
101 /* Search */
103 #search {
104 position: absolute;
105 right: 20px;
106 top: 60px;
107 }
109 #search input[type="text"] { width: 200px; }
111 /* Content */
113 #content {
114 margin: 40px auto;
115 padding: 0 20px;
116 text-align: justify;
117 max-width: 720px;
118 }
120 #newbug textarea, #editbug textarea { width: 490px; height: 180px; }
122 #edit textarea { width: 630px; height: 140px; }
123 #edit input[type="text"] { width: 620px; }
125 .box, pre, #login, #account-info {
126 background-color: #f8f8f8;
127 border: 1px solid #ddd;
128 padding: 10px;
129 }
131 pre img { margin: 4px 4px 4px 0px; }
133 .error { color: red; }
134 .ok { color: green; }
135 .date { color: #666; font-size: 96%; }
137 /* Progress bar */
139 .pct { background: #9dff4a; padding: 2px 4px; }
141 .pctbar {
142 margin: 0;
143 color: #666;
144 background: #f1f1f1;
145 border: 1px solid #ddd;
146 overflow: hidden;
147 clear: both;
148 }
150 /* Form */
152 form { display: inline; }
153 textarea { border: 2px solid #ccc; padding: 4px; min-height: 60px; }
154 select { min-width: 180px; }
155 input[type="submit"], input[type="text"], input[type="password"],
156 select, #tools a {
157 color: #444444;
158 border: 1px solid #afafaf;
159 padding: 4px;
160 margin: 4px 0px;
161 font-size: 14px;
162 line-height: 1.2em;
163 background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
164 background-image: -moz-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
165 -webkit-appearance: none;
166 -webkit-padding-end: 12px;
167 -webkit-padding-start: 6px;
168 }
170 input[type="text"], input[type="password"] {
171 background: #fefefe; border: 2px solid #ccc;
172 width: 480px; }
173 /*input[type="file"] { border: 2px solid #ddd; }*/
174 /*input[type="checkbox"] { background: #fefefe; }*/
176 /* Be compatible with old FF and Webkit version. */
177 input[type="submit"] {
178 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
179 -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
180 box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
181 }
183 input[type="submit"]:hover, #tools a:hover {
184 cursor: pointer;
185 color: black;
186 }
188 select {
189 background-image: url(images/down.png),
190 -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
191 background-position: center right;
192 background-repeat: no-repeat;
193 }
195 #tools {
196 padding-top: 10px;
197 /*margin-top: 20px;
198 border-top: 1px dotted #ccc;
199 position: fixed;
200 bottom: 10px;*/
201 }
202 #tools a { text-decoration: none; margin: 4px 6px 4px 0px; }
204 /* Round corner */
206 pre, .button, .pctbar, #login, #account-info, #user, img, input,
207 textarea, select, #tools a {
208 -moz-border-radius: 4px;
209 -webkit-border-radius: 4px;
210 border-radius: 4px;
211 }
213 /* Footer */
215 #footer {
216 text-align: center;
217 padding: 20px;
218 border-top: 1px solid #ddd;
219 font-size: 90%;
220 }
222 #footer a { padding: 0 2px; }
224 /* Users & Dashboard */
225 #users table, #plugins table { border-collapse: collapse; }
226 #users tr, #plugins tr {
227 padding:.3em 1em;
228 border-bottom: 1px solid #ddd;
229 }
230 #users td, #plugins td { padding: 4px 0; }