slitaz-arm view cgi-adm/data/style.css @ rev 219

dot command may not search current directory first
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jul 23 13:50:45 2017 +0200 (2017-07-23)
parents e785c2b0ea5a
children
line source
1 /* SliTaz RPi CSS */
3 html { height: 102%; }
4 body { margin: 0; font-size: 90%; }
5 h1 { color: #4d4d4d; }
6 h2 { color: #666; font-size: 140%; }
7 h1, h2 { border-bottom: 1px dashed #afafaf; padding: 0 0 5px 0; }
8 a:hover { text-decoration: none; }
9 li { list-style-type: square; color: #4d4d4d; }
10 pre, textarea {
11 font-size: 110%;
12 background: #ddd;
13 padding: 10px;
14 overflow: hidden;
15 }
16 textarea {
17 width: 100%; height: 320px;
18 border: 2px solid #ccc;
19 padding: 5px;
20 overflow: auto;
21 }
23 /* Header and navigation */
25 header {
26 background: #222; height: 40px; border-bottom: 4px solid #afafaf;
27 }
29 #nav { float: left; margin: 0; padding: 12px 0 0 45px; }
30 #nav a { font-size: 90%; color: #fff; text-decoration: none;
31 font-weight: bold; padding: 0 4px; }
32 #nav a:hover { color: #afafaf;}
34 /* Logo */
36 #logo {
37 background: url(logo.png) no-repeat left;
38 position: absolute; float: left;
39 left: 5px; top: 0px; width: 40px; height: 40px;
40 }
42 /* Content */
44 #content { margin: 4%; text-align: justify; }
45 #notify { padding: 10px; background-color: #ddd; border: 1px solid #00A500; }
46 #error { padding: 10px; background-color: #ddd; border: 1px solid red; }
47 .button { margin: 25px 0; } .button a { text-decoration: none; }
48 .center { text-align: center; }
50 input[type="submit"], select, .button a {
51 color: #444444;
52 border: 1px solid #afafaf;
53 padding: 6px;
54 margin: 4px 0px;
55 font-size: 14px;
56 line-height: 1.2em;
57 cursor: pointer;
58 background-image: -webkit-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
59 background-image: -moz-linear-gradient(#FAFAFA, #F4F4F4 40%, #E5E5E5);
60 -webkit-appearance: none;
61 -webkit-padding-end: 6px;
62 -webkit-padding-start: 6px;
63 }
64 input[type="submit"], {
65 -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
66 -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
67 box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
68 }
69 input[type="text"] {
70 border: 1px solid #afafaf;
71 padding: 4px;
72 min-width: 360px;
73 }
74 input[type="submit"]:hover, select:hover, .button a:hover {
75 background-color: #ddd;
76 border: 1px solid #999;
77 }
79 pre, input[type="submit"], input[type="text"], textarea, .button a,
80 #notify, #error, img {
81 border-radius: 4px;
82 }
84 /* Footer */
86 #footer {
87 text-align: center;
88 font-size: 84%;
89 border-top: 1px dotted #ddd;
90 padding: 40px;
91 }
92 #footer, #footer a { color: #888888; }