37 lines
556 B
CSS
37 lines
556 B
CSS
.tableau ul {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
text-align: left;
|
|
}
|
|
|
|
.tableau li:nth-child(1) {
|
|
width: 300px;
|
|
}
|
|
.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;
|
|
}
|
|
|
|
figure img {
|
|
height: 80px !important;
|
|
}
|
|
|
|
figure img:hover {
|
|
height: 180px !important;
|
|
}
|
|
|