86 lines
1.2 KiB
CSS
86 lines
1.2 KiB
CSS
.tableau ul {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
text-align: left;
|
|
}
|
|
|
|
.tableau li {
|
|
width: 80px;
|
|
}
|
|
.tableau li:nth-child(2) {
|
|
width: 200px;
|
|
}
|
|
.tableau li:nth-child(3) {
|
|
width: 20px;
|
|
}
|
|
.tableau li {
|
|
flex: auto;
|
|
list-style-type: none;
|
|
padding: 0px 4px;
|
|
align-self: center;
|
|
text-align: left;
|
|
}
|
|
figure {
|
|
margin: 4px 0px !important;
|
|
}
|
|
|
|
|
|
.tableau ul:nth-child(even) {
|
|
background-color: #f47f7f;
|
|
}
|
|
.tableau ul:nth-child(odd) {
|
|
background-color: white;
|
|
}
|
|
|
|
.tableau figcaption {
|
|
font-weight: bold;
|
|
}
|
|
.tableau ul:nth-child(even) figcaption{
|
|
color: white;
|
|
}
|
|
.tableau ul:nth-child(odd) figcaption {
|
|
color: #f47f7f;
|
|
}
|
|
|
|
.tableau ul:nth-child(even) {
|
|
color: white;
|
|
}
|
|
|
|
.tableau ul:nth-child(odd) {
|
|
color: #f47f7f;
|
|
}
|
|
|
|
|
|
.tableau ul:first-child li {
|
|
font-weight: bold;
|
|
}
|
|
|
|
img {
|
|
height: 80px !important;
|
|
transition: transform .1s;
|
|
}
|
|
|
|
img:hover{
|
|
-ms-transform: scale(5); /* IE 9 */
|
|
-webkit-transform: scale(5); /* Safari 3-8 */
|
|
transform: scale(5);
|
|
}
|
|
|
|
.offrants {
|
|
width: 100%;
|
|
}
|
|
|
|
.depenses {
|
|
font-weight: bold;
|
|
color: red;;
|
|
}
|
|
|
|
.vote {
|
|
text-align: center;
|
|
font-size: xx-large;
|
|
}
|
|
|
|
.vote-sm {
|
|
text-align: center;
|
|
font-size: x-large;
|
|
} |