Subversion Repositories eFlore/Applications.cel

Rev

Rev 489 | Go to most recent revision | Details | 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;
44
}
45
#pl-corps {
46
	height:86%;
47
	overflow:auto;
48
	padding:5px;
49
}
50
#pl-ouverture, #pl-fermeture {
51
	position:relative;
52
	top:0;
53
	width:95px;
54
	background-color:#FFF;
55
	text-align:center;
56
	border:1px solid black;
57
	cursor:pointer;
58
}
59
#pl-ouverture {
60
	border-left:0;
61
}
62
#pl-fermeture {
63
	border-right:0;
64
	float:right;
65
}
66
/*+-----------------------------------------------------------------------------------------------------------------+*/
67
/* Pop-up observations */
68
#observations {
69
	margin:23px 0 0 0;
70
	padding:5px;
71
	border:1px solid black;
72
	border-radius:0 0 10px 10px;-moz-border-radius:0 0 10px 10px;-webkit-border-radius:0 0 10px 10px;
73
	border-top:none !important;
74
	overflow:none;
75
}
76
#observations ol {
77
	padding-left:20px;
78
}
79
.champ_nom_latin {
80
	display:none;
81
}
82
/*+-----------------------------------------------------------------------------------------------------------------+*/
83
/* Onglets */
84
.onglets {
85
	position:relative;
86
	float:left;
87
	height:22px;
88
	padding:0;
89
	margin:0;
90
	border-bottom:1px solid black;
91
	width:100%;
92
}
93
.onglets ul {
94
	margin:0;
95
	padding:0;
96
	list-style:none;
97
}
98
.onglets li {
99
	float:left;
100
	text-transform:uppercase;
101
	text-align:center;
102
}
103
.onglets .onglet {
104
	display:block;
105
	padding:5px 15px 4px 15px;
106
	margin:0;
107
	font-size:12px;
108
	line-height:12px;
109
	border:1px solid black;
110
	border-radius:10px 10px 0 0;-moz-border-radius:10px 10px 0 0;-webkit-border-radius:10px 10px 0 0;
111
	text-decoration:none;
112
}
113
.onglets .actif .onglet {
114
	border-bottom:1px solid white;
115
	color:black;
116
	background-color:white;
117
	font-weight:bold;
118
}
119
.onglets .inactif .onglet {
120
	border-bottom:1px solid #000000;
121
	color:white;
122
	background-color:gray;
123
}
124
.onglets .inactif .onglet:hover {
125
	color:black;
126
	background-color:Gainsboro;
127
}
128
/*+-----------------------------------------------------------------------------------------------------------------+*/
129
/* Présentation des listes de définitions */
130
dl {
131
	width:100%;
132
}
133
dt {
134
	float:left;
135
	font-weight:bold;
136
	text-align:top left;
137
	margin-right:0.3em;
138
}
139
dt:after {
140
	content:" :";
141
}
142
dd {
143
	width:auto;
144
	margin:0.5em 0;
145
}
146
/*+-----------------------------------------------------------------------------------------------------------------+*/
147
/* Tableau : */
148
table {
149
	border:1px solid gray;
150
	border-collapse:collapse;
151
}
152
table thead, table tfoot, table tbody {
153
	background-color:Gainsboro;
154
	border:1px solid gray;
155
}
156
table tbody {
157
	background-color:#FFF;
158
}
159
table th {
160
	font-family:monospace;
161
	border:1px dotted gray;
162
	padding:5px;
163
	background-color:Gainsboro;
164
}
165
table td {
166
	font-family:arial;
167
	border:1px dotted gray;
168
	padding:5px;
169
	text-align:left;
170
}
171
table caption {
172
	font-family:sans-serif;
173
}
174
/*+-----------------------------------------------------------------------------------------------------------------+*/
175
/* Tableau : tablesorter */
176
th.header {
177
	background:url(../images/trie.png) no-repeat center right;
178
	padding-right:20px;
179
}
180
th.headerSortUp {
181
	background:url(../images/trie_croissant.png) no-repeat center right #3399FF;
182
}
183
th.headerSortDown {
184
    background:url(../images/trie_decroissant.png) no-repeat center right #3399FF;
185
}