98 lines
1.7 KiB
CSS
98 lines
1.7 KiB
CSS
/* This file is reserved for the menu style */
|
|
|
|
#menu{
|
|
background-color: #131415;
|
|
position: absolute;
|
|
top:0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: -1;
|
|
}
|
|
|
|
#menu * {
|
|
color: #EAEAEA;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
#menu h1{
|
|
position: absolute;
|
|
top:10%;
|
|
left:50%;
|
|
transform: translate(-50%,-50%);
|
|
font-size: 3em;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
color: #EAEAEA;
|
|
}
|
|
|
|
#menu h2{
|
|
position: absolute;
|
|
top: calc( 10% + 3em );
|
|
left:50%;
|
|
transform: translate(-50%,-50%);
|
|
}
|
|
|
|
#menu button{
|
|
position: absolute;
|
|
top: 80%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
padding-left: 50px;
|
|
padding-right: 50px;
|
|
padding-top: 15px;
|
|
padding-bottom: 15px;
|
|
border-radius: 8px;
|
|
border: 2px #4f5c69 solid;
|
|
background-color: #2E86AB;
|
|
font-size: 1.5em;
|
|
}
|
|
#menu button:hover{
|
|
background-color: #46aad4;
|
|
border: 4px #4f5c69 solid;
|
|
}
|
|
|
|
#settings{
|
|
position: absolute;
|
|
top: 30%;
|
|
left: 15%;
|
|
right: 15%;
|
|
min-height: 30%;
|
|
max-height: 40%;
|
|
/*border: red dotted 2px;*/
|
|
display: flex;
|
|
}
|
|
#settings div{
|
|
flex: auto;
|
|
margin: 10px;
|
|
}
|
|
/*#settings #quality{
|
|
border: green dotted 2px;
|
|
}
|
|
#settings #language{
|
|
border: yellow dotted 2px;
|
|
}*/
|
|
|
|
#quality label{
|
|
margin-top:20px;
|
|
}
|
|
#quality label,select{
|
|
margin-left: 50%;
|
|
transform: translateX(-50%);
|
|
display: inline-block;
|
|
}
|
|
#quality-select{
|
|
margin-top:5px;
|
|
font-size: 1em;
|
|
background-color: #1d3a5c;
|
|
border: 1px solid #1d3a5c;
|
|
outline: none;
|
|
border-radius: 5px;
|
|
width: 50%;
|
|
max-width: 200px;
|
|
padding: 8px;
|
|
cursor: pointer;
|
|
}
|
|
#quality-select option{
|
|
padding: 8px;
|
|
background-color: #1d3a5c;
|
|
} |