Subversion Repositories eFlore/Applications.del

Rev

Rev 882 | Rev 1026 | 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;
882 aurelien 17
    width: 145px;
886 aurelien 18
    margin-bottom: 5px;
652 aurelien 19
}
20
 
611 gduche 21
.barre {
652 aurelien 22
	width:80px;
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
 
32
.barreOui {
33
	background:#8EB533;
34
	padding-bottom:15px;
35
}
36
 
37
.barreNon {
38
	background:#C61717;
39
	padding-bottom:15px;
40
}
41
 
42
.boutonOui, .boutonNon {
43
	text-align:center;
44
	color:white;
45
	line-height:1em;
46
	font-size:15px;
47
	font-weight:bold;
48
	cursor:pointer;
49
	float:left;
50
	background:#AAA;
51
 
52
}
53
 
54
.boutonOui {
55
	width:9%;
56
	height:15px;
57
	width:15px;
58
	border-radius:0 2px 2px 0;
59
}
60
 
61
.boutonOui:hover {
62
	background:#8EB533;
63
}
64
 
65
.boutonNon:hover {
66
	background:#C61717
67
}
68
 
69
.boutonNon {
70
	width:9%;
71
	height:15px;
72
	width:15px;
73
	border-radius:2px 0 0 2px;
74
}
672 gduche 75
 
76