[CSS] + boucles responsive
[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.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:100%;
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.0em;
168 text-align: left;
169 }
170
171 #ateliers p:nth-child(2){
172 margin:0px 15px 15px 15px;
173 }
174
175
176 /*2EME COLONNE*/
177
178
179 #news{
180 overflow: hidden;
181 }
182
183 #news img{
184 height:350px;
185 }
186
187 .article{
188 background-color:#ffaa7f;
189 margin:0 10px 15px 10px;
190 }
191
192
193
194
195 /*3EME COLONNE*/
196
197
198
199 .map{
200 background-color:#6059d2;
201 height: 300px;
202 margin:0 10px 15px 10px;
203 }
204 .leaflet-control-attribution leaflet-control{
205 z-index: 999;
206 }
207
208 .agenda{
209 background-color: #3ee88d;
210 height:500px;
211 margin:0 10px 0px 10px;
212 padding-right: 10px;
213 }
214
215 .agenda p{
216 line-height: 120%;
217 }
218
219 .agenda ul{
220 list-style-type:none;
221 padding:0;
222 margin:0;
223 padding-top:15px;
224 }
225
226 .date{
227 float:left;
228 font-size: 1.7em;
229 clear: both;
230 }
231 .horaire{
232 font-size: 0.8em;
233 }
234
235 /*RESPONSIVE*/
236
237
238 $columns: 12!default;
239 $medium:650px;
240 $large:1200px;
241
242 %col{
243 float:left;
244 position: relative;
245 }
246
247 @for $i from 1 through $columns{
248 .col-#{$i}{
249 @extend %col;
250 width:$i / $columns * 100%;}
251 .col-m-#{$i}, .col-l-#{$i}{@extend %col;}
252 }
253
254 @media only screen and (min-width: $medium){
255 @for $i from 1 through $columns{
256 .col-m-#{$i}{
257 width:$i / $columns * 100%;}
258 }
259
260 }
261 @media only screen and (min-width: $large){
262 @for $i from 1 through $columns{
263 .col-l-#{$i}{
264 width:$i / $columns * 100%;}
265 }
266 #wrap{
267 width:1200px;
268 }
269
270 .wrap{
271 width: auto;
272 }
273 }
274
275
276
277 .row:before, .row:after{
278 content: "";
279 display:table;
280 }
281
282 .row:after{
283 clear:both;
284 }
285
286
287 .row{
288 margin: 0 -10px;
289 zoom: 1;
290 }
291
292
293 /*FOOTER*/
294
295 footer{
296 clear:both;
297 height:200px;
298 background-color: #ffaa7f;
299 }
300
301 footer ul {
302 padding:0;
303 margin:0 auto;
304 list-style-type:none;
305 padding-top:70px;
306 }
307 .textfooter{
308 width:500px;
309 margin:0 auto;
310 }
311 footer li {
312 float:left; /*pour IE*/
313 text-align: center;
314 }
315 footer ul li a {
316 display:block;
317 float:left;
318 text-decoration:none;
319 }
320 footer ul li a:hover {
321 border-bottom: solid #1d0b78;
322 }
323