/* This document contains standard formatting that snailien.net uses */

/* make sure the client has a font that can draw box glyphs */
@font-face {
    font-family: 'Box';
    src: 
        url('/assets/font/consola-box.woff2') format('woff2'),
        url('/assets/font/consola-box.woff') format('woff');
}

/* Copy the colors from MMADLab internal server / RTN */
body {
    background-color: rgb(44, 46, 54);
    font-family: Box, monospace;
    color: whitesmoke;
    font-size: 3vh;
}

/* Unvisited links are cyan. Visited links are pink. */
a{
    color: cyan;
}
a:visited{
    color: plum;
}

/* a button that expands horizontally with flex weight 1 */
.standardButton{
    background-color: rgba(67, 72, 91, 1.0);
    outline: solid 0.25vw black;
    box-shadow: none;
    color: whitesmoke;
    font-size: 1.5vw;
    flex-grow: 1;
    margin: 1%;
}

legend{
    text-align: left;
}

