Subversion Repositories eFlore/Applications.cel

Rev

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