cookutils view web/style.css @ rev 728

Move to using short i18n functions with "printf", so rewrite sources and po files. Fix: stripping before list files (python packages listed missed .pyc files). Also remove few hacks from code, make pot and msgmerge.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Thu May 07 15:11:47 2015 +0300 (2015-05-07)
parents 9298c9293ae0
children 166a91b87ac8
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: green; }
69 .span-red { color: red; }
70 .span-sky { color: blue; }
71 .span-no { color: orange; }
72 .span-line { color: #888; }
73 .log-date { color: #666; font-size: 95%; }
74 .sh-comment { color: #b20000; }
75 .sh-val { color: #f35a00; }
77 /* Buttons */
79 .button {
80 cursor: pointer;
81 padding: 4px;
82 margin: 4px 0px;
83 }
85 a.button, .pctbar {
86 text-decoration: none;
87 color: #666;
88 }
90 .button:hover {
91 border: 1px solid #999;
92 }
94 .pct { background: #9dff4a; padding: 2px 4px; }
95 .pctbar { overflow: hidden; }
97 .button, .pctbar {
98 border: 1px solid #cccccc;
99 font-size: 14px;
100 line-height: 1.2em;
101 background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
102 background-image: -moz-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
103 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
104 -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
105 box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
106 }
108 /* Round corner */
110 pre, .button, .pctbar {
111 -moz-border-radius: 4px;
112 -webkit-border-radius: 4px;
113 border-radius: 4px;
114 }
116 /* Footer */
118 #footer {
119 text-align: center;
120 padding: 20px;
121 border-top: 1px solid #ddd;
122 font-size: 90%;
123 }
125 #footer a { padding: 0 2px; }