slitaz-forge view cook/style.css @ rev 256

tank: rm wiki it will be on pangolin with hg doc
author Christophe Lincoln <pankso@slitaz.org>
date Mon Apr 09 20:30:57 2012 +0200 (2012-04-09)
parents 4d15955a787b
children
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 height: 40px;
21 background: #351a0a;
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 /* Logo */
44 #logo {
45 background: url(http://www.slitaz.org/images/logo.png) no-repeat left;
46 position: absolute;
47 float: left;
48 left: 0px;
49 top: 0px;
50 width: 40px;
51 height: 40px;
52 }
54 /* Header links */
56 #network {
57 float: right;
58 padding: 12px 5px 0;
59 font-size: 12px;
60 color: #fff;
61 }
63 #network a {
64 padding: 0 4px;
65 color: #fff;
66 font-weight: bold;
67 text-decoration: none;
68 }
70 #network a:hover { color: #cfcfcf; }
72 /* Content */
74 #content {
75 margin: 40px 80px;
76 text-align: justify;
77 }
79 .span-ok { color: green; }
80 .span-red { color: red; }
81 .span-sky { color: blue; }
82 .span-no { color: orange; }
83 .span-line { color: #888; }
84 .log-date { color: #666; font-size: 95%; }
85 .sh-comment { color: #b20000; }
86 .sh-val { color: #f35a00; }
88 /* Buttons */
90 .button {
91 padding: 2px 4px;
92 cursor: pointer;
93 color: #000;
94 }
96 a.button {
97 text-decoration: none;
98 color: #666;
99 }
101 .button:hover {
102 background-color: #ddd;
103 border: 1px solid #999;
104 }
106 /* Progress bar */
108 .pct { background: #9dff4a; padding: 2px 4px; }
110 .pctbar {
111 margin: 0;
112 color: #666;
113 background: #f1f1f1;
114 border: 1px solid #ddd;
115 overflow: hidden;
116 clear: both;
117 }
119 /* Round corner */
121 pre, .button, .pctbar {
122 -moz-border-radius: 4px;
123 -webkit-border-radius: 4px;
124 border-radius: 4px;
125 }
127 /* Footer */
129 #footer {
130 text-align: center;
131 padding: 20px;
132 border-top: 1px solid #ddd;
133 font-size: 90%;
134 }
136 #footer a { padding: 0 2px; }