1 | /* |
---|
2 | loader.css |
---|
3 | Simple CSS rules for NetInstall |
---|
4 | |
---|
5 | (c) 2008 - Olivier Meunier & contributors - All rights reserved. |
---|
6 | Please see http://dotclear.net/ for more details. |
---|
7 | */ |
---|
8 | body.install { |
---|
9 | font: 0.8em "DejaVu Sans","Lucida Grande","Lucida Sans Unicode",Arial,sans-serif; |
---|
10 | color: #000; |
---|
11 | background-color: #fff; |
---|
12 | } |
---|
13 | body.install #content { |
---|
14 | width:500px; |
---|
15 | margin:1em auto; |
---|
16 | } |
---|
17 | body.install #main { |
---|
18 | padding:1em 2em; |
---|
19 | border:1px #ccc solid; |
---|
20 | -moz-border-radius:8px; |
---|
21 | -webkit-border-radius:8px; |
---|
22 | } |
---|
23 | body.install h1,h2 { |
---|
24 | font-family: Helvetica,arial,sans-serif; |
---|
25 | } |
---|
26 | body.install h1 { |
---|
27 | background: url(install/w-logo.png) no-repeat top center; |
---|
28 | font-size:1.8em; |
---|
29 | font-weight:normal; |
---|
30 | text-align:center; |
---|
31 | color: #666; |
---|
32 | padding-top: 70px; |
---|
33 | margin: 0 0 0.75em 0; |
---|
34 | } |
---|
35 | body.install h2 { |
---|
36 | color: #C71585; |
---|
37 | } |
---|
38 | body.install h3 { |
---|
39 | margin-top:0; |
---|
40 | } |
---|
41 | body.install label { |
---|
42 | font-weight: bold; |
---|
43 | color: #555; |
---|
44 | } |
---|
45 | |
---|
46 | body.install .msg { |
---|
47 | padding:10px 10px 10px 42px; |
---|
48 | -moz-border-radius:8px; |
---|
49 | -webkit-border-radius:8px; |
---|
50 | } |
---|
51 | body.install .warning { |
---|
52 | background: #ffc url(install/important.png) no-repeat 10px 10px; |
---|
53 | } |
---|
54 | body.install .notice { |
---|
55 | background: #eef url(install/note.png) no-repeat 10px 10px; |
---|
56 | } |
---|
57 | |
---|
58 | div.error, p.error, div.message, p.message, div.static-msg, p.static-msg { |
---|
59 | padding: 0.5em 0.5em 0.5em 40px; |
---|
60 | margin-bottom: 1em; |
---|
61 | -moz-border-radius: 8px; |
---|
62 | -webkit-border-radius: 8px; |
---|
63 | } |
---|
64 | p.error, p.message, p.static-msg { |
---|
65 | padding-top: 1em; |
---|
66 | padding-bottom: 1em; |
---|
67 | } |
---|
68 | div.error, p.error { |
---|
69 | background: #e5bfbf url(msg-error.png) no-repeat 5px 5px; |
---|
70 | color: #600; |
---|
71 | } |
---|
72 | div.message, p.message, div.static-msg, p.static-msg { |
---|
73 | background: #666 url(msg-std.png) no-repeat 5px 5px; |
---|
74 | color: #fff; |
---|
75 | } |
---|
76 | div.message a, p.message a, div.static-msg a, p.static-msg a { |
---|
77 | color: #fff; |
---|
78 | } |
---|
79 | label { |
---|
80 | display : block; |
---|
81 | } |
---|
82 | label input, label select, label span { |
---|
83 | display : block; |
---|
84 | } |
---|
85 | |
---|
86 | label.required { |
---|
87 | font-weight : bold; |
---|
88 | } |
---|
89 | label.required:before { |
---|
90 | content : '* '; |
---|
91 | color : #c00; |
---|
92 | } |
---|
93 | |
---|
94 | form { |
---|
95 | display : block; |
---|
96 | margin : 0; |
---|
97 | padding : 0; |
---|
98 | } |
---|
99 | |
---|
100 | fieldset { |
---|
101 | display : block; |
---|
102 | margin : 0 0 1em 0; |
---|
103 | padding : 1em 0.5em; |
---|
104 | border-width : 1px 0; |
---|
105 | border-style: solid; |
---|
106 | border-color: #ccc; |
---|
107 | background: #f5f5f5; |
---|
108 | } |
---|
109 | legend { |
---|
110 | font-weight : bold; |
---|
111 | padding: 0.2em 0.6em; |
---|
112 | border-width: 1px; |
---|
113 | border-style: solid; |
---|
114 | border-color: #ccc; |
---|
115 | background: #f5f5f5; |
---|
116 | margin-bottom: 0.5em; |
---|
117 | } |
---|
118 | a#obfus { |
---|
119 | color: #fff; |
---|
120 | background-color: #666; |
---|
121 | padding: 0 10px; |
---|
122 | -moz-border-radius: 2px; |
---|
123 | -webkit-border-radius: 2px; |
---|
124 | } |
---|