Subversion Repositories eFlore/Applications.cel

Rev

Rev 1543 | 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
}
1210 jpm 45
/*+--------------------------------------------------------------------------------------------------------+*/
46
/* Formulaire spécifique */
47
#map-canvas {
48
	height:240px;
49
}
50
#info-commune {
51
	text-align:right;
52
}
1215 jpm 53
.ns-retenu {
54
	font-weight:bold;
55
}
1240 jpm 56
.nn{
57
	color:#3B9D3B;
58
}
59
.nom-sci{
60
	font-size:1.5em;
61
	font-weight:bold;
62
}
63
.commune, .date{
64
	font-size:1.3em;
65
	font-weight:bold;
66
}
67
.obs-action{
68
	opacity:1;
69
}
1543 aurelien 70
 
71
#miniatures {
72
    padding-top: 5px;
73
}
74
 
1240 jpm 75
.miniature{
1524 aurelien 76
    float: left;
77
    height: 130px;
78
    padding-left: 15px;
79
    padding-right: 15px;
1240 jpm 80
}
1493 aurelien 81
 
1524 aurelien 82
.miniature-img {
83
	height: 100px;
84
}
85
 
86
.miniature img {
87
	display: block;
88
}
89
 
1493 aurelien 90
.miniature-chargement {
91
	height:100px;
92
	width: 100px;
93
}
1524 aurelien 94
 
95
.defilement-miniatures-gauche, .defilement-miniatures-droite {
96
    float: left;
97
    font-size: 1.2em;
98
    font-weight: bold;
99
    height: 62px;
100
    margin: 5px;
101
    padding-top: 30px;
102
    width: 12px;
103
}
104
 
105
.defilement-miniatures {
106
   width: 210px;
107
}
108
 
109
.defilement-miniatures-cache {
110
	visibility: hidden;
111
}
112
 
113
.miniature-cachee {
114
	display: none;
115
}
116
 
117
.miniature-selectionnee {
118
	display: block;
119
	width: 90px;
120
}
121
 
1476 aurelien 122
.referentiel-obs {
123
	color:#3B9D3B;
124
}
125
#referentiel {
126
	display: inline;
127
}
1493 aurelien 128
 
129
#logo-titre {
130
	position: relative;
131
    top: -8px;
132
}
1524 aurelien 133
 
134
#photos-conteneur {
135
	height: 120px;
136
}
137
 
138
#photo-placeholder {
139
	background: url("../img/icones/icone-photo.png");
140
	background-size: 89px;
141
	cursor: pointer;
142
	margin-bottom: 15px;
143
	margin-right: 15px;
144
	float:left;
145
	border: 5px dashed #CCCCCC;
1532 jpm 146
	border-radius: 8px 8px 8px 8px;
147
	height: 100px;
148
	margin: 2px 0 2px 2px;
149
	text-align: center;
150
	width: 98px;
151
	box-sizing:border-box;
152
	-moz-box-sizing:border-box;
153
	-webkit-box-sizing:border-box;
1524 aurelien 154
}
155
 
156
#photo-placeholder:hover {
157
	background: url("../img/icones/icone-photo-hover.png");
158
	background-size: 89px;
159
	border: 5px dashed #111;
1532 jpm 160
	border-radius: 8px;
1524 aurelien 161
}
162
 
1212 jpm 163
/*+--------------------------------------------------------------------------------------------------------+*/
164
/* Correction style CSS Bootstrap */
165
.well {
166
	margin-bottom: 5px;
167
	padding: 4px;
1240 jpm 168
}