File size: 532 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
.row {
color: white;
margin-left: 20px;
}
.row_posters {
display: flex;
overflow-y: hidden;
overflow-x: scroll;
padding: 20px;
}
.row_posters::-webkit-scrollbar {
display: none;
}
.row_poster {
width: 100%;
object-fit: contain;
max-height: 100px;
transition: transform 450ms;
margin-right: 10px;
}
.row_poster:hover {
transform: scale(1.08);
opacity: 1;
}
.row_posterLarge {
max-height: 250px;
}
.row_posterLarge:hover {
transform: scale(1.09);
opacity: 1;
} |