Newer
Older
fractals / public / style / core.css
@peter peter on 3 Oct 2019 1 KB Added hexagonal base shape.
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, select:hover {
    background: rgb(51, 15, 182);
    cursor: pointer;
}
.linkbutton:active, input[type=button]:active, input[type=submit]:active, select:active {
    background: rgb(37, 12, 131);
}
.linkbutton:disabled, input[type=button]:disabled, input[type=submit]:disabled, select:disabled {
    color: #868686;
    background: #adadad;
}

select {
    background: rgb(69, 18, 255);
    color: #EEEEEE;
    border: none;
    border-radius: 2px;
    padding: 2px;
}

.table {
    display: table;
}
.table > * {
    display: table-row
}
.table > * > * {
    display: table-cell;
}