[CSS]
[lhc/web/clavettes.git] / css / habillage.scss
1 @charset "UTF-8";
2 html, body, div, span, applet, object, iframe,
3 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
4 a, abbr, acronym, address, big, cite, code,
5 del, dfn, em, img, ins, kbd, q, s, samp,
6 small, strike, strong, sub, sup, tt, var,
7 b, u, i, center,
8 dl, dt, dd, ol, ul, li,
9 fieldset, form, label, legend,
10 table, caption, tbody, tfoot, thead, tr, th, td,
11 article, aside, canvas, details, embed,
12 figure, figcaption, footer, header, hgroup,
13 menu, nav, output, ruby, section, summary,
14 time, mark, audio, video {
15 margin: 0;
16 padding: 0;
17 border: 0;
18 font: inherit;
19 font-size: 100%;
20 vertical-align: baseline;
21 font-family: sans-serif;
22 color:#1a0583;
23 text-align: left;
24 }
25
26 html, body, span, applet, object, iframe,
27 blockquote, pre, section,
28 abbr, acronym, address, big, cite, code,
29 del, dfn, em, ins, kbd, q, s, samp,
30 small, strike, strong, sub, sup, tt, var,
31 dl, dt, dd, ol, ul, li,
32 fieldset, form, label, legend,
33 table, caption, tbody, tfoot, thead, tr, th, td,
34 article, aside, canvas, details, embed,
35 figure, figcaption,hgroup,
36 menu, nav, output, ruby, summary, mark, audio, video {
37 background-color: #ffffff;
38 background: none;
39 }
40
41 html {
42 line-height: 1;
43 }
44
45 ol, ul {
46 list-style: none;
47 }
48
49 table {
50 border-collapse: collapse;
51 border-spacing: 0;
52 }
53
54 caption, th, td {
55 text-align: left;
56 font-weight: normal;
57 vertical-align: middle;
58 }
59
60 q, blockquote {
61 quotes: none;
62 }
63 q:before, q:after, blockquote:before, blockquote:after {
64 content: "";
65 content: none;
66 }
67
68 a img {
69 border: none;
70 }
71
72 article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
73 display: block;
74 }
75
76 *{
77 -moz-box-sizing: border-box;
78 -webkit-box-sizing: border-box;
79 box-sizing:border-box;
80 }
81
82 body{
83 margin:0;
84 padding:0;
85 }
86
87 header{
88 margin:0 auto;
89 width:1200px;
90
91 }
92
93 header .spip_logos{
94 margin-left: 10px;
95 position:absolute;
96 }
97
98
99 #wrap{
100 padding-top:130px;
101 width:1200px;
102 margin:0 auto;
103 }
104 a{
105 text-decoration:none;
106 }
107
108 a:focus, a:hover, a:active{
109 background:none;
110 color:#1a0583;
111 }
112
113 h1{
114 margin: 0;
115 padding:0;
116 padding-top:15px;
117 padding-left:15px;
118 font-size:1.9em;
119 display:inline-block;
120 font-weight: bold;
121 }
122
123 h2{
124 margin: 15px 15px;
125 font-size:1.3em;
126 display:inline-block;
127 }
128
129 h3{
130 margin:15px;
131 display:inline-block;
132 }
133
134 p{
135 margin:0 15px;
136 padding-bottom:15px;
137 text-decoration:none;
138 text-align: justify;
139 }
140
141 /*1ERE COLONNE*/
142
143
144 #ateliers{
145 margin:0 10px;
146 }
147
148 #ateliers:after {
149 content: ""; /* Important, sinon l'élément n'est pas généré. */
150 display: table;
151 clear: both;
152 }
153
154 #ateliers ul{
155 padding:0;
156 margin:0;
157 list-style-type:none;
158 }
159
160 #ateliers ul li{
161
162 margin-bottom:15px;
163 }
164
165 #ateliers p{
166 margin: 15px 15px 0 0;
167 font-size:1.3em;
168 font-weight: bold;
169 text-align: left;
170 }
171
172 #ateliers p:nth-child(2){
173 margin:0px 15px 15px 15px;
174 }
175
176
177 /*2EME COLONNE*/
178
179
180 #news{
181 overflow: hidden;
182 }
183
184 #news img{
185 height:350px;
186 }
187
188 .article{
189 background-color:#ffaa7f;
190 margin:0 10px 15px 10px;
191 }
192
193
194
195
196 /*3EME COLONNE*/
197
198
199
200 .map{
201 background-color:#6059d2;
202 height: 300px;
203 margin:0 0 15px 10px;
204 }
205
206 .agenda{
207 background-color: #3ee88d;
208 height:500px;
209 margin:0 0 0px 10px;
210 padding-right: 10px;
211 }
212
213 .agenda p{
214 line-height: 120%;
215 }
216
217 .agenda ul{
218 list-style-type:none;
219 padding:0;
220 margin:0;
221 padding-top:15px;
222 }
223
224 .date{
225 float:left;
226 font-size: 1.7em;
227
228 }
229
230 /*RESPONSIVE*/
231
232 .col-2,
233 .col-4,
234 .col-6,
235 .col-8,
236 .col-10,
237 .col-12{
238 float:left;
239 position:relative;
240
241
242 }
243
244 .row:before, .row:after{
245 content: "";
246 display:table;
247 }
248
249 .row:after{
250 clear:both;
251 }
252
253
254 .row{
255 margin: 0 -10px;
256 zoom: 1;
257 }
258
259
260
261 .col-1{
262 width:8.33333%;
263 }
264
265 .col-2{
266 width:16.66667%;
267 }
268
269 .col-3{
270 width:25%;
271 }
272
273
274 .col-4{
275 width:33.33333%;
276 }
277
278 .col-5{
279 width:41.66667%;
280 }
281
282 .col-6{
283 width:50%;
284 }
285
286 .col-7{
287 width:58.33333%;
288 }
289
290 .col-8{
291 width:66.66666%;
292 }
293
294 .col-9{
295 width:75%;
296 }
297
298 .col-10{
299 width:83.33333%;
300 }
301
302 .col-11{
303 width:91.66667%;
304 }
305
306 .col-12{
307 width:100%;
308 }
309
310
311
312
313 @media only screen and (min-width:640px) {
314
315 .col-m-1{
316 width:8.33333%;
317 }
318
319 .col-m-2{
320 width:16.66667%;
321 }
322
323 .col-m-3{
324 width:25%;
325 }
326
327
328 .col-m-4{
329 width:33.33333%;
330 }
331
332 .col-m-5{
333 width:41.66667%;
334 }
335
336 .col-m-6{
337 width:50%;
338 }
339
340 .col-m-7{
341 width:58.33333%;
342 }
343
344 .col-m-8{
345 width:66.66666%;
346 }
347
348 .col-m-9{
349 width:75%;
350 }
351
352 .col-m-10{
353 width:83.33333%;
354 }
355
356 .col-m-11{
357 width:91.66667%;
358 }
359
360 .col-m-12{
361 width:100%;
362 }
363
364 }
365
366
367
368
369
370
371 @media only screen and (min-width:1024px) {
372
373 .wrap{
374 width: auto;
375 }
376
377 .col-l-1{
378 width:8.33333%;
379 }
380
381 .col-l-2{
382 width:16.66667%;
383 }
384
385 .col-l-3{
386 width:25%;
387 }
388
389
390 .col-l-4{
391 width:33.33333%;
392 }
393
394 .col-l-5{
395 width:41.66667%;
396 }
397
398 .col-l-6{
399 width:50%;
400 }
401
402 .col-l-7{
403 width:58.33333%;
404 }
405
406 .col-l-8{
407 width:66.66666%;
408 }
409
410 .col-l-9{
411 width:75%;
412 }
413
414 .col-l-10{
415 width:83.33333%;
416 }
417
418 .col-l-11{
419 width:91.66667%;
420 }
421
422 .col-l-12{
423 width:100%;
424 }
425 }
426
427 /*FOOTER*/
428
429 footer{
430 clear:both;
431 height:200px;
432 width:100%;
433 background-color: #ffaa7f;
434
435 }
436
437 footer ul {
438 padding:0;
439 margin:0;
440 list-style-type:none;
441 padding-top:70px;
442 margin-left:100px;
443
444 }
445 footer li {
446 margin-left:2px;
447 float:left; /*pour IE*/
448 }
449 footer ul li a {
450 display:block;
451 float:left;
452 text-decoration:none;
453 }
454 footer ul li a:hover {
455 border-bottom: solid #1d0b78;
456 }
457