Subversion Repositories eFlore/Applications.cel

Rev

Rev 719 | 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
}
89
/*+-----------------------------------------------------------------------------------------------------------------+*/
90
/* Formulaire */
91
fieldset {
92
	width:600px;
93
}
94
label{
95
	width:140px;
96
	display:block;
97
	float:left;
98
}
99
input, select, textarea {
100
	width:240px;
101
}
102
#saisie-obs fieldset{
103
	margin-top:10px;
104
	border:0;
105
	display:block;
106
}
107
#saisie-obs ul {
108
	list-style-type:none;
109
	margin:0;
110
	padding:0;
111
}
112
#saisie-obs li {
113
	margin:5px;
114
}
115
#partie-station label {
116
	width:70px;
117
	display:block;
118
	float:left;
119
}
120
#latitude, #longitude {
121
	width:70px;
122
	float:left;
123
}
124
#latitude {
125
	margin-right:5px;
126
}
127
#lat-lon-info {
128
	margin-left:5px;
129
}
130
.obligatoire {
131
	color:red;
132
}
133
label.error {
134
	display:inline;
135
	float:none;
136
	color:red;
137
	padding-left:.5em;
138
}
139
 
140
/*+-----------------------------------------------------------------------------------------------------------------+*/
141
/* Carte Google Map */
142
#gg-map-localisation {
143
	background-color:#4A4B4C;
144
	color:#CCC;
145
}
146
#gg-map-carte {
147
	width:100%;
148
}
149
#gg-map-info ul {
150
	list-style-type:none;
744 jpm 151
	padding-left:0;
719 jpm 152
}
153
#gg-map-info li {
154
	margin:0;
155
}
156
#gg-map-info ul, #gg-map-info button{
157
	margin-left:5px;
158
}
159
.champ {
160
	color:#56B80E;
161
	font-weight:bold;
712 jpm 162
}