Subversion Repositories eFlore/Applications.eflore-consultation

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
990 isa 1
@gris: #6B7071;
2
@orange: #ED7826;
3
@orange-moyen: #F3B88F;
4
@rouge: rgb(225, 96, 57);
5
@vert-fonce: #256226;
6
@vert-moyen: #88AB1C;
7
@violet: rgb(176, 77, 255);
8
 
9
.align-center 		{	text-align: center;	}
10
.margin-center 		{
11
	margin-left: auto;
12
	margin-right: auto;
13
}
14
.margin-bottom-05em {	margin-bottom: 0.5em;		}
15
.margin-right-05em 	{	margin-right: 0.5em;		}
16
.margin-top-05em 	{	margin-top: 0.5em;		}
17
 
18
.padding-05em 		{	padding: 0.5em;		}
19
.padding-left-1em 	{	padding-left: 1em;		}
20
 
21
.small-caps			{	font-variant:small-caps; }
22
 
23
.gradient(@color_start:'', @position_start:'', @color_end:'', @position_end:'') {
24
	background-image: linear-gradient(top, @color_start 0%, @color_end 100%);
25
	background-image: -o-linear-gradient(top, @color_start 0%, @color_end 100%);
26
	background-image: -moz-linear-gradient(top, @color_start 0%, @color_end 100%);
27
	background-image: -webkit-linear-gradient(top, @color_start 0%, @color_end 100%);
28
	background-image: -ms-linear-gradient(top, @color_start 0%, @color_end 100%);
29
 
30
	background-image: -webkit-gradient(linear, @position_start, @position_end, color-stop(0, @color_start), color-stop(1, @color_end));
31
 
32
	height: 16px;
33
	display: block;
34
}
35
 
36
.shadow(@color:'', @decalage-x: 0pt, @decalage-y: 1px, @fondu: 1px) {
37
	text-shadow: @decalage-x @decalage-y @fondu @color;
38
}
39
 
40
.border-radius(@radius: 2em) {
41
	border-radius: @radius;
42
	-moz-border-radius: @radius;
43
	-webkit-border-radius: @radius;
44
}