cookutils view web/style.css @ rev 125

web: let have round corner with old mozilla/webkit browser
author Christophe Lincoln <pankso@slitaz.org>
date Tue May 10 02:39:24 2011 +0200 (2011-05-10)
parents 47705cb85d12
children 7704053dce6e
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:hover { text-decoration: none; }
8 pre {
9 background-color: #f8f8f8;
10 border: 1px solid #ddd;
11 padding: 10px;
12 overflow: auto;
13 font-size: 96%;
14 }
16 /* Header */
18 #header {
19 background: #351a0a;
20 height: 40px;
21 border-bottom: 8px solid #d66018;
22 }
24 #header h1 {
25 margin: 0;
26 /* padding: 8px 0 0 42px; */
27 width: 250px;
28 }
30 #header h1 a {
31 color: white;
32 text-decoration: none;
33 font-size: 20px;
34 font-style: italic;
35 }
37 #header h1 a:hover {
38 color: #d66018;
39 }
41 /* Content */
43 #content {
44 margin: 40px 80px;
45 text-align: justify;
46 }
48 .span-ok { color: green; }
49 .span-error { color: red; }
50 .span-sky { color: blue; }
51 .span-no { color: orange; }
52 .span-line { color: #888; }
53 .log-date { color: #666; font-size: 95%; }
54 .sh-comment { color: #b20000; }
55 .sh-val { color: #f35a00; }
57 /* Buttons */
59 .button {
60 padding: 2px 4px;
61 cursor: pointer;
62 color: #000;
63 }
65 a.button, .pctbar {
66 text-decoration: none;
67 color: #666;
68 }
70 .button:hover {
71 background-color: #ddd;
72 border: 1px solid #999;
73 }
75 .pct { background: #9dff4a; padding: 2px 4px; }
77 .button, .pctbar {
78 margin: 0;
79 background: #f1f1f1;
80 border: 1px solid #ddd;
81 }
83 /* Round corner */
85 pre, .button, .pctbar {
86 -moz-border-radius: 4px;
87 -webkit-border-radius: 4px;
88 border-radius: 4px;
89 }
91 /* Footer */
93 #footer {
94 text-align: center;
95 padding: 20px;
96 border-top: 1px solid #ddd;
97 font-size: 90%;
98 }
100 #footer a { padding: 0 2px; }