blob: 7985f25f0a3226073616679c13fd2d03395795e9 (
plain) (
tree)
|
|
#playlist{
margin:0;
padding:1.25em;
display:block;
font-size:100%;
transition:opacity 0.5s;
overflow-y:auto;
height:90vh;
list-style-type:none;
}
#helpoverlay{
top:0;
left:0;
width:100%;
height:100%;
position:fixed;
z-index:99999999;
background-color:rgba(0,0,0,0.6);
opacity:0;
color:#FFF;
display:none;
transition:opacity 0.3s;
}
#overlay{
top:0;
left:0;
width:100%;
height:100%;
position:fixed;
z-index:99999999;
background-color:rgba(0,0,0,0.4);
color:#FFF;
}
#overlaytext{
position:absolute;
left:50%;
top:50%;
transform:translateXY(-50%,-50%);
}
#notes{
bottom:0;
right:0;
position:absolute;
width:min(80%,480px);
height:min(80%,300px);
z-index:9;
background-color:rgba(0,0,0,0.6);
transition:opacity 0.3s;
opacity:0;
color:#FFF;
margin:1em;
padding:1em;
}
#ntext{
overflow:auto scroll;
height:calc(100% - 1em);
white-space:pre-wrap;
}
.switches{text-align:center;width:100%;padding:0.25em 0 0.25em 0;}
.centered-audio{text-align:center;width:100%;}
canvas#cvs{width:100%;height:100%;}
a.listitem{padding-left:160px !important;margin-left:-160px;}
div#cvsdiv{
position: absolute;
width: calc(100% - 16.5em);
height: calc(100% - 9.6em);
top: 0;
z-index: -1;
}
@media (max-width:768px)
{
div#cvsdiv{width:calc(100% - 1.5em);}
}
ul#plists
{
list-style-type:none;
}
|