mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-05-19 20:21:49 +00:00
71 lines
No EOL
1.7 KiB
Text
71 lines
No EOL
1.7 KiB
Text
.videos-list-container {
|
|
--scroll-container-width: 392px;
|
|
--seasons-bar-height: 50px;
|
|
--spacing: 8px;
|
|
}
|
|
|
|
.videos-list-container {
|
|
height: 100%;
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
background: var(--color-background);
|
|
|
|
.seasons-bar {
|
|
height: var(--seasons-bar-height);
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-bottom: var(--spacing);
|
|
|
|
.button-container {
|
|
width: calc(1.5 * var(--seasons-bar-height));
|
|
cursor: pointer;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
.button-icon {
|
|
width: 60%;
|
|
height: 60%;
|
|
fill: var(--color-surfacelighter);
|
|
}
|
|
|
|
&:hover {
|
|
background-color: var(--color-surfacelighter20);
|
|
}
|
|
}
|
|
}
|
|
|
|
.scroll-container {
|
|
flex: 1;
|
|
position: relative;
|
|
width: var(--scroll-container-width);
|
|
margin: 0 var(--spacing);
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
|
|
.videos-list {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
padding: 0 calc(2 * var(--spacing));
|
|
|
|
>:not(:first-child) {
|
|
margin-top: var(--spacing);
|
|
}
|
|
}
|
|
}
|
|
|
|
.scroll-container::-webkit-scrollbar {
|
|
width: var(--spacing);
|
|
}
|
|
|
|
.scroll-container::-webkit-scrollbar-thumb {
|
|
background-color: var(--color-secondarylighter80);
|
|
}
|
|
|
|
.scroll-container::-webkit-scrollbar-track {
|
|
background-color: var(--color-background);
|
|
}
|
|
} |