slitaz-configs view rootfs/usr/share/webhome/style.css @ rev 255

Add Name[fr] in .desktop
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 12 17:57:45 2015 +0200 (2015-07-12)
parents 5dd3b8ef661a
children de3d474d8036
line source
1 /* CSS style for SliTaz GNU/Linux Web Home */
3 body {
4 background: #ffffff;
5 color: black;
6 font: 13px sans-serif, vernada, arial;
7 margin: 0;
8 min-width: 640px;
9 }
11 a { text-decoration: underline; color: #215090; }
12 a:hover { text-decoration: none; color: blue; }
13 img { border: 0pt none; vertical-align: middle; }
15 /* Header */
17 #header {
18 height: 40px;
19 background: #222;
20 border-bottom: 4px solid #afafaf;
21 }
23 #header h1 {
24 margin: 0;
25 padding: 8px 0 0 8px;
26 width: 350px;
27 color: white;
28 font-size: 20px;
29 font-style: italic;
30 }
32 /* SliTaz Network */
34 #network {
35 float: right;
36 padding: 14px 5px 0;
37 font-size: 12px;
38 }
40 #network a {
41 color: #fff;
42 font-weight: bold;
43 text-decoration: none;
44 padding: 0 4px;
45 }
47 #network a:hover { color: #afafaf; }
49 /* Content */
51 #content {
52 padding: 30px 20px;
53 text-align: justify;
54 }
56 .searchbox {
57 margin: 40px 80px;
58 padding: 12px;
59 background: #f8f8f8;
60 text-align: center;
61 border: 1px solid #ddd;
62 -moz-border-radius: 4px;
63 -webkit-border-radius: 4px;
64 border-radius: 4px;
65 }
67 #social { text-align: center; color: #666; }
68 #social a { color: #666; padding: 0 2px; }
70 /* Form */
72 input[type=submit] {
73 border: 1px solid #666;
74 background-color: #666;
75 color: white;
76 font-weight: bold;
77 cursor: pointer;
78 padding: 5px 10px;
79 font-size: 14px;
80 margin-left: -5px;
81 -webkit-border-top-right-radius: 4px;
82 -webkit-border-bottom-right-radius: 4px;
83 -moz-border-radius-topright: 4px;
84 -moz-border-radius-bottomright: 4px;
85 border-top-right-radius: 4px;
86 border-bottom-right-radius: 4px;
87 }
89 input[type=submit]:hover { background-color: #444; }
91 input[type=text] {
92 border: 1px solid #333333;
93 padding: 4px;
94 height: 17px;
95 width: 68%;
96 -webkit-border-top-left-radius: 4px;
97 -webkit-border-bottom-left-radius: 4px;
98 -moz-border-radius-topleft: 4px;
99 -moz-border-radius-bottomleft: 4px;
100 border-top-left-radius: 4px;
101 border-bottom-left-radius: 4px;
102 }