Files
jellyfin-web/src/plugins/bookPlayer/style.scss
T
2021-09-04 10:51:56 -04:00

54 lines
807 B
SCSS

#bookPlayer {
position: relative;
height: 100%;
width: 100%;
overflow: auto;
z-index: 100;
background: #fff;
display: flex;
flex-direction: column;
.topButtons {
z-index: 1002;
width: 100%;
color: #000;
opacity: 0.7;
}
.bookPlayerContainer {
flex-grow: 1;
}
#btnBookplayerToc {
float: left;
margin-left: 2vw;
}
#btnBookplayerExit {
float: right;
margin-right: 2vw;
}
.bookplayerErrorMsg {
text-align: center;
}
#btnBookplayerPrev,
#btnBookplayerNext {
margin: 0.5vh 0.5vh;
}
}
#dialogToc {
background-color: white;
.bookplayerButtonIcon {
color: black;
}
.toc li {
margin-bottom: 5px;
}
}