Subversion Repositories eFlore/Applications.cel

Rev

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