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
@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;		}
991 isa 20
.padding-left-01em 	{	padding-left: 0.1em;		}
990 isa 21
 
22
.small-caps			{	font-variant:small-caps; }
23
 
24
.gradient(@color_start:'', @position_start:'', @color_end:'', @position_end:'') {
25
	background-image: linear-gradient(top, @color_start 0%, @color_end 100%);
26
	background-image: -o-linear-gradient(top, @color_start 0%, @color_end 100%);
27
	background-image: -moz-linear-gradient(top, @color_start 0%, @color_end 100%);
28
	background-image: -webkit-linear-gradient(top, @color_start 0%, @color_end 100%);
29
	background-image: -ms-linear-gradient(top, @color_start 0%, @color_end 100%);
30
 
31
	background-image: -webkit-gradient(linear, @position_start, @position_end, color-stop(0, @color_start), color-stop(1, @color_end));
32
 
33
	height: 16px;
34
	display: block;
35
}
36
 
37
.shadow(@color:'', @decalage-x: 0pt, @decalage-y: 1px, @fondu: 1px) {
38
	text-shadow: @decalage-x @decalage-y @fondu @color;
39
}
40
 
41
.border-radius(@radius: 2em) {
42
	border-radius: @radius;
43
	-moz-border-radius: @radius;
44
	-webkit-border-radius: @radius;
45
}