[CSS+SKEL] + indicateur source article3
[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:#0c0fb7;
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.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:15px auto 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:100%;
102 margin:0 auto;
103 }
104 a{
105 color:#05ffbc;
106 text-decoration:none;
107 -webkit-transition: all 0.3s ease 0s;
108 -moz-transition: all 0.3s ease 0s;
109 -ms-transition: all 0.3s ease 0s;
110 -o-transition: all 0.3s ease 0s;
111 transition: all 0.3s ease 0s;
112 }
113
114 a:focus, a:hover, a:active{
115 background:none;
116 color:#0c0fb7;
117 -webkit-transition: all 0.3s ease 0s;
118 -moz-transition: all 0.3s ease 0s;
119 -ms-transition: all 0.3s ease 0s;
120 -o-transition: all 0.3s ease 0s;
121 transition: all 0.3s ease 0s;
122 }
123 a:hover > i {
124 color : #0c0fb7 !important;
125 -webkit-transition: all 0.3s ease 0s;
126 -moz-transition: all 0.3s ease 0s;
127 -ms-transition: all 0.3s ease 0s;
128 -o-transition: all 0.3s ease 0s;
129 transition: all 0.3s ease 0s;
130 }
131 h1{
132 margin: 0;
133 padding:0;
134 margin-top:15px;
135 margin-left:15px;
136 font-size:1.9em;
137 display:inline-block;
138 font-weight: bold;
139 }
140
141 h1:hover{
142 text-decoration: underline;
143 }
144
145 h2{
146 margin: 15px 15px;
147 font-size:1.3em;
148 display:inline-block;
149 }
150
151 h3{
152 margin:15px;
153 display:inline-block;
154 }
155
156 p{
157 margin:0 15px;
158 padding-bottom:15px;
159 text-decoration:none;
160 text-align: justify;
161 }
162
163 /*1ERE COLONNE*/
164
165 .titre{
166 background-color: #05ffbc;
167 height: 47px;
168 width: 100%;
169 color:#fff;
170 margin:0 0 15px 0;
171 padding:10px 15px;
172 text-transform: uppercase;
173 font-family: "Trebuchet MS", Helvetica, arial, sans-serif;
174 font-size: 1.7em;
175 -webkit-transition: all 0.3s ease 0s;
176 -moz-transition: all 0.3s ease 0s;
177 -ms-transition: all 0.3s ease 0s;
178 -o-transition: all 0.3s ease 0s;
179 transition: all 0.3s ease 0s;
180 }
181 .titre:hover{
182 background-color: #0c0fb7;
183 -webkit-transition: all 0.3s ease 0s;
184 -moz-transition: all 0.3s ease 0s;
185 -ms-transition: all 0.3s ease 0s;
186 -o-transition: all 0.3s ease 0s;
187 transition: all 0.3s ease 0s;
188 }
189 #ateliers{
190 margin:0 10px;
191 }
192
193 #ateliers:after {
194 content: ""; /* Important, sinon l'élément n'est pas généré. */
195 display: table;
196 clear: both;
197 }
198
199 #ateliers ul{
200 padding:0;
201 margin:0;
202 list-style-type:none;
203 }
204
205 #ateliers ul li{
206 margin-bottom:15px;
207 }
208 .descriptif{
209 margin-left:15px;
210 }
211
212 #ateliers p{
213 margin: 15px 15px 0 0;
214 font-size:1.0em;
215 text-align: left;
216 }
217 #ateliers address{
218 margin:0 0 0 15px;
219 line-height: 0.6;
220 }
221 .horairesouvertures{
222 margin:0 0 0 15px;
223 }
224 .logoatelier{
225 margin:auto;
226 width: 300px;
227 }
228 #ateliers nav{
229 padding-top:15px;
230 clear:both;
231 }
232 #ateliers .fa{
233 color:#05ffbc;
234 -webkit-transition: all 0.3s ease 0s;
235 -moz-transition: all 0.3s ease 0s;
236 -ms-transition: all 0.3s ease 0s;
237 -o-transition: all 0.3s ease 0s;
238 transition: all 0.3s ease 0s;
239 }
240 #ateliers .fa:hover{
241 color:#0c0fb7;
242 }
243
244 /*2EME COLONNE*/
245
246
247 #news{
248 overflow: hidden;
249 margin:0 10px;
250 }
251 .article{
252 background-color:#e8e3e1;
253 margin:0 0 15px 0;
254 line-height: 1.3;
255 }
256 .spip_logo{
257 display:none;
258 }
259 .article .spip_logos{
260 display: none;
261 }
262 .article .fa{
263 width: 20px;
264 height: 20px;
265 -moz-border-radius: 10px;
266 -webkit-border-radius: 10px;
267 border-radius: 10px;
268 }
269 .article .fa a{
270 display: none;
271 }
272 .article img{
273 width:100%;
274 }
275 address{
276 padding-bottom: 10px;
277 }
278 address p{
279 margin:0;
280 padding:0;
281 }
282 .historique{
283 background-color: #ffd2a1;
284 margin:0 15px 15px 15px;
285 }
286 .historique h1{
287 width:100%;
288 }
289 #atelierdescription{
290 margin:0 10px;
291 }
292 #atelierdescription #news{
293 margin:0;
294 }
295 #atelierdescription img{
296 width: 100%;
297 }
298
299
300 /*3EME COLONNE*/
301
302
303
304 .map{
305 height: 300px;
306 margin:0 10px 15px 10px;
307 overflow: hidden;
308 }
309
310 .agenda{
311 background-color: #05ffbc;
312 height:500px;
313 margin:0 10px 15px 10px;
314 padding-right: 10px;
315 overflow-y: scroll;
316 }
317
318 .agenda p{
319 padding: 0;
320 }
321
322 .agenda ul{
323 list-style-type:none;
324 padding:0;
325 margin:0;
326 padding-top:15px;
327 }
328 .date{
329 float:left;
330 font-size: 1.7em;
331 clear: both;
332 }
333
334 .event{
335 display: block;
336 margin-bottom: 10px;
337 padding-top: 5px;
338 }
339 .horaire{
340 font-size: 0.8em;
341 margin-bottom: 20px;
342 display: block;
343 }
344 .nature{
345 overflow-y: scroll;
346 height: 70px;
347
348 }
349
350
351 /*RESPONSIVE*/
352
353
354 $columns: 12!default;
355 $medium:650px;
356 $large:1200px;
357
358 %col{
359 float:left;
360 position: relative;
361 }
362
363 @for $i from 1 through $columns{
364 .col-#{$i}{
365 @extend %col;
366 width:$i / $columns * 100%;}
367 .col-m-#{$i}, .col-l-#{$i}{@extend %col;}
368 }
369
370 @media only screen and (min-width: $medium){
371 @for $i from 1 through $columns{
372 .col-m-#{$i}{
373 width:$i / $columns * 100%;}
374 }
375
376 }
377 @media only screen and (min-width: $large){
378 @for $i from 1 through $columns{
379 .col-l-#{$i}{
380 width:$i / $columns * 100%;}
381 }
382 #wrap{
383 width:1200px;
384 }
385
386 .wrap{
387 width: auto;
388 }
389 }
390
391
392
393 .row:before, .row:after{
394 content: "";
395 display:table;
396 }
397
398 .row:after{
399 clear:both;
400 }
401
402
403 .row{
404 margin: 0 -10px;
405 zoom: 1;
406 }
407
408
409 /*FOOTER*/
410
411 footer{
412 clear:both;
413 height:100px;
414 background-color: #05ffbc;
415 }
416
417 footer ul {
418 padding:0;
419 margin:0 auto;
420 list-style-type:none;
421 padding-top:30px;
422 }
423 .textfooter{
424 width:500px;
425 margin:0 auto;
426 }
427 footer li {
428 float:left; /*pour IE*/
429 text-align: center;
430 }
431 footer ul li a {
432 display:block;
433 float:left;
434 text-decoration:none;
435 color: #120260;
436 }
437 footer ul li a:hover {
438 border-bottom: solid #1d0b78;
439 }
440