Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
479 jpm 1
@charset "UTF-8";
2
 
3
html, body {
4
	margin:0;
5
	padding:0;
6
	height: 100%;
7
	font-family:Arial;
8
	font-size:12px;
9
}
10
/*+-----------------------------------------------------------------------------------------------------------------+*/
11
/* Carte */
12
#carte {
13
	width:100%;
14
	height:100%;
15
}
16
.bouton {
17
	background-color:white;
18
	border:2px solid black;
19
	cursor:pointer;
20
	text-align:center;
21
}
22
/*+-----------------------------------------------------------------------------------------------------------------+*/
23
/* Message de chargement */
24
#chargement {
25
	display:none;
26
}
27
#chargement-copie img{
28
	display:block;
29
	margin:auto;
30
}
31
/*+-----------------------------------------------------------------------------------------------------------------+*/
32
/* Panneau latéral */
33
#panneau-lateral {
34
	width:300px;
35
	height:100%;
36
	padding:0;
37
	display:none;
38
	background-color:white;
39
	border-right:1px solid grey;
40
	box-shadow:2px 2px 6px #979797;-webkit-box-shadow:2px 2px 6px #979797;-moz-box-shadow:2px 2px 6px #979797;
41
}
42
#pl-entete {
43
	text-align:right;
489 jpm 44
	height:5%;
479 jpm 45
}
46
#pl-corps {
489 jpm 47
	position:relative;
48
	top:5%;
49
	height:95%;
479 jpm 50
	overflow:auto;
51
	padding:5px;
489 jpm 52
	width:290px;
479 jpm 53
}
54
#pl-ouverture, #pl-fermeture {
55
	position:relative;
56
	top:0;
57
	width:95px;
58
	background-color:#FFF;
59
	text-align:center;
60
	border:1px solid black;
61
	cursor:pointer;
62
}
63
#pl-ouverture {
64
	border-left:0;
65
}
66
#pl-fermeture {
67
	border-right:0;
68
	float:right;
69
}
70
/*+-----------------------------------------------------------------------------------------------------------------+*/
71
/* Pop-up observations */
72
#observations {
73
	margin:23px 0 0 0;
74
	padding:5px;
75
	border:1px solid black;
76
	border-radius:0 0 10px 10px;-moz-border-radius:0 0 10px 10px;-webkit-border-radius:0 0 10px 10px;
77
	border-top:none !important;
78
	overflow:none;
79
}
80
#observations ol {
81
	padding-left:20px;
82
}
83
.champ_nom_latin {
84
	display:none;
85
}
86
/*+-----------------------------------------------------------------------------------------------------------------+*/
87
/* Onglets */
88
.onglets {
89
	position:relative;
90
	float:left;
91
	height:22px;
92
	padding:0;
93
	margin:0;
94
	border-bottom:1px solid black;
95
	width:100%;
96
}
97
.onglets ul {
98
	margin:0;
99
	padding:0;
100
	list-style:none;
101
}
102
.onglets li {
103
	float:left;
104
	text-transform:uppercase;
105
	text-align:center;
106
}
107
.onglets .onglet {
108
	display:block;
109
	padding:5px 15px 4px 15px;
110
	margin:0;
111
	font-size:12px;
112
	line-height:12px;
113
	border:1px solid black;
114
	border-radius:10px 10px 0 0;-moz-border-radius:10px 10px 0 0;-webkit-border-radius:10px 10px 0 0;
115
	text-decoration:none;
116
}
117
.onglets .actif .onglet {
118
	border-bottom:1px solid white;
119
	color:black;
120
	background-color:white;
121
	font-weight:bold;
122
}
123
.onglets .inactif .onglet {
124
	border-bottom:1px solid #000000;
125
	color:white;
126
	background-color:gray;
127
}
128
.onglets .inactif .onglet:hover {
129
	color:black;
130
	background-color:Gainsboro;
131
}
132
/*+-----------------------------------------------------------------------------------------------------------------+*/
133
/* Présentation des listes de définitions */
134
dl {
135
	width:100%;
136
}
137
dt {
138
	float:left;
139
	font-weight:bold;
140
	text-align:top left;
141
	margin-right:0.3em;
142
}
143
dt:after {
144
	content:" :";
145
}
146
dd {
147
	width:auto;
148
	margin:0.5em 0;
149
}
150
/*+-----------------------------------------------------------------------------------------------------------------+*/
151
/* Tableau : */
152
table {
153
	border:1px solid gray;
154
	border-collapse:collapse;
155
}
156
table thead, table tfoot, table tbody {
157
	background-color:Gainsboro;
158
	border:1px solid gray;
159
}
160
table tbody {
161
	background-color:#FFF;
162
}
163
table th {
164
	font-family:monospace;
165
	border:1px dotted gray;
166
	padding:5px;
167
	background-color:Gainsboro;
168
}
169
table td {
170
	font-family:arial;
171
	border:1px dotted gray;
172
	padding:5px;
173
	text-align:left;
174
}
175
table caption {
176
	font-family:sans-serif;
177
}
178
/*+-----------------------------------------------------------------------------------------------------------------+*/
179
/* Tableau : tablesorter */
180
th.header {
181
	background:url(../images/trie.png) no-repeat center right;
182
	padding-right:20px;
183
}
184
th.headerSortUp {
185
	background:url(../images/trie_croissant.png) no-repeat center right #3399FF;
186
}
187
th.headerSortDown {
188
    background:url(../images/trie_decroissant.png) no-repeat center right #3399FF;
189
}