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

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

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