You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.0 KiB
CSS

body {
color: #ffffff;
font-family: 'Courier New', monospace;
}
.stv-blurimagemask {
opacity: 0.5;
}
.stv-blurimagemask > img {
filter: blur(2px);
-webkit-filter: blur(2px);
-moz-filter: blur(2px);
-o-filter: blur(2px);
-ms-filter: blur(2px);
}
.stv-playlist {
overflow: scroll hidden;
-ms-overflow-style: none;
scrollbar-width: none;
flex-flow: row;
}
.stv-main-grid {
display: grid;
grid-template-areas:
"player player clients"
"player player clients"
"playlist playlist clients";
}
.stv-main-grid > .stv-player-grid {
min-height: 721px;
min-width: 1422px;
padding-left: 128px;
margin-bottom: 40px;
grid-area: player;
}
.stv-main-grid > .stv-clients-grid {
padding-right: 20px;
text-align: end;
grid-area: clients;
}
.stv-main-grid > .stv-playlist-grid {
padding-left: 128px;
min-width: 1422px;
grid-area: playlist;
}
#playlist > div > div.card-img-overlay.p-2 > h5 > a {
color: white;
text-decoration: none;
}