60 lines
981 B
CSS
60 lines
981 B
CSS
.container {
|
|
transform: translateX(0);
|
|
}
|
|
|
|
.list {
|
|
display: flex;
|
|
gap: 10px;
|
|
list-style-type: none;
|
|
overflow: scroll;
|
|
padding-left: 0;
|
|
scroll-behavior: smooth;
|
|
}
|
|
|
|
.link {
|
|
text-decoration: none;
|
|
color: var(--bs-body-color);
|
|
max-width: calc(25vh * 9 / 16);
|
|
display: inline-block;
|
|
}
|
|
|
|
.image {
|
|
height: 25vh;
|
|
object-fit: contain;
|
|
border-radius: 12px;
|
|
margin-bottom: .5rem;
|
|
max-width: inherit;
|
|
}
|
|
|
|
.title {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
margin-bottom: .5rem;
|
|
}
|
|
|
|
.title:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.scrollButton {
|
|
position: fixed;
|
|
right: 0;
|
|
top: 0;
|
|
z-index: 100;
|
|
background: linear-gradient(to right, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 255) 100%);
|
|
display: block;
|
|
height: 100%;
|
|
width: 10%;
|
|
border: none;
|
|
cursor: default;
|
|
border-radius: 0;
|
|
}
|
|
|
|
.leftScrollButton {
|
|
left: 0;
|
|
transform: scaleX(-1);
|
|
}
|
|
|
|
.rightScrollButton {
|
|
right: 0;
|
|
} |