You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

125 lines
2.0 KiB

2 years ago
a:link, a:hover, a:active, a:visited{color: #000;}
html, body{margin: 0; padding: 0; height: 100%; width: 100%;}
canvas{margin: 0; padding: 0; border: none; display: block;}
button:hover{cursor: pointer;}
@font-face{
font-family: "Rametto";
src: url("data/styles/font.ttf");
}
*{
font-family: "Rametto";
}
#canvasHolder{
position: absolute;
width: 100%;
height: 100%;
}
#messageWrapper{
position: absolute;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
z-index: 1;
}
#message{
position: absolute;
top: 50%;
transform: translateY(-50%);
width: 700px;
left: 0;
right: 0;
margin: auto;
background-color: rgb(130, 130, 130);
border: 10px solid;
border-radius: 50px;
text-align: center;
align-content: center;
}
#message p{
margin: 100px;
font-size: 35px;
}
#message button{
margin: 20px;
margin-bottom: 50px;
font-size: 35px;
border: 5px solid #000;
border-radius: 10px;
}
#menuOpener{
position: absolute;
left: 0;
top: 0;
bottom: 0;
margin: auto;
height: 100px;
width: 20px;
background-color: rgb(70, 70, 70);
border-radius: 0 20px 20px 0;
border: 3px solid #000;
border-left: none;
}
#menuOpener:hover{
background-color: rgb(50, 50, 50);
cursor: pointer;
}
#menu{
position: absolute;
top: 50%;
transform: translateY(-50%);
left: -450px;
width: 400px;
background-color: rgb(90, 90, 90);
border-radius: 0 20px 20px 0;
border: 10px solid #000;
border-left: none;
padding: 20px;
text-align: center;
}
#menu button{
margin-bottom: 20px;
width: 100%;
background-color: rgb(160, 200, 100);
border: 2px solid #000;
border-radius: 5px;
font-size: 30px;
}
#menu button:last-child{
margin-bottom: 0px;
}
#menu button:hover{
background-color: rgb(80, 190, 40);
}
#creditsTableWrapper{
margin: 20px;
height: 500px;
overflow-x: auto;
overflow-y: auto;
}
#creditsTable{
border-collapse: collapse;
margin: 0px auto;
}
#creditsTable, #creditsTable th, #creditsTable td{
border: 2px solid #0091a3;
padding: 5px;
font-size: 20px;
border-left: none;
border-right: none;
}
#creditsTable th{
font-size: 25px;
}