Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
1537 jpm 1
@CHARSET "UTF-8";
2
/*+--------------------------------------------------------------------------------------------------------+*/
3
/* Polices d'écriture*/
4
@font-face {
5
	font-family: florileges;
6
	src: url(fonts/caflisch_scriptw_web.ttf) format('ttf'),
7
		url(fonts/caflisch_scriptw_web.woff) format('woff');
8
}
9
 
10
/*+--------------------------------------------------------------------------------------------------------+*/
11
/* Balises */
12
body {
13
	background: url("../img/background/noise.png") repeat scroll 0 0, none repeat scroll 0 0 #524C47;
14
}
15
footer p{
16
	color:white;
17
	text-align:center;
18
}
19
button img {
20
	display:block;
21
}
22
h1, h2 {
23
	font-size: 40px;
24
	font-family:florileges;
1540 jpm 25
	font-weight: normal;
1537 jpm 26
}
27
/*+--------------------------------------------------------------------------------------------------------+*/
28
/* Générique */
29
.discretion {
30
	color:white;
31
	font-family:arial;
32
	font-size:11px;
33
	line-height: 13px;
34
}
35
.droite {
36
	text-align:right;
37
}
38
.centre {
39
	text-align:center;
40
}
41
.modal-fenetre {
42
	position:fixed;
43
	z-index:1000;
44
	top:0;
45
	left:0;
46
	height:100%;
47
	width:100%;
48
	background:#777;
49
	background:rgba(90,86,93,0.7);
50
	text-align:center;
51
}
52
.modal-contenu {
53
	position:relative;
54
	width:30%;
55
	margin:0 auto;
56
	top:30%;
57
}
1540 jpm 58
.nom-sci {
59
	font-style: italic;
1537 jpm 60
}
61
/*+--------------------------------------------------------------------------------------------------------+*/
62
/* Gestion des photos */
63
.miniature{
64
	float: left;
65
	height: 130px;
66
	padding-left: 15px;
67
	padding-right: 15px;
68
}
69
.miniature-img {
70
	height: 100px;
71
}
72
.miniature img {
73
	display: block;
74
}
75
.miniature-chargement {
76
	height:100px;
77
	width: 100px;
78
}
79
.defilement-miniatures-gauche, .defilement-miniatures-droite {
80
	float: left;
81
	font-size: 1.2em;
82
	font-weight: bold;
83
	height: 62px;
84
	margin: 5px;
85
	padding-top: 30px;
86
	width: 12px;
87
}
88
.defilement-miniatures {
89
	width: 210px;
90
}
91
.defilement-miniatures-cache {
92
	visibility: hidden;
93
}
94
.miniature-cachee {
95
	display: none;
96
}
97
.miniature-selectionnee {
98
	display: block;
99
	width: 90px;
100
}
101
#fichier {
102
	display: none;
103
}
104
#photos-conteneur {
105
	height: 120px;
106
}
107
#photo-placeholder {
108
	background: url("../img/icones/icone-photo.png");
109
	background-size: 89px;
110
	cursor: pointer;
111
	margin-bottom: 15px;
112
	margin-right: 15px;
113
	float:left;
114
	border: 5px dashed #CCCCCC;
115
	border-radius: 8px 8px 8px 8px;
116
	height: 100px;
117
	margin: 2px 0 2px 2px;
118
	text-align: center;
119
	width: 98px;
120
	box-sizing:border-box;
121
	-moz-box-sizing:border-box;
122
	-webkit-box-sizing:border-box;
123
}
124
#photo-placeholder:hover {
125
	background: url("../img/icones/icone-photo-hover.png");
126
	background-size: 89px;
127
	border: 5px dashed #111;
128
	border-radius: 8px;
129
}
130
 
