taiko-web/public/src/css/game.css

105 lines
1.6 KiB
CSS
Raw Normal View History

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