Newer
Older
goodnight / style / core.css
html, body {
    /* margin: 0; */
    background: #202020;
    font-family: Arial, Helvetica, sans-serif;
    color: #EEEEEE;
}

a, a:visited {
    color: #EEEEEE;
}

input[type=text], input[type=password] {
    /* font-family: Arial, Helvetica, sans-serif; */
    background-color: #EEEEEE;
    color: #202020;
}

.linkbutton, input[type=button], input[type=submit] {
    color: #EEEEEE;
    background: rgb(69, 18, 255);
    border: 0;
    border-radius: 3px;
    padding: 5px;
    font-size: 1em;
}
.linkbutton:hover, input[type=button]:hover, input[type=submit]:hover {
    background: rgb(51, 15, 182);
    cursor: pointer;
}
.linkbutton:active, input[type=button]:active, input[type=submit]:active {
    background: rgb(37, 12, 131);
}

.singleColumnForm
{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.singleColumnForm input
{
    margin-bottom: 0.5em
}

.centerColumn {
    margin: auto;
    width: fit-content;
}

.centerBox {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logout {
    float: right;
}
.logout input[type=submit] {
    background: none;
}