|
- html, body, .scene {
- min-height: 100%;
- height: 100%;
- color: #eee;
- background-color: #333;
- font-family: sans-serif;
- }
-
- #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;
- }
-
- #menu {
- margin: 10px;
- background: #222;
- flex: 2;
- }
-
- #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;
- }
|