cookutils view web/style.css @ rev 385

Small fix to css (again)
author Christophe Lincoln <pankso@slitaz.org>
date Sat May 12 23:38:48 2012 +0200 (2012-05-12)
parents 3fd578a80412
children c0b22f37b0ed
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, #network a:hover {
39 color: #d66018;
40 }
42 /* Header links */
44 #network {
45 float: right;
46 padding: 10px 5px 0;
47 font-size: 12px;
48 }
50 #network a {
51 padding: 0 6px;
52 color: #fff;
53 font-weight: bold;
54 text-decoration: none;
55 }
57 /* Content */
59 #content {
60 margin: 40px 80px;
61 text-align: justify;
62 }
64 .span-ok { color: green; }
65 .span-red { color: red; }
66 .span-sky { color: blue; }
67 .span-no { color: orange; }
68 .span-line { color: #888; }
69 .log-date { color: #666; font-size: 95%; }
70 .sh-comment { color: #b20000; }
71 .sh-val { color: #f35a00; }
73 /* Buttons */
75 .button {
76 cursor: pointer;
77 padding: 4px;
78 margin: 4px 0px;
79 }
81 a.button, .pctbar {
82 text-decoration: none;
83 color: #666;
84 }
86 .button:hover {
87 border: 1px solid #999;
88 }
90 .pct { background: #9dff4a; padding: 2px 4px; }
91 .pctbar { overflow: hidden; }
93 .button, .pctbar {
94 border: 1px solid #cccccc;
95 font-size: 14px;
96 line-height: 1.2em;
97 background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
98 background-image: -moz-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
99 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
100 -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
101 box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
102 }
104 /* Round corner */
106 pre, .button, .pctbar {
107 -moz-border-radius: 4px;
108 -webkit-border-radius: 4px;
109 border-radius: 4px;
110 }
112 /* Footer */
114 #footer {
115 text-align: center;
116 padding: 20px;
117 border-top: 1px solid #ddd;
118 font-size: 90%;
119 }
121 #footer a { padding: 0 2px; }