3e09bc7dd639ccdb03b902c03f7477abc4381c30
[euphorik.git] / css / 1 / euphorik.css
1 /* coding: utf-8 */
2
3 @import url(pageMinichat.css);
4 @import url(pageAdmin.css);
5 @import url(pageProfileRegister.css);
6 @import url(pageAbout.css);
7
8 * {
9 padding: 0px;
10 margin: 0px;
11 }
12
13 body {
14 font-family: sans-serif;
15 font-size: 12px;
16 color: #841919;
17 background-color: #f6dfc2;
18 }
19
20 #container {
21 height: auto;
22 margin: 0px;
23 }
24
25 /***** Menu *****/
26 ul#menu {
27 background-image: url(../../img/css1/logo_fond.png);
28 height:129px;
29 width: 100%;
30 font-size: 11px;
31 list-style-type:none;
32 }
33 #menu li:first-child {
34 margin-left: 340px;
35 }
36 #menu li {
37 margin-top: 47px;
38 font-size: 14px;
39 text-align: center;
40 cursor: pointer;
41 height:30px;
42 z-index: 20;
43 float: left;
44 min-width: 60px;
45 background-color: #f6dfc2;
46 line-height: 32px;
47 }
48 #menu li.courante {
49 background-color: #ffffff;
50 background-image: url(../../img/css1/triangle.png);
51 background-repeat: no-repeat;
52 background-position: center bottom
53 }
54 #menu li:hover {
55 background-color: #ffffff;
56 }
57
58 /***** Le menu pour le choix de la CSS *****/
59 #menuCss {
60 position: absolute;
61 z-index: 10;
62 left: 550px;
63 top:0px;
64 font-size: 9px;
65 }
66
67 /***** Le style du contenu des pages *****/
68 #page {
69 font-size: 12px;
70 background-color: #f6dfc2;
71 padding: 10px 10px 15px 10px;
72 }
73 #page > h1 {
74 margin-top: 10px;
75 margin-left: 0px;
76 font-size: 18px;
77 }
78 #page > h2 {
79 margin-top: 10px;
80 margin-left: 10px;
81 font-size: 16px;
82 }
83 #page > h3 {
84 margin-top: 10px;
85 margin-left: 20px;
86 font-size: 14px;
87 background-color : #FFFFFF
88 }
89 #page > h4 {
90 margin-top: 10px;
91 margin-left: 25px;
92 font-size: 12px;
93 }
94 #page > p {
95 margin-top: 3px;
96 margin-left: 35px;
97 }
98 #page > ul {
99 margin-top: 3px;
100 margin-left: 45px;
101 }
102 #logo {
103 z-index: 10;
104 background-image: url(../../img/css1/logo.png);
105 background-repeat: no-repeat;
106 width: 304px;
107 height: 129px;
108 position: absolute;
109 }
110
111 /***** Le pied de page *****/
112 #footer {
113 background-color: #e19671;
114 text-align: right;
115 font-size: 9px
116 }
117 #footer a img{
118 border-style: none;
119 vertical-align: middle;
120 margin-right: 5px;
121 }
122 #footer span{
123 margin-right: 10px;
124 }
125
126 /***** La boite d'information (s'apparente à une MessageBox) *****/
127 div#info {
128 text-align: center;
129 width:100%;
130 position: fixed;
131 left: 0px;
132 top: 0px;
133 background-color: #841919;
134 border-bottom: 1px solid #FFFFFF;
135 z-index: 20;
136 color: #f0df95
137 }
138 div#info div.fermer {
139 float:right;
140 cursor: pointer;
141 height:16px;
142 width: 16px;
143 background-image: url(../../img/fermer.gif)
144 }
145 div#info #icone {
146 float:left;
147 height:16px;
148 width: 16px;
149 }
150 div#info #icone.interrogation {
151 background-image: url(../../img/interrogation.gif)
152 }
153 div#info #icone.information {
154 background-image: url(../../img/information.gif)
155 }
156 div#info #icone.exclamation {
157 background-image: url(../../img/exclamation.gif)
158 }
159 div#info .boutons {
160 padding: 1px;
161 }
162 div#info .boutons div {
163 cursor: pointer;
164 background-color: #c62929;
165 display: inline;
166 padding: 0px 5px 0px 5px;
167 margin: 0px 5px 0px 5px;
168 }
169 div#info .boutons div:hover {
170 background-color: #e84747;
171 }
172
173 /***** Les infos bulles *****/
174 #flecheBulle {
175 position: absolute;
176 z-index: 50;
177 width: 15px;
178 height: 8px;
179 background-image: url(../../img/css1/fleche_bulle.png);
180 display: none
181 }
182 #messageBulle {
183 position: absolute;
184 z-index: 50;
185 color: #ffffff;
186 background-color: #841919;
187 display: none;
188 font-size: 10px;
189 }
190 #messageBulle p {
191 padding: 3px 6px;
192 }
193
194 /***** Le faux captcha *****/
195 .captcha {
196 display:none;
197 }
198
199 /***** Les formulaires *****/
200 form input,
201 form button,
202 form select {
203 background-color: #f0df95;
204 border: #841919 1px solid;
205 }
206 form input:hover, form input:focus,
207 form button:hover, form button:focus,
208 form select:hover, form select:focus {
209 background-color: #ffffff;
210 }
211 form input,
212 form select {
213 font-size: 12px;
214 }
215 form button {
216 font-size: 11px;
217 }
218
219 /***** Les liens *****/
220 .lien, a {
221 text-decoration: underline;
222 color: #c62929;
223 }
224 .lien {
225 cursor: pointer
226 }
227 a:link, a:visited {
228 color: #c62929;
229 }
230 .lien:hover, .lien:active, a:hover, a:active {
231 color: #e84747;
232 }