28 lines
403 B
CSS
28 lines
403 B
CSS
.tableau ul {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.figure {
|
|
display: block !important;
|
|
} |