Subversion Repositories eFlore/Applications.del

Rev

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

Rev Author Line No. Line
611 gduche 1
.conteneurBarre {
2
	width:130px;
652 aurelien 3
	display: inline;
611 gduche 4
}
5
 
652 aurelien 6
.conteneurBarreOuiNon {
7
	display: inline;
8
	float: right;
9
}
10
 
11
.labelTaxon {
660 gduche 12
	float: left;
13
    margin-right: 5px;
14
    overflow: hidden;
15
    text-overflow: ellipsis;
16
    white-space: nowrap;
1026 gduche 17
    width: 185px;
886 aurelien 18
    margin-bottom: 5px;
652 aurelien 19
}
20
 
611 gduche 21
.barre {
1026 gduche 22
	width:50px;
611 gduche 23
	height:15px;
24
	background:#BBB;
25
	float:left;
26
	margin-right:2px;
27
	margin-left:2px;
652 aurelien 28
	display: inline;
29
	float:left;
611 gduche 30
}
31
 
1026 gduche 32
.pourcentage {
33
	position:absolute;
34
	font-size:10px;
35
	width:48px;
36
	text-align:center;
37
}
38
 
611 gduche 39
.barreOui {
40
	background:#8EB533;
41
	padding-bottom:15px;
42
}
43
 
44
.barreNon {
45
	background:#C61717;
46
	padding-bottom:15px;
47
}
48
 
49
.boutonOui, .boutonNon {
50
	text-align:center;
51
	color:white;
52
	line-height:1em;
53
	font-size:15px;
54
	font-weight:bold;
55
	cursor:pointer;
56
	float:left;
57
	background:#AAA;
58
 
59
}
60
 
61
.boutonOui {
62
	width:9%;
63
	height:15px;
64
	width:15px;
65
	border-radius:0 2px 2px 0;
66
}
67
 
68
.boutonOui:hover {
69
	background:#8EB533;
70
}
71
 
72
.boutonNon:hover {
73
	background:#C61717
74
}
75
 
76
.boutonNon {
77
	width:9%;
78
	height:15px;
79
	width:15px;
80
	border-radius:2px 0 0 2px;
81
}
672 gduche 82
 
83