@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Source+Serif+Pro:ital,wght@0,400;0,700;1,400&display=swap'); body { color: #ddd; background-color: #1a1a1a; font-family: 'Lato', sans-serif; user-select: none; margin: 0; padding: 0; } div#main { height: calc(100vh - 2*2px); width: calc(100vw - 2*2px); margin: 2px; display: grid; grid-template-columns: min-content 2fr; grid-template-rows: min-content 1fr; grid-template-areas: "keypad settings-bar" "keypad match"; } div#keypad { grid-area: keypad; font-size: 2vh; width: clamp(54vh, 30vw, 60vh); display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: min-content 2fr; grid-auto-rows: 1fr; } div#oi { font-size: 2em; display: flex; align-items: center; justify-content: center; } div#user-rem, div#boat-rem { background-color: #333; font-size: 1.5em; margin: 2px; padding: 0.4rem; display: flex; align-items: center; justify-content: left; } div#boat-rem { grid-column: 3; justify-content: right; } div#user-rem.active, div#boat-rem.active { background-color: #240; } div#prompt-container { grid-column: 1 / span 3; background-color: #333; margin: 2px; display: grid; grid-template-rows: 1fr 3fr 1fr; grid-template-columns: 1fr; } div#prompt-msg, div#prompt, div#prompt-sugg { font-size: 1.5em; display: grid; align-items: center; justify-content: center; } div#prompt { font-size: 5em; } div#prompt-sugg { color: #aaa; } div.key { color: #aaa; background-color: #282828; font-size: 1.5em; margin: 2px; display: flex; align-items: center; justify-content: center; } @media (hover: hover) and (pointer: fine) { div.key:hover { background-color: #240; } } div.key:active { color: #fff; background-color: #360; } div.key.num { font-size: 2.5em; font-weight: 700; } div#settings-bar { grid-area: settings-bar; background-color: #333; font-size: 2vh; margin: 2px; padding: 0.4rem; display: flex; align-items: center; justify-content: left; gap: 0.4rem; } div#settings-bar div { font-size: 1.5em; } div#settings-bar div.input.first { margin-left: auto; } div#settings-bar div.input { background-color: #282828; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; } div#settings-bar span { padding: 0 0.4rem; } div#settings-bar input { color: #ddd; background-color: #304; font-family: inherit; font-size: 1em; text-align: right; width: 4ch; padding: 0 0.4rem; border: 0; } div#settings-bar div.help-button { background-color: #304; font-weight: bold; padding: 0 0.4em; } @media (hover: hover) and (pointer: fine) { div#settings-bar input:hover { background-color: #608; } div#settings-bar div.help-button:hover { background-color: #608; } } div#settings-bar input#stdev:focus { color: #fff; background-color: #80a; } div#settings-bar div.help-button:active { color: #fff; background-color: #80a; } div#settings-bar input#stdev:focus { outline: #5a0 solid 3px; } div#match { grid-area: match; background-color: #333; font-size: 2vh; overflow-y: scroll; margin: 2px; padding: 0.4rem; display: grid; grid-template-columns: repeat(6, max-content); grid-auto-rows: min-content; grid-row-gap: 0.3em; grid-column-gap: 1.5em; } div#match div { font-size: 1.5em; font-family: monospace; white-space: pre; min-width: 3ch; display: flex; align-items: center; justify-content: center; } div#match .user-name { color: #aaa; background-color: #444; grid-column: 2 / span 2; justify-content: center; } div#match .boat-name { color: #aaa; background-color: #444; grid-column: 4 / span 2; justify-content: center; } div#match .visit-no { color: #888; grid-column: 1; } div#match .p0 { color: #f00; font-weight: bold; } div#match .p1 { color: #f00; } div#match .p20 { color: #f60; } div#match .p40 { color: #fa0; } div#match .p60 { color: #dd0; } div#match .p100 { color: #2c2; } div#match .p140 { color: #0f0; } div#match .p180 { color: #0f0; font-weight: bold; } div#match .darts { color: #888; justify-content: left; } .modal { background-color: rgba(0, 0, 0, 0.6); width: 100%; height: 100%; display: none; position: fixed; top: 0; left: 0; z-index: 1; } .modal-content { background-color: #333; font-size: 1.4em; font-family: 'Source Serif Pro', serif; width: calc(min(40em, 90vw) - 4em); max-height: calc(calc(100vh - 10vw) - 4em); margin: 5vw auto; padding: 2em; outline: #5a0 solid 3px; overflow: scroll; } @media (max-width: 400px) { .modal-content { font-size: 1em; } } .modal-content p { margin: 0; } .modal-content p + p { margin-top: 1em; } a { color: #5a0; } a:hover { color: #7d0; } @media (max-aspect-ratio: 1/1) { div#main { grid-template-columns: 1fr; grid-template-rows: min-content 1fr 3fr; grid-template-areas: "settings-bar" "match" "keypad"; } div#keypad, div#match, div#settings-bar { font-size: clamp(1.5vh, 2vw, 2vh); } div#keypad { width: auto; } } /* @media (max-aspect-ratio: 3/5) { div#settings-bar div.input { display: flex; flex-direction: column; } div#settings-bar span { padding: 0 0.4rem; } div#settings-bar .help-button { font-size: 3em; } } */