60 lines
902 B
CSS
60 lines
902 B
CSS
|
body {
|
||
|
background: #F9FE88;
|
||
|
margin: 0;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
canvas {
|
||
|
height: 100vh;
|
||
|
width: 100vw;
|
||
|
touch-action: none;
|
||
|
}
|
||
|
.osc {
|
||
|
left: 0px;
|
||
|
position: fixed;
|
||
|
top: 0px;
|
||
|
}
|
||
|
|
||
|
.button {
|
||
|
position: fixed;
|
||
|
z-index: 10;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
}
|
||
|
.controls {
|
||
|
position: fixed;
|
||
|
z-index: 10;
|
||
|
left: 0;
|
||
|
bottom: 0;
|
||
|
}
|
||
|
.playpause {
|
||
|
background: #AAB;
|
||
|
padding: 10px;
|
||
|
}
|
||
|
.playpause label {
|
||
|
display: block;
|
||
|
box-sizing: border-box;
|
||
|
|
||
|
width: 0;
|
||
|
height: 20px;
|
||
|
|
||
|
cursor: pointer;
|
||
|
|
||
|
border-color: transparent transparent transparent #202020;
|
||
|
transition: 100ms all ease;
|
||
|
will-change: border-width;
|
||
|
|
||
|
border-style: double;
|
||
|
border-width: 0px 0 0px 20px;
|
||
|
}
|
||
|
.playpause input[type='checkbox'] {
|
||
|
visibility: hidden;
|
||
|
}
|
||
|
.playpause.checked label {
|
||
|
border-style: double;
|
||
|
border-width: 0px 0 0px 20px;
|
||
|
}
|
||
|
.playpause label {
|
||
|
border-style: solid;
|
||
|
border-width: 10px 0 10px 20px;
|
||
|
}
|
||
|
/* } */
|