2020-12-03 23:27:32 +00:00
|
|
|
html{
|
2021-06-15 02:27:43 +00:00
|
|
|
background-image: url('../../static/backgrounds/grass/grass-0007-large.png');
|
2020-12-03 23:27:32 +00:00
|
|
|
background-repeat: repeat;
|
|
|
|
background-size: 650px 650px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#player-settings{
|
|
|
|
max-width: 1000px;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
background-color: rgba(0, 0, 0, 0.15);
|
|
|
|
border-radius: 8px;
|
|
|
|
padding: 1rem;
|
|
|
|
color: #eeffeb;
|
|
|
|
}
|
|
|
|
|
2020-12-04 05:40:57 +00:00
|
|
|
#player-settings #player-settings-button-row{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: space-between;
|
|
|
|
margin-top: 15px;
|
|
|
|
}
|
|
|
|
|
2020-12-03 23:27:32 +00:00
|
|
|
#player-settings code{
|
|
|
|
background-color: #d9cd8e;
|
|
|
|
border-radius: 4px;
|
|
|
|
padding-left: 0.25rem;
|
|
|
|
padding-right: 0.25rem;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
2021-05-14 01:33:56 +00:00
|
|
|
#player-settings #user-message{
|
|
|
|
display: none;
|
|
|
|
width: calc(100% - 8px);
|
|
|
|
background-color: #ffe86b;
|
|
|
|
border-radius: 4px;
|
|
|
|
color: #000000;
|
|
|
|
padding: 4px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#player-settings #user-message.visible{
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2020-12-03 23:27:32 +00:00
|
|
|
#player-settings h1{
|
|
|
|
font-size: 2.5rem;
|
|
|
|
font-weight: normal;
|
|
|
|
border-bottom: 1px solid #ffffff;
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
color: #ffffff;
|
|
|
|
text-shadow: 1px 1px 4px #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#player-settings h2{
|
|
|
|
font-size: 2rem;
|
|
|
|
font-weight: normal;
|
|
|
|
border-bottom: 1px solid #ffffff;
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 0.5rem;
|
|
|
|
color: #ffe993;
|
|
|
|
text-transform: lowercase;
|
|
|
|
text-shadow: 1px 1px 2px #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
#player-settings h3, #player-settings h4, #player-settings h5, #player-settings h6{
|
|
|
|
color: #ffffff;
|
|
|
|
text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
|
|
|
|
}
|
|
|
|
|
|
|
|
#player-settings a{
|
|
|
|
color: #ffef00;
|
|
|
|
}
|
|
|
|
|
|
|
|
#player-settings input:not([type]){
|
|
|
|
border: 1px solid #000000;
|
|
|
|
padding: 3px;
|
|
|
|
border-radius: 3px;
|
|
|
|
min-width: 150px;
|
|
|
|
}
|
|
|
|
|
2020-12-04 10:30:03 +00:00
|
|
|
#player-settings input:not([type]):focus{
|
|
|
|
border: 1px solid #ffffff;
|
|
|
|
}
|
|
|
|
|
2020-12-03 23:27:32 +00:00
|
|
|
#player-settings select{
|
|
|
|
border: 1px solid #000000;
|
|
|
|
padding: 3px;
|
|
|
|
border-radius: 3px;
|
|
|
|
min-width: 150px;
|
2020-12-05 20:37:31 +00:00
|
|
|
background-color: #ffffff;
|
2020-12-03 23:27:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#player-settings #game-options, #player-settings #rom-options{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
}
|
|
|
|
|
2020-12-04 05:40:57 +00:00
|
|
|
#player-settings .left, #player-settings .right{
|
2020-12-03 23:27:32 +00:00
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#player-settings table select{
|
|
|
|
width: 250px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#player-settings table label{
|
2020-12-04 05:40:57 +00:00
|
|
|
display: block;
|
|
|
|
min-width: 200px;
|
2020-12-03 23:27:32 +00:00
|
|
|
margin-right: 4px;
|
2020-12-04 05:40:57 +00:00
|
|
|
cursor: default;
|
2020-12-03 23:27:32 +00:00
|
|
|
}
|
|
|
|
|
2020-12-05 20:37:31 +00:00
|
|
|
@media all and (max-width: 1000px), all and (orientation: portrait){
|
2020-12-03 23:27:32 +00:00
|
|
|
#player-settings #game-options, #player-settings #rom-options{
|
|
|
|
justify-content: flex-start;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
}
|
|
|
|
|
|
|
|
#player-settings .left, #player-settings .right{
|
|
|
|
flex-grow: unset;
|
|
|
|
}
|
|
|
|
|
|
|
|
#game-options table label, #rom-options table label{
|
|
|
|
display: block;
|
|
|
|
min-width: 200px;
|
|
|
|
}
|
|
|
|
}
|