2015-07-17 16:22:46 +08:00
|
|
|
#game{
|
2018-09-18 21:59:40 +08:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2015-07-17 16:22:46 +08:00
|
|
|
overflow: hidden;
|
2018-09-18 21:59:40 +08:00
|
|
|
background-size: cover;
|
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;
|
2015-07-17 16:22:46 +08:00
|
|
|
font-family: TnT;
|
2018-09-09 12:09:15 +08:00
|
|
|
font-size: 3.5vmin;
|
|
|
|
border-radius: 1.5vmin;
|
2015-07-17 16:22:46 +08:00
|
|
|
}
|
2018-09-27 02:30:57 +08:00
|
|
|
#pause-menu button:hover,
|
|
|
|
#pause-menu button.selected{
|
2018-09-18 21:59:40 +08:00
|
|
|
color:white;
|
|
|
|
background:#0c6577;
|
|
|
|
}
|
2018-09-27 02:30:57 +08:00
|
|
|
#pause-menu button:hover{
|
|
|
|
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
|
|
|
}
|