tinycm view style.css @ rev 121

Remove ashism ==
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Feb 26 12:26:25 2019 +0100 (2019-02-26)
parents d6f01c5019bb
children
line source
1 /* CSS style for SliTaz Bugs/TinyCM */
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: underline; color: #215090; }
9 a:hover { text-decoration: none; }
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: #351a0a;*/
22 background: #333;
23 height: 40px;
24 border-bottom: 8px solid #cfcfcf;
25 }
27 #header h1 {
28 margin: 0;
29 padding: 8px 0 0 42px;
30 width: 250px;
31 }
33 #header h1 a {
34 color: white;
35 text-decoration: none;
36 font-size: 20px;
37 font-style: italic;
38 }
40 #header h1 a:hover {
41 color: #cfcfcf;
42 }
44 /* Header links */
46 #network {
47 float: right;
48 padding: 12px 5px 0;
49 font-size: 12px;
50 margin-right: 100px;
51 }
53 #network a {
54 padding: 0 4px;
55 color: #fff;
56 font-weight: bold;
57 text-decoration: none;
58 }
60 #network a:hover, #user a:hover { color: #cfcfcf; }
62 /* Logo */
64 #logo {
65 background: url(images/logo.png) no-repeat left;
66 position: absolute;
67 float: left;
68 left: 0px;
69 top: 0px;
70 width: 40px;
71 height: 40px;
72 }
74 /* Login and user box */
76 #login {
77 width: 240px;
78 float: left;
79 height: 120px;
80 }
82 #login input[type="text"], #login input[type="password"] {
83 width: 200px; }
85 #login input[type="submit"] { float: none; }
86 #login p { display: inline; }
88 #signup input[type="text"], #signup input[type="password"] {
89 width: 400px; }
91 #user {
92 background-color: #222;
93 padding: 4px;
94 width: 84px;
95 float: right;
96 font-size: 12px;
97 position: absolute;
98 right: 10px;
99 top: 6px;
100 }
101 #user a { padding: 0 2px; color: #fff;
102 font-weight: bold; text-decoration: none; }
104 #account-info { width: 380px; height: 120px; float: right; }
106 /* Languages */
108 #lang {
109 position: absolute;
110 right: 0;
111 top: 48px;
112 padding: 6px;
113 font-size: 12px;
114 }
116 #lang a {
117 text-decoration: none;
118 padding: 0 2px;
119 }
121 #lang a:hover {
122 text-decoration: underline;
123 }
125 /* Search */
127 #search {
128 position: absolute;
129 right: 20px;
130 top: 72px;
131 }
133 #search input[type="text"] { width: 180px; }
135 /* Content */
137 #content {
138 margin: 40px auto;
139 padding: 0 20px;
140 text-align: justify;
141 max-width: 680px;
142 }
144 #edit textarea { width: 100%; height: 240px; background: #f8f8f8; }
145 #edit a { text-decoration: none; }
147 .box, pre, #login, #account-info {
148 background-color: #f8f8f8;
149 border: 1px solid #ddd;
150 padding: 10px;
151 }
153 pre img { margin: 4px 4px 4px 0px; }
155 .error { color: red; }
156 .ok { color: green; }
157 .date { color: #666; font-size: 96%; }
158 .del a { color: #942929; font-size: 96%; }
160 /* Progress bar */
162 .pct { background: #9dff4a; padding: 2px 4px; }
164 .pctbar {
165 margin: 0;
166 color: #666;
167 background: #f1f1f1;
168 border: 1px solid #ddd;
169 overflow: hidden;
170 clear: both;
171 }
173 /* Form */
175 form { display: inline; }
176 textarea { border: 2px solid #ccc; padding: 4px; width: 100%; }
177 select { min-width: 180px; }
178 input[type="submit"], input[type="text"], input[type="password"],
179 input[type="file"], select, #tools a {
180 color: #444444;
181 border: 1px solid #cccccc;
182 padding: 4px;
183 margin: 4px 0px;
184 font-size: 14px;
185 line-height: 1.2em;
186 background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
187 background-image: -moz-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
188 -webkit-appearance: none;
189 -webkit-padding-end: 12px;
190 -webkit-padding-start: 6px;
191 }
193 input[type="text"], input[type="password"] {
194 background: #fefefe; border: 2px solid #ccc;
195 width: 100%; }
196 /*input[type="file"] { border: 2px solid #ddd; }*/
197 /*input[type="checkbox"] { background: #fefefe; }*/
199 /* Be compatible with old FF and Webkit version. */
200 input[type="submit"] {
201 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
202 -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
203 box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
204 }
206 input[type="submit"]:hover, #tools a:hover {
207 cursor: pointer;
208 color: black;
209 }
211 select {
212 background-image: url(images/down.png),
213 -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
214 background-position: center right;
215 background-repeat: no-repeat;
216 }
218 #tools {
219 /*position: absolute;
220 top: 72px;*/
221 padding-top: 10px;
222 margin: 20px 0px;
223 }
224 #tools a { text-decoration: none; margin: 4px 6px 4px 0px; }
226 /* Round corner */
228 pre, .button, .pctbar, .box, #login, #account-info, #user, img,
229 input, textarea, select, #tools a, #cloud-upload, .wall-message {
230 -moz-border-radius: 4px;
231 -webkit-border-radius: 4px;
232 border-radius: 4px;
233 }
235 /* notes */
237 .noteclassic,.noteimportant,.notewarning,.notetip {
238 margin:2em;
239 margin-left:auto;
240 margin-right:auto;
241 width:70% !important;
242 min-height:40px;
243 clear:both;
244 text-align:justify;
245 vertical-align:middle;
246 border-collapse:collapse;
247 padding:15px 20px 15px 80px;
248 background-position:20px 50%;
249 background-repeat:no-repeat;
250 -moz-border-radius:20px;
251 -khtml-border-radius:20px;
252 border-radius:20px;
253 }
255 .noteclassic {
256 background-color:#eef;
257 background-image:url(images/note.png);
258 }
260 .noteimportant {
261 background-color:#ffc;
262 background-image:url(images/important.png);
263 }
265 .notewarning {
266 background-color:#fdd;
267 background-image:url(images/warning.png);
268 }
270 .notetip {
271 background-color:#dfd;
272 background-image:url(images/tip.png);
273 }
275 /* Footer */
277 #footer {
278 text-align: center;
279 padding: 20px;
280 border-top: 1px solid #ddd;
281 font-size: 90%;
282 color: #888;
283 }
285 #footer a { padding: 0 2px; color: #888; text-decoration: none; }
286 #footer a:hover { text-decoration: underline; }
288 /* Plugins CSS */
290 /* Blog */
291 .post-tools {
292 border-top: 1px dotted #ddd;
293 border-bottom: 1px dotted #ddd;
294 padding: 4px 0; }
295 .post-tools a { text-decoration: none; }
296 .post-tools a:hover { text-decoration: underline; }
298 /* Forum */
299 #hashtags { font-size: 16px; font-weight: bold; }
300 #hashtags a { text-decoration: none; padding: 0 4px; }
301 .topic { padding: 6px; margin: 4px; }
302 .topic span a { text-decoration: none; color: #666;
303 font-weight: bold; padding-left: 2px; }
304 .forum-msg { background-color: #eee; padding: 10px;
305 border: 2px solid #ddd; width: 98%;}
307 /* Cloud */
308 #cloud-upload {
309 text-align: center;
310 color: #444444;
311 border: 1px solid #cccccc;
312 padding: 0px;
313 margin: 4px 0px;
314 background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
315 background-image: -moz-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
316 }
318 #cloud-upload input[type="file"] {
319 border: 0px solid #cccccc;
320 width: 85%;
321 -webkit-appearance: none;
322 -webkit-padding-end: 0px;
323 -webkit-padding-start: 0px;
324 }
326 /* Community */
327 #wall-form textarea { height: 50px; background: #f8f8f8; }
328 .wall-message {
329 border: 1px solid #ddd;
330 background: #fafafa;
331 margin: 20px 0;
332 padding: 0;
333 }
334 .wall-message div {
335 padding: 10px 0 0 10px;
336 }
337 .wall-message p {
338 border-top: 1px solid #eee;
339 padding: 10px;
340 }
342 /* Users & Dashboard */
343 #users table, #plugins table { border-collapse: collapse; }
344 #users tr, #plugins tr {
345 padding:.3em 1em;
346 border-bottom: 1px solid #ddd;
347 }
348 #users td, #plugins td { padding: 4px 0; }