50 lines
756 B
CSS
50 lines
756 B
CSS
.tableau ul {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
text-align: left;
|
|
}
|
|
|
|
/*
|
|
.tableau li:nth-child(2),
|
|
.tableau li:nth-child(3),
|
|
.tableau li:nth-child(4),
|
|
.tableau li:nth-child(5) {
|
|
width: 100px;
|
|
}
|
|
*/
|
|
|
|
.tableau li {
|
|
flex: auto;
|
|
list-style-type: none;
|
|
width: min-content;
|
|
padding: 8px;
|
|
align-self: center;
|
|
}
|
|
|
|
.tableau ul:nth-child(even) {
|
|
background-color: aliceblue;
|
|
}
|
|
|
|
.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;;
|
|
} |