cookutils view web/style.css @ rev 1146

cook: allow built in aufs
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jul 28 07:28:04 2020 +0000 (2020-07-28)
parents 2ff4c8d701d3
children
line source
1 /* CSS style for SliTaz Cooker */
3 html { min-height: 102%; }
4 body { font: 13px sans-serif, vernada, arial; margin: 0; }
5 h1 { margin: 0; padding: 8px; color: #fff; font-size: 20px; }
6 h1 a { color: #fff; text-decoration: none; }
7 h2 { color: #444; }
8 h3 { color: #666; font-size: 140%; }
9 a { text-decoration: underline; color: #215090; }
10 a:hover { text-decoration: none; }
11 hr { margin: 0; border: 1px solid #cfcfcf; }
12 pre {
13 background-color: #f8f8f8;
14 border: 1px solid #ddd;
15 padding: 10px;
16 overflow: auto;
17 font-size: 96%;
18 }
20 /* Header */
22 #header {
23 color: #fff;
24 background: #222;
25 height: 40px;
26 border-bottom: 4px solid #afafaf;
27 }
29 #header h1 {
30 margin: 0;
31 /* padding: 8px 0 0 42px; */
32 width: 250px;
33 }
35 #header h1 a {
36 color: #fff;
37 text-decoration: none;
38 font-size: 20px;
39 font-style: italic;
40 }
42 #header h1 a:hover, #network a:hover {
43 color: #afafaf;
44 }
46 /* Header links */
48 #network {
49 float: right;
50 padding: 14px 5px 0;
51 font-size: 12px;
52 }
54 #network a {
55 padding: 0 4px;
56 color: #fff;
57 font-weight: bold;
58 text-decoration: none;
59 }
61 /* Content */
63 #content {
64 margin: 40px 80px;
65 text-align: justify;
66 }
68 .span-ok { color: #0a0; }
69 .span-red { color: red; }
70 .span-sky { color: blue; }
71 .span-no { color: #d90; }
72 .span-line { color: #888; }
73 .log-date { color: #666; font-size: 95%; }
74 .sh-comment { color: #a00; }
75 .sh-val { color: #e50; font-weight: bold; }
76 .var { color: #05a; }
78 /* Buttons */
80 .button {
81 cursor: pointer;
82 padding: 4px;
83 margin: 4px 0px;
84 }
86 a.button, .pctbar {
87 text-decoration: none;
88 color: #666;
89 }
91 .button:hover {
92 border: 1px solid #999;
93 }
95 .pct { background: #9dff4a; padding: 2px 4px; }
96 .pctbar { overflow: hidden; }
98 .button, .pctbar {
99 border: 1px solid #cccccc;
100 font-size: 14px;
101 line-height: 1.2em;
102 background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
103 background-image: -moz-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
104 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
105 -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
106 box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
107 }
109 /* Round corner */
111 pre, .button, .pctbar {
112 -moz-border-radius: 4px;
113 -webkit-border-radius: 4px;
114 border-radius: 4px;
115 }
117 /* Footer */
119 #footer {
120 text-align: center;
121 padding: 20px;
122 border-top: 1px solid #ddd;
123 font-size: 90%;
124 }
126 #footer a { padding: 0 2px; }