Subversion Repositories eFlore/Applications.cel

Rev

Rev 2360 | Rev 2366 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2360 jpm 1
@CHARSET "UTF-8";
2
/*
3
Code couleurs :
4
Police : ?
5
Gris :
6
	foncé : #2B2E34
7
	clair : #D7DBC5
8
Vert :
9
	foncé : #C4D24C / #898F5E (couverture)
10
	median : #CAD65E / #C0CE40 (titre)
11
	clair : #D9E28C / #E4E9AD / #F4F7DF
12
Marron
13
	fonçé : #999E6C
14
	clair texturé : #CDBEA2
15
 
16
*/
17
/*+--------------------------------------------------------------------------------------------------------+*/
18
/* Polices d'écriture*/
19
/* FONT : Balthazar */
20
@font-face {
21
	font-family: 'Balthazar';
22
	font-style: normal;
23
	font-weight: 400;
24
	src:
25
		local('Balthazar Regular'),
26
		local('Balthazar-Regular'),
27
		url('http://resources.tela-botanica.org/fonts/balthazar/regular.woff') format('woff');
28
}
29
/* FONT : Ubuntu */
30
@font-face {
31
	font-family: 'Ubuntu';
32
	font-style: normal;
33
	font-weight: 400;
34
	src:
35
		local('Ubuntu'),
36
		url(http://resources.tela-botanica.org/fonts/ubuntu/regular.woff) format('woff'),
37
		url(http://resources.tela-botanica.org/fonts/ubuntu/regular.ttf) format('ttf');
38
}
39
@font-face {
40
	font-family: 'Ubuntu';
41
	font-style: normal;
42
	font-weight: 700;
43
	src:
44
		local('Ubuntu Bold'),
45
		local('Ubuntu-Bold'),
46
		url(http://resources.tela-botanica.org/fonts/ubuntu/bold.woff) format('woff'),
47
		url(http://resources.tela-botanica.org/fonts/ubuntu/bold.ttf) format('ttf');
48
}
49
@font-face {
50
	font-family: 'Ubuntu';
51
	font-style: italic;
52
	font-weight: 400;
53
	src:
54
		local('Ubuntu Italic'),
55
		local('Ubuntu-Italic'),
56
		url(http://resources.tela-botanica.org/fonts/ubuntu/italic.woff) format('woff'),
57
		url(http://resources.tela-botanica.org/fonts/ubuntu/italic.ttf) format('ttf');
58
}
59
@font-face {
60
	font-family: 'Ubuntu';
61
	font-style: italic;
62
	font-weight: 700;
63
	src:
64
		local('Ubuntu Bold Italic'),
65
		local('Ubuntu-BoldItalic'),
66
		url(http://resources.tela-botanica.org/fonts/ubuntu/bold_italic.woff) format('woff'),
67
		url(http://resources.tela-botanica.org/fonts/ubuntu/bold_italic.ttf) format('ttf');
68
}
69
/* FONT : Muli */
70
@font-face {
71
	font-family: 'Muli';
72
	font-style: normal;
73
	font-weight: 300;
74
	src:
75
		local('Muli Light'),
76
		local('Muli-Light'),
77
		url(http://resources.tela-botanica.org/fonts/muli/regular.woff) format('woff'),
78
		url(http://resources.tela-botanica.org/fonts/muli/regular.ttf) format('ttf');
79
}
80
@font-face {
81
	font-family: 'Muli';
82
	font-style: normal;
83
	font-weight: 400;
84
	src:
85
		local('Muli'),
86
		url(http://resources.tela-botanica.org/fonts/muli/bold.woff) format('woff');
87
}
88
@font-face {
89
	font-family: 'Muli';
90
	font-style: italic;
91
	font-weight: 300;
92
	src:
93
		local('Muli Light Italic'),
94
		local('Muli-LightItalic'),
95
		url(http://resources.tela-botanica.org/fonts/muli/italic.woff) format('woff'),
96
		url(http://resources.tela-botanica.org/fonts/muli/italic.ttf) format('ttf');
97
}
98
@font-face {
99
	font-family: 'Muli';
100
	font-style: italic;
101
	font-weight: 400;
102
	src:
103
		local('Muli Italic'),
104
		local('Muli-Italic'),
105
		url(http://resources.tela-botanica.org/fonts/muli/bold_italic.woff) format('woff'),
106
		url(http://resources.tela-botanica.org/fonts/muli/bold_italic.ttf) format('ttf');
107
}
108
 
109
/*+--------------------------------------------------------------------------------------------------------+*/
110
/* Balises */
111
body {
2365 jpm 112
	background-color: #d9e28c;
113
	background: url('../img/background/insectes.png') no-repeat 2em 2em,
114
		url('../img/background/tetard_faune.png') no-repeat right bottom,
115
		url('../img/background/faune.png') no-repeat 2em bottom,
116
		-moz-radial-gradient(center, ellipse cover, #d9e28c 8%, #999e6c 85%);
117
	background: url('../img/background/insectes.png') no-repeat 2em 2em,
118
		url('../img/background/tetard_faune.png') no-repeat right bottom,
119
		url('../img/background/faune.png') no-repeat 2em bottom,
120
		 -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(27%,#d9e28c), color-stop(85%,#999e6c));
121
	background: url('../img/background/insectes.png') no-repeat 2em 2em,
122
		url('../img/background/tetard_faune.png') no-repeat right bottom,
123
		url('../img/background/faune.png') no-repeat 2em bottom,
124
		 -webkit-radial-gradient(center, ellipse cover,  #d9e28c 27%,#999e6c 85%);
125
	background: url('../img/background/insectes.png') no-repeat 2em 2em,
126
		url('../img/background/tetard_faune.png') no-repeat right bottom,
127
		url('../img/background/faune.png') no-repeat 2em bottom,
128
		 -o-radial-gradient(center, ellipse cover,  #d9e28c 27%,#999e6c 85%);
129
	background: url('../img/background/insectes.png') no-repeat 2em 2em,
130
		url('../img/background/tetard_faune.png') no-repeat right bottom,
131
		url('../img/background/faune.png') no-repeat 2em bottom,
132
		 -ms-radial-gradient(center, ellipse cover,  #d9e28c 27%,#999e6c 85%);
133
	background: url('../img/background/insectes.png') no-repeat 2em 2em,
134
		url('../img/background/tetard_faune.png') no-repeat right bottom,
135
		url('../img/background/faune.png') no-repeat 2em bottom,
136
		 radial-gradient(ellipse at center,  #d9e28c 27%,#999e6c 85%);
2360 jpm 137
	background-attachment:fixed;
138
}
139
footer p{
140
	text-align:center;
141
}
142
button img {
143
	display:block;
144
}
145
h2 {
146
	color: #C0CE40;
147
	font-family: 'Muli', sans-serif;
148
	border-bottom: 1px solid #2B2E34;
149
}
150
/*+--------------------------------------------------------------------------------------------------------+*/
151
/* Générique */
152
.discretion {
153
	color:grey;
154
	font-family:arial;
155
	font-size:11px;
156
	line-height: 13px;
157
}
158
.droite {
159
	text-align:right;
160
}
161
.centre {
162
	text-align:center;
163
}
164
.modal-fenetre {
165
	position:fixed;
166
	z-index:1000;
167
	top:0;
168
	left:0;
169
	height:100%;
170
	width:100%;
171
	background:#777;
172
	background:rgba(90,86,93,0.7);
173
	text-align:center;
174
}
175
.modal-contenu {
176
	position:relative;
177
	width:30%;
178
	margin:0 auto;
179
	top:30%;
180
}
181
/*+--------------------------------------------------------------------------------------------------------+*/
182
/* Formulaire spécifique */
183
.page-header {
184
	background-color: rgba(202, 214, 94, 0.4);
185
	border-radius: 10px;
186
	text-align: center;
2365 jpm 187
	background: url('../img/background/capricorne.png') no-repeat right top rgba(202, 214, 94, 0.4);
2360 jpm 188
}
189
.page-header h1{
190
	font-size: 3em;
191
	line-height: 63px;
192
	color: #2B2E34;
193
	font-family: 'Muli', sans-serif;
194
}
195
#logo-titre {
196
	position: relative;
197
	left: 8px;
198
	margin-right: 1em;
199
}
200
 
201
#intro {
202
 
203
}
204
 
205
#map-canvas {
206
	height:240px;
207
}
208
#info-commune {
209
	text-align:right;
210
}
211
.ns-retenu {
212
	font-weight:bold;
213
}
214
.nn{
215
	color:#3B9D3B;
216
}
217
.nom-sci{
218
	font-size:1.5em;
219
	font-weight:bold;
220
}
221
.commune, .date{
222
	font-size:1.3em;
223
	font-weight:bold;
224
}
225
.obs-action{
226
	opacity:1;
227
}
228
 
229
#miniatures {
230
	padding-top: 5px;
231
}
232
 
233
.miniature{
234
	float: left;
235
	height: 130px;
236
	padding-left: 15px;
237
	padding-right: 15px;
238
}
239
 
240
.miniature-img {
241
	height: 100px;
242
}
243
 
244
.miniature img {
245
	display: block;
246
}
247
 
248
.miniature-chargement {
249
	height:100px;
250
	width: 100px;
251
}
252
 
253
.defilement-miniatures-gauche, .defilement-miniatures-droite {
254
	float: left;
255
	font-size: 1.2em;
256
	font-weight: bold;
257
	height: 62px;
258
	margin: 5px;
259
	padding-top: 30px;
260
	width: 12px;
261
}
262
 
263
.defilement-miniatures {
264
	width: 210px;
265
}
266
 
267
.defilement-miniatures-cache {
268
	visibility: hidden;
269
}
270
 
271
.miniature-cachee {
272
	display: none;
273
}
274
 
275
.miniature-selectionnee {
276
	display: block;
277
	width: 90px;
278
}
279
 
280
.referentiel-obs {
281
	color:#3B9D3B;
282
}
283
#referentiel {
284
	display: inline;
285
}
286
 
287
#photos-conteneur {
288
	height: 120px;
289
}
290
 
291
#photo-placeholder {
292
	background: url("../img/icones/icone-photo.png");
293
	background-size: 89px;
294
	cursor: pointer;
295
	margin-bottom: 15px;
296
	margin-right: 15px;
297
	float:left;
298
	border: 5px dashed #CCCCCC;
299
	border-radius: 8px 8px 8px 8px;
300
	height: 100px;
301
	margin: 2px 0 2px 2px;
302
	text-align: center;
303
	width: 98px;
304
	box-sizing:border-box;
305
	-moz-box-sizing:border-box;
306
	-webkit-box-sizing:border-box;
307
}
308
 
309
#photo-placeholder:hover {
310
	background: url("../img/icones/icone-photo-hover.png");
311
	background-size: 89px;
312
	border: 5px dashed #111;
313
	border-radius: 8px;
314
}
315
 
316
#barre-progression-upload span {
317
	color : #333333;
318
}
319
 
320
.obs-erreur {
321
	background-color: #DD6E6E;
322
}
323
 
324
#barre-progression-upload span {
325
	color : #333333;
326
}
327
 
328
/*+--------------------------------------------------------------------------------------------------------+*/
329
/* Form validation */
330
/* Validation du formulaire */
331
label.error {
332
	font-weight: bold;
333
	font-style: italic;
334
	color: #B94A48;
335
	padding: 0 8px;
336
}
337
 
338
label.valid {
339
	display: inline-block;
340
	text-indent: -9999px;
341
	color: #468847;
342
	width: 0;
343
	height: 0;
344
	padding: 0;
345
}
346
 
347
.control-group.error label {
348
	font-weight: bold;
349
}
350
 
351
/*+--------------------------------------------------------------------------------------------------------+*/
352
/* Collapse */
353
.well .fermer-symbole {
354
	position: absolute;
355
	right:0;
356
}
357
.well .titre, .fermer {
358
	margin:0;
359
	padding: 0;
360
	font-size: 20px;
361
	line-height: 20px;
362
	cursor:pointer;
363
}
364
.well .fermer {
365
	display:block;
366
	color: black;
367
}
368
.well .fermer:hover {
369
	text-decoration: none;
370
}
371
.well .icone {
372
	position:absolute;
373
	right:5px;
374
}
375
 
376
/*+--------------------------------------------------------------------------------------------------------+*/
377
/*Modal plte-description */
378
.dsc-imgs {
379
	max-width: 800px;
380
	margin:0 auto;
381
}
382
.dsc-infos {
383
	max-width: 800px;
384
}
385
.dsc-clean {
386
	clear:both;
387
}
388
@media (min-width: 600px) and (max-width: 800px) {
389
	.dsc-imgs {
390
		width: 600px;
391
	}
392
	.dsc-imgs img {
393
		width: 290px;
394
	}
395
	.dsc-infos {
396
		width: 600px;
397
	}
398
}
399
@media (min-width: 801px) and (max-width: 1359px) {
400
	.modal {
401
		width:800px;
402
		margin-left:-400px;
403
	}
404
	.dsc-imgs {
405
		width: 780px;
406
	}
407
	.dsc-infos {
408
		width: 700px;
409
	}
410
}
411
@media (min-width: 1360px) {
412
	.modal {
413
		width:1360px;
414
		margin-left:-680px;
415
	}
416
	.dsc-imgs {
417
		float:left;
418
	}
419
	.dsc-infos {
420
		float:left;
421
		max-width: 500px;
422
	}
423
 
424
}
425
/*+--------------------------------------------------------------------------------------------------------+*/
426
/* Correction style CSS Bootstrap */
427
.well {
428
	margin-bottom: 5px;
429
	padding: 4px;
430
	background-color: rgba(245,245,245,0.85);
431
}
432
.btn-primary {
433
	background-image: linear-gradient(to bottom, #D9E28C, #999E6C);
434
	background-color: #999E6C;
435
	font-weight: bold;
436
}
437
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
438
	color: rgb(255, 255, 255);
439
	background-color: #999E6C;
440
}