frontend/wbwwb/css/game.css
skysthelimitt 08f1f45e0c games
2023-10-30 21:37:14 -04:00

59 lines
913 B
CSS

@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
src: url('Poppins-Medium.ttf') format('truetype');
}
html, body{
width: 100%;
height: 100%;
}
body{
font-family: 'Poppins';
margin: 0;
background: #222;
position:relative;
}
#stage{
background: #000;
width:960px; height:540px;
position:absolute;
margin:auto;
top:0; left:0; right:0; bottom:0;
cursor: none;
}
.overlay{
display: none;
text-align: center;
color: #fff;
letter-spacing: 1px;
width:500px; height:170px;
position:absolute;
margin:auto;
top:0; left:0; right:0; bottom:0;
}
.overlay > div:nth-child(1){
font-size: 100px;
line-height: 100px;
}
.overlay > div:nth-child(2){
font-size: 20px;
}
#modal_shade{
display: none;
background: rgba(0,0,0,0.8);
width:960px; height:540px;
position:absolute;
margin:auto;
top:0; left:0; right:0; bottom:0;
cursor: pointer;
}
#paused{
cursor: pointer;
}