/* ┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
 * ┃ ██████ ██████ ██████       █      █      █      █      █ █▄  ▀███ █       ┃
 * ┃ ▄▄▄▄▄█ █▄▄▄▄▄ ▄▄▄▄▄█  ▀▀▀▀▀█▀▀▀▀▀ █ ▀▀▀▀▀█ ████████▌▐███ ███▄  ▀█ █ ▀▀▀▀▀ ┃
 * ┃ █▀▀▀▀▀ █▀▀▀▀▀ █▀██▀▀ ▄▄▄▄▄ █ ▄▄▄▄▄█ ▄▄▄▄▄█ ████████▌▐███ █████▄   █ ▄▄▄▄▄ ┃
 * ┃ █      ██████ █  ▀█▄       █ ██████      █      ███▌▐███ ███████▄ █       ┃
 * ┣━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┫
 * ┃ Copyright (c) 2017, the Perspective Authors.                              ┃
 * ┃ ╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌ ┃
 * ┃ This file is part of the Perspective library, distributed under the terms ┃
 * ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
 * ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
 */

body {
    background: #242526;
    color: white;
    font-family: "ui-monospace", "SFMono-Regular", "SF Mono", "Menlo",
        "Consolas", "Liberation Mono", monospace;
    touch-action: none;
}

* {
    box-sizing: border-box;
}

#app {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

#header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

#header a {
    display: inline-flex;
}

perspective-viewer {
    border-top: 1px solid #666;
    flex: 1 1 auto;
}

label {
    height: 32px;
    font-size: 12px;
    padding: 6px 0px;
    margin-right: 4px;
    margin-left: 14px;
    margin-top: 8px;
    margin-bottom: 8px;
    border: 1px solid transparent;
}

img {
    vertical-align: middle;
    margin-left: 14px;
}

select,
button {
    font-family: "ui-monospace", "SFMono-Regular", "SF Mono", "Menlo",
        "Consolas", "Liberation Mono", monospace;
    font-size: 12px;
    appearance: none;
    background-color: transparent;
    border: 1px solid #666;
    border-radius: 2px;
    padding: 6px 10px;
    color: #f4f5f6;
    cursor: pointer;
    margin-right: 4px;
    margin-left: 4px;
    outline: none;
    user-select: none;
    height: 32px;
    margin-top: 8px;
    margin-bottom: 8px;
}

select:hover,
button:hover {
    color: #242526;
    background-color: #f4f5f6;
    border-color: #f4f5f6;
}
