cookutils view web/style.css @ rev 256

Tiny edits
author Paul Issott <paul@slitaz.org>
date Sun May 29 21:00:54 2011 +0100 (2011-05-29)
parents c41b34790f44
children 50314f267be7
line source
1 /* CSS style for SliTaz Cooker */
3 body { font: 13px sans-serif, vernada, arial; margin: 0; }
4 h1 { margin: 0; padding: 8px; color: #fff; font-size: 20px; }
5 h1 a { color: #fff; text-decoration: none; }
6 h2 { color: #444; } h3 { color: #666; font-size: 140%; }
7 a { text-decoration: underline; color: #215090; }
8 a:hover { text-decoration: none; }
9 pre {
10 background-color: #f8f8f8;
11 border: 1px solid #ddd;
12 padding: 10px;
13 overflow: auto;
14 font-size: 96%;
15 }
17 /* Header */
19 #header {
20 background: #351a0a;
21 height: 40px;
22 border-bottom: 8px solid #d66018;
23 }
25 #header h1 {
26 margin: 0;
27 /* padding: 8px 0 0 42px; */
28 width: 250px;
29 }
31 #header h1 a {
32 color: white;
33 text-decoration: none;
34 font-size: 20px;
35 font-style: italic;
36 }
38 #header h1 a:hover {
39 color: #d66018;
40 }
42 /* Content */
44 #content {
45 margin: 40px 80px;
46 text-align: justify;
47 }
49 .span-ok { color: green; }
50 .span-red { color: red; }
51 .span-sky { color: blue; }
52 .span-no { color: orange; }
53 .span-line { color: #888; }
54 .log-date { color: #666; font-size: 95%; }
55 .sh-comment { color: #b20000; }
56 .sh-val { color: #f35a00; }
58 /* Buttons */
60 .button {
61 padding: 2px 4px;
62 cursor: pointer;
63 color: #000;
64 }
66 a.button, .pctbar {
67 text-decoration: none;
68 color: #666;
69 }
71 .button:hover {
72 background-color: #ddd;
73 border: 1px solid #999;
74 }
76 .pct { background: #9dff4a; padding: 2px 4px; }
78 .button, .pctbar {
79 margin: 0;
80 background: #f1f1f1;
81 border: 1px solid #ddd;
82 }
84 /* Round corner */
86 pre, .button, .pctbar {
87 -moz-border-radius: 4px;
88 -webkit-border-radius: 4px;
89 border-radius: 4px;
90 }
92 /* Footer */
94 #footer {
95 text-align: center;
96 padding: 20px;
97 border-top: 1px solid #ddd;
98 font-size: 90%;
99 }
101 #footer a { padding: 0 2px; }