Subversion Repositories eFlore/Applications.cel

Rev

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

Rev Author Line No. Line
580 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,verdana,sans-serif;
12
	font-size:12px;
13
	background-color:#4A4B4C;
14
	color:#CCC;
15
}
16
img {
17
	border:0;
18
}
19
h1 {
20
	margin:5px;
21
	font-size:1.6em;
22
}
23
h2 {
24
	font-size:1.4em;
25
}
26
a, a:active, a:visited {
27
	border-bottom:1px dotted #666;
28
	color:#CCC;
29
	text-decoration:none;
30
}
31
a:active {
32
	outline:none;
33
}
34
a:focus {
35
	outline:thin dotted;
36
}
37
a:hover {
38
	color:#56B80E;
39
	border-bottom:1px dotted #56B80E;
40
}
41
/*+-----------------------------------------------------------------------------------------------------------------+*/
42
/* Général */
43
.discretion {
583 jpm 44
	color:grey;
580 jpm 45
	font-family:arial;
46
	font-size:11px;
47
	font-weight:bold;
48
}
583 jpm 49
.nettoyage {
50
	clear:both;
51
}
52
hr.nettoyage {
53
	visibility:hidden;
54
}
580 jpm 55
/*+-----------------------------------------------------------------------------------------------------------------+*/
56
/* Widget */
57
#contenu{
58
	position:relative;
59
	margin:5px auto;
60
}
61
#date-generation{
62
	text-align:right;
63
}
64
#flux-suivre {
65
	color:rgba(0,0,0,0);
66
	background:url("http://www.tela-botanica.org/sites/commun/generique/images/rss.png") no-repeat scroll 0 2px transparent;
67
	width:16px;
68
	height:20px;
69
	overflow:hidden;
70
}
71
#flux-suivre:hover {
72
	color:rgba(0,0,0,0);
73
}
74
/*+-----------------------------------------------------------------------------------------------------------------+*/
75
/* Galerie Photos CEL */
76
#galerie-photo .photo a{
77
	float:left;
78
	padding:2px;
79
	border:1px solid white;
80
}
81
#galerie-photo .photo a:hover{
82
	border:1px dotted #FD8C13;
83
}
84
#galerie-photo .photo a img{
85
	float:left;
583 jpm 86
	width:63px;
580 jpm 87
	height:63px;
88
}
89
#galerie-photo #photo-extra img{
90
	height:auto;
91
}
583 jpm 92
.infos {
93
	display:none;
94
}
95
#legende{
96
	text-align:left;
97
}
98
#legende-vei{
99
	float:right;
100
}
101
#legende p{
102
	color:black;
103
	font-size:12px;
104
	margin:5px 0;
105
}
106
#legende a {
107
	color:#333;
108
	border-bottom:1px dotted gainsboro;
109
}
110
#legende a:hover {
111
	color:#56B80E;
112
	border-bottom:1px dotted #56B80E;
580 jpm 113
}