cookutils view web/style.css @ rev 625

cook: break debug_info dead loop
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Dec 28 15:37:46 2013 +0000 (2013-12-28)
parents 97ba19e05b56
children 4c71388c43e6
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 hr { margin: 0; border: 1px solid #cfcfcf; }
10 pre {
11 background-color: #f8f8f8;
12 border: 1px solid #ddd;
13 padding: 10px;
14 overflow: auto;
15 font-size: 96%;
16 }
18 /* Header */
20 #header {
21 color: white;
22 background: #351a0a;
23 height: 40px;
24 border-bottom: 8px solid #d66018;
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, #network a:hover {
41 color: #d66018;
42 }
44 /* Header links */
46 #network {
47 float: right;
48 padding: 12px 5px 0;
49 font-size: 12px;
50 }
52 #network a {
53 padding: 0 6px;
54 color: #fff;
55 font-weight: bold;
56 text-decoration: none;
57 }
59 /* Content */
61 #content {
62 margin: 40px 80px;
63 text-align: justify;
64 }
66 .span-ok { color: green; }
67 .span-red { color: red; }
68 .span-sky { color: blue; }
69 .span-no { color: orange; }
70 .span-line { color: #888; }
71 .log-date { color: #666; font-size: 95%; }
72 .sh-comment { color: #b20000; }
73 .sh-val { color: #f35a00; }
75 /* Buttons */
77 .button {
78 cursor: pointer;
79 padding: 4px;
80 margin: 4px 0px;
81 }
83 a.button, .pctbar {
84 text-decoration: none;
85 color: #666;
86 }
88 .button:hover {
89 border: 1px solid #999;
90 }
92 .pct { background: #9dff4a; padding: 2px 4px; }
93 .pctbar { overflow: hidden; }
95 .button, .pctbar {
96 border: 1px solid #cccccc;
97 font-size: 14px;
98 line-height: 1.2em;
99 background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
100 background-image: -moz-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
101 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
102 -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
103 box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
104 }
106 /* Round corner */
108 pre, .button, .pctbar {
109 -moz-border-radius: 4px;
110 -webkit-border-radius: 4px;
111 border-radius: 4px;
112 }
114 /* Footer */
116 #footer {
117 text-align: center;
118 padding: 20px;
119 border-top: 1px solid #ddd;
120 font-size: 90%;
121 }
123 #footer a { padding: 0 2px; }