Subversion Repositories eFlore/Applications.cel

Rev

Rev 2365 | Rev 2372 | 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
#info-commune {
206
	text-align:right;
207
}
208
.ns-retenu {
209
	font-weight:bold;
210
}
211
.nn{
212
	color:#3B9D3B;
213
}
2366 jpm 214
.nom-sci {
215
	font-style: italic;
2360 jpm 216
}
2366 jpm 217
 
2360 jpm 218
.obs-action{
219
	opacity:1;
220
}
221
 
222
#miniatures {
223
	padding-top: 5px;
224
}
225
 
226
.miniature{
227
	float: left;
228
	height: 130px;
229
	padding-left: 15px;
230
	padding-right: 15px;
231
}
232
 
233
.miniature-img {
234
	height: 100px;
235
}
236
 
237
.miniature img {
238
	display: block;
239
}
240
 
241
.miniature-chargement {
242
	height:100px;
243
	width: 100px;
244
}
245
 
246
.defilement-miniatures-gauche, .defilement-miniatures-droite {
247
	float: left;
248
	font-size: 1.2em;
249
	font-weight: bold;
250
	height: 62px;
251
	margin: 5px;
252
	padding-top: 30px;
253
	width: 12px;
254
}
255
 
256
.defilement-miniatures {
257
	width: 210px;
258
}
259
 
260
.defilement-miniatures-cache {
261
	visibility: hidden;
262
}
263
 
264
.miniature-cachee {
265
	display: none;
266
}
267
 
268
.miniature-selectionnee {
269
	display: block;
270
	width: 90px;
271
}
272
 
273
#referentiel {
274
	display: inline;
275
}
276
 
277
#photos-conteneur {
278
	height: 120px;
279
}
280
 
281
#photo-placeholder {
282
	background: url("../img/icones/icone-photo.png");
283
	background-size: 89px;
284
	cursor: pointer;
285
	margin-bottom: 15px;
286
	margin-right: 15px;
287
	float:left;
288
	border: 5px dashed #CCCCCC;
289
	border-radius: 8px 8px 8px 8px;
290
	height: 100px;
291
	margin: 2px 0 2px 2px;
292
	text-align: center;
293
	width: 98px;
294
	box-sizing:border-box;
295
	-moz-box-sizing:border-box;
296
	-webkit-box-sizing:border-box;
297
}
298
 
299
#photo-placeholder:hover {
300
	background: url("../img/icones/icone-photo-hover.png");
301
	background-size: 89px;
302
	border: 5px dashed #111;
303
	border-radius: 8px;
304
}
305
 
306
#barre-progression-upload span {
307
	color : #333333;
308
}
309
 
310
.obs-erreur {
311
	background-color: #DD6E6E;
312
}
313
 
314
#barre-progression-upload span {
315
	color : #333333;
316
}
317
 
2366 jpm 318
#taxon-liste optgroup + optgroup {
319
	border-top: 1px solid black;
320
}
321
 
2360 jpm 322
/*+--------------------------------------------------------------------------------------------------------+*/
2366 jpm 323
/* Details obs ajoutées*/
324
.obs-entete {
325
	margin-bottom: 0;
326
}
327
.obs-entete .nom-sci, .obs-entete .commune, .obs-entete .date{
328
	font-size:1.3em;
329
	font-weight:bold;
330
	color: #777;
331
}
332
.obs-entete .referentiel-obs {
333
	color:#3B9D3B;
334
}
335
.obs-details span{
336
	font-style:italic;
337
	color: #777;
338
}
339
 
340
/*+--------------------------------------------------------------------------------------------------------+*/
341
/* Google Map*/
342
#map-canvas {
343
	height:280px;
344
}
345
#map-canvas img{
346
	max-width: none;
347
}
348
 
349
/*+--------------------------------------------------------------------------------------------------------+*/
2360 jpm 350
/* Form validation */
351
/* Validation du formulaire */
352
label.error {
353
	font-weight: bold;
354
	font-style: italic;
355
	color: #B94A48;
356
	padding: 0 8px;
357
}
358
 
359
label.valid {
360
	display: inline-block;
361
	text-indent: -9999px;
362
	color: #468847;
363
	width: 0;
364
	height: 0;
365
	padding: 0;
366
}
367
 
368
.control-group.error label {
369
	font-weight: bold;
370
}
371
 
372
/*+--------------------------------------------------------------------------------------------------------+*/
373
/* Collapse */
374
.well .fermer-symbole {
375
	position: absolute;
376
	right:0;
377
}
378
.well .titre, .fermer {
379
	margin:0;
380
	padding: 0;
381
	font-size: 20px;
382
	line-height: 20px;
383
	cursor:pointer;
384
}
385
.well .fermer {
386
	display:block;
387
	color: black;
388
}
389
.well .fermer:hover {
390
	text-decoration: none;
391
}
392
.well .icone {
393
	position:absolute;
394
	right:5px;
395
}
396
 
397
/*+--------------------------------------------------------------------------------------------------------+*/
2366 jpm 398
/*Modal description */
2360 jpm 399
.dsc-imgs {
400
	max-width: 800px;
401
	margin:0 auto;
402
}
403
.dsc-infos {
404
	max-width: 800px;
405
}
406
.dsc-clean {
407
	clear:both;
408
}
409
@media (min-width: 600px) and (max-width: 800px) {
410
	.dsc-imgs {
411
		width: 600px;
412
	}
413
	.dsc-imgs img {
414
		width: 290px;
415
	}
416
	.dsc-infos {
417
		width: 600px;
418
	}
419
}
420
@media (min-width: 801px) and (max-width: 1359px) {
421
	.modal {
422
		width:800px;
423
		margin-left:-400px;
424
	}
425
	.dsc-imgs {
426
		width: 780px;
427
	}
428
	.dsc-infos {
429
		width: 700px;
430
	}
431
}
432
@media (min-width: 1360px) {
433
	.modal {
434
		width:1360px;
435
		margin-left:-680px;
436
	}
437
	.dsc-imgs {
438
		float:left;
439
	}
440
	.dsc-infos {
441
		float:left;
442
		max-width: 500px;
443
	}
444
 
445
}
446
/*+--------------------------------------------------------------------------------------------------------+*/
447
/* Correction style CSS Bootstrap */
448
.well {
449
	margin-bottom: 5px;
450
	padding: 4px;
451
	background-color: rgba(245,245,245,0.85);
452
}
453
.btn-primary {
454
	background-image: linear-gradient(to bottom, #D9E28C, #999E6C);
455
	background-color: #999E6C;
456
	font-weight: bold;
457
}
458
.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
459
	color: rgb(255, 255, 255);
460
	background-color: #999E6C;
461
}