Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
1210 jpm 1
@CHARSET "UTF-8";
2
/*+--------------------------------------------------------------------------------------------------------+*/
3
/* Balises */
4
footer p{
5
	text-align:center;
6
}
1215 jpm 7
button img {
8
	display:block;
9
}
1493 aurelien 10
 
11
h1 {
12
	font-size: 26px;
13
}
1210 jpm 14
/*+--------------------------------------------------------------------------------------------------------+*/
15
/* Générique */
16
.discretion {
17
	color:grey;
18
	font-family:arial;
19
	font-size:11px;
1249 jpm 20
	line-height: 13px;
1210 jpm 21
}
22
.droite {
23
	text-align:right;
24
}
1217 jpm 25
.centre {
26
	text-align:center;
27
}
1493 aurelien 28
.modal-fenetre {
1249 jpm 29
	position:fixed;
30
	z-index:1000;
31
	top:0;
32
	left:0;
33
	height:100%;
34
	width:100%;
35
	background:#777;
36
	background:rgba(90,86,93,0.7);
37
	text-align:center;
38
}
1493 aurelien 39
.modal-contenu {
1249 jpm 40
	position:relative;
41
	width:30%;
42
	margin:0 auto;
43
	top:30%;
44
}
2688 mathias 45
input#taxon {
46
	width: 300px;
47
}
48
/* jQuery.validate dans ses versions récentes ne semble pas ajouter la classe help-inline
49
	aux messages d'erreur */
50
.control-group .error {
51
	color: #b94a48;
52
	display: inline-block;
53
	padding-left: 5px;
54
	vertical-align: middle;
55
}
56
 
57
 
1210 jpm 58
/*+--------------------------------------------------------------------------------------------------------+*/
59
/* Formulaire spécifique */
60
#map-canvas {
61
	height:240px;
62
}
63
#info-commune {
64
	text-align:right;
65
}
1215 jpm 66
.ns-retenu {
67
	font-weight:bold;
68
}
1240 jpm 69
.nn{
70
	color:#3B9D3B;
71
}
72
.nom-sci{
73
	font-size:1.5em;
74
	font-weight:bold;
75
}
76
.commune, .date{
77
	font-size:1.3em;
78
	font-weight:bold;
79
}
80
.obs-action{
81
	opacity:1;
82
}
1543 aurelien 83
 
84
#miniatures {
85
    padding-top: 5px;
86
}
87
 
2688 mathias 88
.miniature {
1524 aurelien 89
    float: left;
90
    height: 130px;
91
    padding-left: 15px;
92
    padding-right: 15px;
2688 mathias 93
    background-repeat: no-repeat;
94
    background-size: cover;
1240 jpm 95
}
1493 aurelien 96
 
1524 aurelien 97
.miniature-img {
98
	height: 100px;
99
}
100
 
101
.miniature img {
102
	display: block;
103
}
104
 
1493 aurelien 105
.miniature-chargement {
106
	height:100px;
107
	width: 100px;
108
}
1524 aurelien 109
 
110
.defilement-miniatures-gauche, .defilement-miniatures-droite {
111
    float: left;
112
    font-size: 1.2em;
113
    font-weight: bold;
114
    height: 62px;
115
    margin: 5px;
116
    padding-top: 30px;
117
    width: 12px;
118
}
119
 
120
.defilement-miniatures {
121
   width: 210px;
122
}
123
 
124
.defilement-miniatures-cache {
125
	visibility: hidden;
126
}
127
 
128
.miniature-cachee {
129
	display: none;
130
}
131
 
132
.miniature-selectionnee {
133
	display: block;
134
	width: 90px;
135
}
136
 
1476 aurelien 137
.referentiel-obs {
138
	color:#3B9D3B;
139
}
140
#referentiel {
141
	display: inline;
142
}
1493 aurelien 143
 
144
#logo-titre {
145
	position: relative;
146
    top: -8px;
147
}
1524 aurelien 148
 
149
#photos-conteneur {
150
	height: 120px;
151
}
152
 
153
#photo-placeholder {
154
	background: url("../img/icones/icone-photo.png");
155
	background-size: 89px;
156
	cursor: pointer;
157
	margin-bottom: 15px;
158
	margin-right: 15px;
159
	float:left;
160
	border: 5px dashed #CCCCCC;
1532 jpm 161
	border-radius: 8px 8px 8px 8px;
162
	height: 100px;
163
	margin: 2px 0 2px 2px;
164
	text-align: center;
165
	width: 98px;
166
	box-sizing:border-box;
167
	-moz-box-sizing:border-box;
168
	-webkit-box-sizing:border-box;
1524 aurelien 169
}
170
 
171
#photo-placeholder:hover {
172
	background: url("../img/icones/icone-photo-hover.png");
173
	background-size: 89px;
174
	border: 5px dashed #111;
1532 jpm 175
	border-radius: 8px;
1524 aurelien 176
}
177
 
2110 aurelien 178
#barre-progression-upload span {
179
	color : #333333;
180
}
181
 
182
.obs-erreur {
183
	background-color: #DD6E6E;
184
}
185
 
1212 jpm 186
/*+--------------------------------------------------------------------------------------------------------+*/
187
/* Correction style CSS Bootstrap */
188
.well {
189
	margin-bottom: 5px;
190
	padding: 4px;
1240 jpm 191
}