Subversion Repositories eFlore/Applications.cel

Rev

Rev 719 | Go to most recent revision | Details | 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
}
81
/*+-----------------------------------------------------------------------------------------------------------------+*/
82
/* Générique */
83
.nettoyage{
84
	clear:both;
85
}
86
hr.nettoyage{
87
	visibility:hidden;
88
}