131
/*+--------------------------------------------------------------------------------------------------------+*/
132
/* Correction style CSS Bootstrap */
133
.well {
134
	margin-bottom: 5px;
135
	padding: 4px;
136
	background: url("../img/background/noise.png") repeat scroll 0 0 white;
137
}
1540 jpm 138
@media (min-width: 575px) and (max-width: 767px){
139
	.forcer-colonne [class*="span"] {
140
		float: left;
141
		margin-left: 2.12766%;
142
	}
143
	.forcer-colonne .span4 {
144
		width: 31.6239%;
145
	}
146
	.forcer-colonne .span6 {
147
		width: 48.9362%;
148
	}
149
	.forcer-colonne .span8 {
150
		width: 65.9574%;
151
	}
152
}
1560 jpm 153
@media (min-width: 1600px) {
154
	.container {
155
		width: 1580px;
156
	}
157
}
1537 jpm 158
/*+--------------------------------------------------------------------------------------------------------+*/
159
/* Spécifique Florilèges */
160
.page-header .intro {
161
	background: url("../img/background/noise.png") repeat scroll 0 0, radial-gradient(ellipse farthest-corner at center center , #A1C886 0%, #689E4B 100%) repeat scroll 0 0 transparent;
162
	color: white;
163
	padding:5px;
164
}
165
.page-header .intro a {
166
	color: #524C47;
167
}
168
 
169
/* Géolocalisation */
1540 jpm 170
 
171
 
1537 jpm 172
#map-canvas {
173
	height: 240px;
1540 jpm 174
	margin-bottom:5px;
1537 jpm 175
}
176
.coordonnees-geo, .lat-lon-info {
177
	font-size: 10px;
178
}
1540 jpm 179
#info-commune {
180
	text-align:right;
181
	font-size:10px;
182
}
183
.afficher-coord {
184
	font-size:10px;
185
}
1537 jpm 186
 
187
/* Observations */
188
#obs-titre {
189
	margin-right: 20px;
190
}
191
#form-date {
192
	margin: 10px 0;
193
	line-height: 40px;
194
}
1540 jpm 195
.ns-retenu {
196
	font-weight:bold;
197
}
198
.nn{
199
	color:#3B9D3B;
200
}
201
.obs .nom-sci{
202
	font-size:1.5em;
203
	font-weight:bold;
204
}
205
.commune, .date{
206
	font-size:1.3em;
207
	font-weight:bold;
208
}
209
.obs-action{
210
	opacity:1;
211
}
1537 jpm 212
 
1540 jpm 213
/* Validation du formulaire */
214
label.valid {
215
	display: inline-block;
216
	text-indent: -9999px;
217
	color: #468847;
218
}
219
label.error {
220
	font-weight: bold;
221
	color: #B94A48;
1560 jpm 222
	padding: 0 8px;
1540 jpm 223
}
1560 jpm 224
.error .horizontal-slider{
225
	background: #B94A48;
226
}
227
.slider-holder + select + label.error {
228
	clear: both;
229
}
230
#form-date .input-prepend input {
231
	vertical-align:top;
232
}
233
#form-date .input-prepend  input + label.error {
234
	display: block;
235
}
1540 jpm 236
/*+--------------------------------------------------------------------------------------------------------+*/
1537 jpm 237
/* SLIDERs */
238
.slider-on {
1560 jpm 239
	display:inline;
240
	height:0;
241
	width:0;
242
	margin:0;
243
	padding:0;
244
	visibility: hidden;
1537 jpm 245
}
246
.slider-holder {
1560 jpm 247
	height: 25px;
1537 jpm 248
	margin-left: -20px;
249
	margin-right: 20px;
250
	padding-left: 40px;
251
	padding-top: 30px;
252
}
253
.ui-widget-header {
254
	background: url("../img/background/noise.png") #A1C886;
255
}
256
.horizontal-slider {
257
	margin: 0 3%;
258
	height: 9px !important;
259
	width: 90%;
260
}
261
.horizontal-slider.ui-slider-horizontal .ui-slider-range-min {
262
	border-radius: 5px 0 0 5px;
263
}
264
.slider-holder p {
265
	float: left;
266
	font-size: 10px;
267
	text-align: center;
268
	top: 10px;
269
}
270
.slider-holder p + p {
271
	line-height: 1.5em;
272
}
273
.slider-holder .slider-legend {
274
	margin: 0 3%;
275
}
276
.slider-holder .slider-legend p {
1560 jpm 277
	padding-top: 5px;
1537 jpm 278
	overflow: hidden;
1560 jpm 279
	word-wrap: break-word;
1537 jpm 280
}
281
.horizontal-slider a.ui-slider-handle {
282
	background: url("../img/icones/selecteur.png") no-repeat scroll 23px 20px transparent;
283
	border: medium none;
284
	border-radius: 0;
285
	display: block;
286
	font-size: 14px;
287
	font-weight: bold;
288
	height: 60px;
289
	margin: 5px 5px 5px -35px;
290
	padding: 0;
291
	position: relative;
292
	text-align: center;
293
	text-decoration: none;
294
	top: -40px;
295
	width: 70px;
296
	white-space: nowrap;
297
}
298
.ui-slider .ui-slider-handle {
299
	font-size: 12px;
1540 jpm 300
}
301
.ui-datepicker {
302
	z-index: 2;
1537 jpm 303
}