Fix drumroll, pressed keys, pause menu, hide cursor

This commit is contained in:
LoveEevee
2018-09-18 16:59:40 +03:00
parent 0a62088d62
commit 772dac579f
8 changed files with 118 additions and 82 deletions

View File

@@ -1,46 +1,48 @@
#game{
width:100%;
height:100%;
width: 100%;
height: 100%;
overflow: hidden;
background-size:cover;
background-size: cover;
}
#canvas{
position:relative;
z-index:1;
width:100%;
height:100%;
position: relative;
z-index: 1;
width: 100%;
height: 100%;
}
#pause-menu{
display:none;
width:100%;
height:100%;
position:absolute;
top:0;
left:0;
background:rgba(0,0,0,0.75);
z-index: 5;
display: none;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.75);
z-index: 5;
}
#pause-menu button{
width: 90%;
height: 25%;
display: block;
margin: 0 auto;
cursor: pointer;
border:.5vmin solid #ae7a26;
background: rgb(255, 255, 255);
color: black;
background: #fff;
color: #000;
font-family: TnT;
font-size: 3.5vmin;
border-radius: 1.5vmin;
}
#pause-menu button:hover{
border-color:#fa5d3a;
color:white;
background:#0c6577;
color:white;
background:#0c6577;
}
#cursor{
position: fixed;
width: 1px;
height: 1px;
cursor: none;
pointer-events: none;
z-index: 1;
}