2015-07-17 16:22:46 +08:00
|
|
|
#game{
|
2018-09-18 21:59:40 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2018-10-25 22:18:41 +08:00
|
|
|
position: absolute;
|
2015-07-17 16:22:46 +08:00
|
|
|
overflow: hidden;
|
2018-09-18 21:59:40 +08:00
|
|
|
background-size: cover;
|
2018-10-25 22:18:41 +08:00
|
|
|
background-position: center;
|
2015-07-17 16:22:46 +08:00
|
|
|
}
|
2018-09-27 09:04:01 +08:00
|
|
|
#game.default-bg{
|
2018-09-27 23:31:57 +08:00
|
|
|
background-size: calc(100vh / 720 * 512);
|
2018-09-27 09:04:01 +08:00
|
|
|
}
|
2015-07-17 16:22:46 +08:00
|
|
|
#canvas{
|
2018-09-18 21:59:40 +08:00
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2015-07-17 16:22:46 +08:00
|
|
|
}
|
|
|
|
#pause-menu{
|
2018-09-18 21:59:40 +08:00
|
|
|
display: none;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
background: rgba(0, 0, 0, 0.75);
|
|
|
|
z-index: 5;
|
2015-07-17 16:22:46 +08:00
|
|
|
}
|
|
|
|
#pause-menu button{
|
|
|
|
width: 90%;
|
|
|
|
height: 25%;
|
|
|
|
display: block;
|
2018-09-09 12:09:15 +08:00
|
|
|
margin: 0 auto;
|
2015-07-17 16:22:46 +08:00
|
|
|
cursor: pointer;
|
2018-09-09 12:09:15 +08:00
|
|
|
border:.5vmin solid #ae7a26;
|
2018-09-18 21:59:40 +08:00
|
|
|
background: #fff;
|
|
|
|
color: #000;
|
2018-10-13 02:21:21 +08:00
|
|
|
font-family: TnT, Meiryo, sans-serif;
|
2018-09-09 12:09:15 +08:00
|
|
|
font-size: 3.5vmin;
|
|
|
|
border-radius: 1.5vmin;
|
2018-09-27 04:06:14 +08:00
|
|
|
outline: none;
|
2015-07-17 16:22:46 +08:00
|
|
|
}
|
2018-09-27 02:30:57 +08:00
|
|
|
#pause-menu button:hover,
|
2018-09-27 04:06:14 +08:00
|
|
|
#pause-menu .window:not(:hover) button.selected{
|
2018-09-18 21:59:40 +08:00
|
|
|
color:white;
|
|
|
|
background:#0c6577;
|
2018-09-27 02:30:57 +08:00
|
|
|
border-color:#fa5d3a;
|
|
|
|
}
|
2018-09-18 21:59:40 +08:00
|
|
|
#cursor{
|
|
|
|
position: fixed;
|
|
|
|
width: 1px;
|
|
|
|
height: 1px;
|
|
|
|
cursor: none;
|
|
|
|
pointer-events: none;
|
|
|
|
z-index: 1;
|
2015-07-17 16:22:46 +08:00
|
|
|
}
|
2018-10-06 21:24:23 +08:00
|
|
|
#touch-drum{
|
2018-10-06 01:03:59 +08:00
|
|
|
display: none;
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
2018-10-06 21:24:23 +08:00
|
|
|
width: 50%;
|
2018-10-06 01:03:59 +08:00
|
|
|
height: 50%;
|
|
|
|
text-align: center;
|
|
|
|
margin: auto;
|
2018-10-13 02:04:28 +08:00
|
|
|
overflow: hidden;
|
2018-10-06 01:03:59 +08:00
|
|
|
}
|
2018-10-06 21:24:23 +08:00
|
|
|
#touch-drum-img{
|
2018-10-06 01:03:59 +08:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
#touch-buttons{
|
|
|
|
display: none;
|
|
|
|
position: absolute;
|
2018-10-25 22:18:41 +08:00
|
|
|
top: 8vh;
|
2018-10-06 01:03:59 +08:00
|
|
|
right: 2vh;
|
|
|
|
opacity: 0.5;
|
|
|
|
z-index: 5;
|
|
|
|
}
|
|
|
|
#touch-buttons img{
|
2018-10-06 21:24:23 +08:00
|
|
|
width: 12.5vmin;
|
|
|
|
height: 12.5vmin;
|
2018-10-06 01:03:59 +08:00
|
|
|
}
|
2018-10-25 22:18:41 +08:00
|
|
|
.portrait #touch-buttons{
|
|
|
|
top: 11vh;
|
|
|
|
}
|
|
|
|
.touchp2 #touch-buttons{
|
|
|
|
top: -1.9vh;
|
|
|
|
}
|
2018-10-06 21:24:23 +08:00
|
|
|
.touch-visible #touch-drum,
|
2018-10-06 01:03:59 +08:00
|
|
|
.touch-visible #touch-buttons{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
.touch-visible .window{
|
|
|
|
width: 80vmin;
|
|
|
|
height: 53vmin;
|
|
|
|
}
|
|
|
|
.touch-visible #pause-menu .window button{
|
|
|
|
font-size: 5vmin;
|
|
|
|
}
|
|
|
|
.touch-visible #pause-menu .window button.selected{
|
|
|
|
color: #000;
|
|
|
|
background: #fff;
|
|
|
|
border-color: #ae7a26;
|
|
|
|
}
|