Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Rev 1301 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
990 isa 1
@import "functions.less";
2
 
3
.couleur1-bg 		{	background: @orange;		}
4
.couleur2-bg 		{	background: @vert-moyen;	}
5
.bordered			{ 	border: 1px solid @vert-fonce;		}
6
 
7
.accordion {
8
	h4 {
9
		margin-left: -1em;
10
	}
11
}
12
.accordion-group {
13
	margin: 0pt;
14
}
15
.accordion-heading {
16
	padding-left: 1em;
17
}
18
.btn-large {
19
	padding: 10px;
20
	font-size: 17px;
21
}
22
 
23
body {
24
	color: black;
25
	background: white;
26
}
27
 
28
header {
29
	.couleur2-bg;
30
	color: white;
31
 
32
 
33
	#tela {
34
		background: url("../logos/tela_transparent.png") no-repeat 2px 6px;
35
	}
36
 
37
 
38
	.titre {
39
		font-style: italic;
40
		font-size: 130%;
41
		font-weight: bold;
42
		.shadow(@orange);
43
	}
44
}
45
.gradient-bas {
46
	@top: left top;
47
	@bottom: left bottom;
48
	.gradient(@vert-moyen, @top, white, @bottom);
49
}
50
 
51
footer {
52
	display: none;
53
}
54
 
55
 
56
.sci {
57
	font-style: italic;
58
}
59
 
60
#principal {
61
	margin-bottom: -1em;
62
	padding-left: 0.5em;
63
 
64
	a:hover {
65
		text-decoration: none;
66
	}
67
 
68
 
69
	h4 {
70
		font-size: 17px;
71
		color: @orange;
72
		.shadow(white, 2px, 1px, 1px);
73
	}
74
}
75
 
76
#canvas_fleur, #canvas_fruit {
77
	width: 100%;
78
}
79
#floraison_value, #fructification_value {
80
	display: none;
81
}
82
 
83
 
84
.wrapper {
85
	@square: 120px;
86
	width: @square;
87
	height: @square;
88
	.margin-center;
89
    overflow: hidden;
90
 
91
 
92
    img {
93
    	height: @square;
94
    	width: auto;
95
    }
96
 
97
 
98
    ul {
99
    	margin: 0pt;
100
    }
101
}
102
 
103
.wrapper_carte {
104
  	.margin-center;
105
 
106
 
107
    ul {
108
    	margin: 0pt;
109
    }
110
 
111
 
112
	#galerie_carte {
113
		img {
114
			.bordered;
115
		}
116
	}
117
}
991 isa 118
 
119
.wrapper_demi {
120
	height: 59px;
121
}
122
 
990 isa 123
#galerie_carte {
124
	list-style-type: none;
125
}
126
.bas-de-page {
127
	margin-top: 1em;
128
	margin-bottom: 1em;
129
}
130
.en-savoir-plus {
131
	margin-left: 0.2em;
132
	float: left;
133
	.couleur2-bg;
134
	color: white;
135
	text-shadow: 0pt 0pt 0pt black;
136
 
137
 
138
 
139
}
140
.en-savoir-plus:hover, .en-savoir-plus:visited {
141
	text-decoration: none;
142
}
143
 
144
 
145
.haut-de-page {
146
	margin-right: 0.2em;
147
	float: right;
148
	background: black;
149
	color: white;
150
}
151
.haut-de-page:hover, .haut-de-page:visited {
152
	text-decoration: none;
153
}
154
 
155