Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
712 jpm 1
@CHARSET "UTF-8";
2
body {
3
	padding:0;
4
	margin:0;
5
	width:100%;
6
	height:100%;
7
	font-family:Arial;
8
	font-size:12px;
9
	background-color:#4A4B4C;
10
	color:#CCC;
11
}
12
h1 {
13
	font-size:1.6em;
14
}
15
h2 {
16
	font-size:1.4em;
17
}
18
a, a:active, a:visited {
19
	border-bottom:1px dotted #666;
20
	color:#CCC;
21
	text-decoration:none;
22
}
23
a:active {
24
	outline:none;
25
}
26
a:focus {
27
	outline:thin dotted;
28
}
29
a:hover {
30
	color:#56B80E;
31
	border-bottom:1px dotted #56B80E;
32
}
33
/*+-----------------------------------------------------------------------------------------------------------------+*/
34
/* Présentation des listes de définitions */
35
dl {
36
	width:100%;
37
}
38
dt {
39
	float:left;
40
	font-weight:bold;
41
	text-align:top left;
42
	margin-right:0.3em;
43
}
44
dd {
45
	width:auto;
46
	margin:0.5em 0;
47
}
48
/*+-----------------------------------------------------------------------------------------------------------------+*/
49
/* Tableau : */
50
table {
51
	border:1px solid gray;
52
	border-collapse:collapse;
53
}
54
table thead, table tfoot, table tbody {
55
	background-color:Gainsboro;
56
	border:1px solid gray;
57
	color:black;
58
}
59
table tbody {
60
	background-color:#FFF;
61
}
62
table th {
63
	font-family:monospace;
64
	border:1px dotted gray;
65
	padding:5px;
66
	background-color:Gainsboro;
67
}
68
table td {
69
	font-family:arial;
70
	border:1px dotted gray;
71
	padding:5px;
72
	text-align:left;
73
}
74
table caption {
75
	font-family:sans-serif;
76
}
719 jpm 77
legend {
78
	font-size:1.2em;
79
	color:#CCC;
80
}
712 jpm 81
/*+-----------------------------------------------------------------------------------------------------------------+*/
82
/* Générique */
83
.nettoyage{
84
	clear:both;
85
}
86
hr.nettoyage{
87
	visibility:hidden;
719 jpm 88
}
1348 aurelien 89
 
90
/*+--------------------------------------------------------------------------------------------------------+*/
91
/* Positionnement général */
92
#zone-appli {
93
	margin:0 auto;
94
	width:600px;
95
}
96
 
719 jpm 97
/*+-----------------------------------------------------------------------------------------------------------------+*/
98
/* Formulaire */
99
fieldset {
833 jpm 100
	width:800px;
719 jpm 101
}
102
label{
103
	width:140px;
104
	display:block;
105
	float:left;
106
}
107
input, select, textarea {
108
	width:240px;
109
}
110
#saisie-obs fieldset{
111
	margin-top:10px;
112
	border:0;
113
	display:block;
114
}
115
#saisie-obs ul {
116
	list-style-type:none;
117
	margin:0;
118
	padding:0;
119
}
120
#saisie-obs li {
121
	margin:5px;
122
}
123
#partie-station label {
124
	width:70px;
125
	display:block;
126
	float:left;
127
}
128
#latitude, #longitude {
129
	width:70px;
130
	float:left;
131
}
132
#latitude {
133
	margin-right:5px;
134
}
135
#lat-lon-info {
136
	margin-left:5px;
137
}
138
.obligatoire {
139
	color:red;
140
}
141
label.error {
142
	display:inline;
143
	float:none;
144
	color:red;
145
	padding-left:.5em;
146
}
147
 
148
/*+-----------------------------------------------------------------------------------------------------------------+*/
149
/* Carte Google Map */
150
#gg-map-localisation {
151
	background-color:#4A4B4C;
152
	color:#CCC;
153
}
154
#gg-map-carte {
155
	width:100%;
156
}
832 jpm 157
#gg-map-info {
719 jpm 158
	list-style-type:none;
832 jpm 159
	padding: 5px 0;
160
	margin:0;
719 jpm 161
}
162
#gg-map-info li {
832 jpm 163
	margin:0 0 0 5px;
719 jpm 164
}
832 jpm 165
#gg-map-form {
166
	padding:0;
167
	margin:0 5px;
719 jpm 168
}
832 jpm 169
#gg-map-form button {
170
	margin:5px;
171
}
719 jpm 172
.champ {
173
	color:#56B80E;
174
	font-weight:bold;
712 jpm 175
}