/*  
    SQL Site Test
    Dash F
    04/12/23
*/

/* roboto, roboto slab, and roboto mono fonts  */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100;0,300;0,600;1,100;1,300;1,600&family=Roboto+Slab:wght@100;300;500;700&family=Roboto:ital,wght@0,100;0,300;0,500;0,900;1,100;1,300;1,500;1,900&display=swap');

/* font-family: 'Roboto Mono', monospace; */

:root {
    --background-grey: rgb(22, 22, 22);
    --light-dark-grey: rgb(22, 22, 22);
    --title-yellow: orange;
    --subtitle-grey: rgb(219, 219, 219);
    --text: white;
    --button: rgb(53, 53, 53);
}


body {
    font-family: 'Roboto', sans-serif;;
    color: var(--text);
    background-color: var(--background-grey);
}

#site_wrapper {
    width: 50%;
    margin: auto;
    margin-top: 50px;
    text-align: center;
}

h1 {
    /* text-decoration: underline; */
    color: orange;
    font-weight: 900;
    font-size: 60px;
    width: 400px;
    margin: auto;
    line-height: 50px;
}

h2 {
    font-weight: 500;
    font-size: 25px;
    color: var(----subtitle-grey);
    margin-top: 25px;
}

b {
    font-weight: 400;
}

p, label, button {
    font-family: 'Roboto Slab', serif;
    font-size: 20px;
    font-weight: 300;
}

option, select, input, textarea {
    background-color: var(--background-grey);
    color: var(--text);

    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 500;

    margin: 10px;
    min-width: 100px;

    border-radius: 4px;
    border: 2px var(--button) solid;
}

button {
    border: none;
    border-radius: 4px;

    background-color: var(--title-yellow);
    color: var(--background-grey);

    padding: 8px;
    margin: 20px;
    
    font-weight: 500;

    cursor: pointer;
}

button:hover {
    color: var(--text);
    border-bottom: 2px var(--subtitle-grey) double;
}


hr {
    border: 2px var(--button) solid;
    margin: 40px;
}

input {
    text-align: center;
    margin: 5px;

    min-width: 60px;
    max-width: 60px;
}

.tableForms {
    display: none;
}

#outputFrame {
    display: none;
}

#outputBox {
    max-width: 80%;
    width: 60%;
    height: 100px;
    font-family: 'Roboto Mono', monospace;
    /* overflow-wrap: anywhere; */
}
