html, body, .scene {
min-height: 100%;
height: 100%;
color: #eee;
background-color: #000;
font-family: sans-serif;
}
.hidden-scene {
display: none;
}
.hidden-modal {
display: none;
}
a {
color: #8888FF;
text-decoration: none;
}
a:visited {
color: #8888DD;
}
a:hover {
color: #AAAAEE;
}
a:hover {
text-shadow: 0px 0px 5px #eeeeff;
text-decoration: none;
}
#pick {
text-align: center;
}
#pick-blurb {
font-size: 24px;
}
#game-select {
user-select: none;
font-size: 32px;
background-color: #111;
color: #eee;
border: 1px solid #333;
width: 200px;
height: 50px;
}
#start-button {
user-select: none;
width: 200px;
height: 100px;
background-color: #111;
border: 1px solid #333;
font-size: 48px;
color: #eee;
}
.modal {
position: fixed;
z-index: 1;
height: 100%;
width: 100%;
left: 0;
top: 0;
background-color: rgba(0,0,0,0.5);
text-align: center;
display: flex;
justify-content: center;
align-content: center;
align-items: center;
}
.modal-content {
display: flex;
flex-direction: column;
justify-content: center;
align-content: center;
position: relative;
flex-wrap: nowrap;
text-align: center;
width: 300px;
padding: 100px;
background-color: rgba(0, 0, 0, 0.9);
}
.menu-header {
width: 100%;
height: 75px;
font-size: 48px;
}
.menu-button {
width: 100%;
height: 50px;
background-color: #111;
border: 1px solid #333;
font-size: 24px;
color: #eee;
}
.menu-button:active {
background-color: #222;
}
.menu-button:focus {
outline: 0px;
}
.menu-slider {
background: #555;
width: 100%;
height: 50px;
}
.menu-label {
width: 100%;
height: 25px;
font-size: 36px;
}
#info-area {
position: relative;
display: flex;
height: 60%;
}
#log {
background: #000000;
flex: 4;
padding: 25px;
font-size: 24px;
max-width: 50%;
overflow: auto;
}
.sidebar {
background: #111111;
padding: 25px;
flex: 1;
display: flex;
flex-direction: column;
font-size: 24px;
}
#game-menu {
margin: 10px;
background: #222;
flex: 2;
}
.game-menu-button {
height: 100%;
width: 50%;
user-select: none;
background-color: #111;
border: 1px solid #333;
font-size: 48px;
color: #eee;
}
#world-info {
margin: 10px;
background: #222;
flex: 5;
}
#player-info {
margin: 10px;
background: #222;
flex: 5;
}
.info-header {
font-size: 36px;
text-align: center;
}
#control-area {
display: flex;
min-height: 40%;
max-height: 40%;
}
@media (min-aspect-ratio: 1/1) {
#actions {
flex-wrap: wrap;
}
}
#actions {
position: relative;
flex-direction: column;
align-items: center;
display: flex;
padding: 25px;
font-size: 24px;
background: #111;
flex: 1;
max-height: 100%;
}
.action-button {
flex: 0 0 50px;
width: 250px;
background-color: #888;
color: #eee;
margin: 5px;
font-size: 24px;
}
#desc {
padding: 25px;
font-size: 18px;
background: #222;
flex: 1;
}
#moves {
padding: 25px;
position: relative;
background: #111;
flex: 1;
}
#move-holder {
position: absolute;
left: 50%;
margin-left: -100px;
top: 5%;
}
@media (max-aspect-ratio: 1/1) {
.move-button {
width: 100px;
height: 100px;
}
}
@media (min-aspect-ratio: 1/1) {
.move-button {
width: 200px;
height: 50px;
}
}
.move-button {
user-select: none;
background-color: #888;
color: #eee;
border-radius: 5px;
font-size: 24px;
}
.move-button:focus {
outline: 0px;
}
.disabled {
background-color: #444;
border: none;
}
#move-up-left {
position: absolute;
left: -140px;
top: 60px;
}
#move-up {
position: absolute;
left: 0px;
top: 0px;
}
#move-up-right {
position: absolute;
left: 140px;
top: 60px;
}
#move-left {
position: absolute;
left: -200px;
top: 120px;
}
#move-right {
position: absolute;
left: 200px;
top: 120px;
}
#move-down-left {
position: absolute;
left: -140px;
top: 180px;
}
#move-down {
position: absolute;
left: 0px;
top: 240px;
}
#move-down-right {
position: absolute;
left: 140px;
top: 180px;
}
#move-ascend {
position: absolute;
left: -200px;
top: 300px;
}
#move-descend {
position: absolute;
left: 200px;
top: 300px;
}
#area-name {
font-size: 36px;
}
#log::-webkit-scrollbar {
width: 3px;
height: 2px;
}
#log::-webkit-scrollbar-button {
width: 0px;
height: 0px;
}
#log::-webkit-scrollbar-thumb {
background: #e1e1e1;
border: 0px none #ffffff;
border-radius: 50px;
}
#log::-webkit-scrollbar-thumb:hover {
background: #ffffff;
}
#log::-webkit-scrollbar-thumb:active {
background: #000000;
}
#log::-webkit-scrollbar-track {
background: #666666;
border: 0px none #ffffff;
border-radius: 50px;
}
#log::-webkit-scrollbar-track:hover {
background: #666666;
}
#log::-webkit-scrollbar-track:active {
background: #333333;
}
#log::-webkit-scrollbar-corner {
background: transparent;
}