Subversion Repositories CoffeeCatalog

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

:root {
        --dark-color: saddlebrown;
        --medium-color: tan;
        --light-color: rgba(210, 180, 140, .2);
}

body {
        background-color: white;
        font-family: Verdana, "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", "sans-serif";
        color: var(--dark-color);
        margin: 4px;
}

div {
        color: var(--dark-color);
}
.accent {
        background-color: var(--dark-color);
        accent-color: var(--dark-color);
}

.pageheader {
        max-width: 610px;
        padding: 10px;
        border-radius: 5px 35px 5px 5px;
        margin-bottom: 4px;
}

.sp0{display:flex; max-width:700px; font-weight: bold;}
.spLeft {
        float:left;
        display: flex;
        width:65%;
        font-size: x-small;
}

.spRight {
        float:right;
        width:35%;
        text-align:right;
        font-size: x-small;
}

.autoload {
        color: rgba(255,255,255, .9);
}
input[type=radio] {
        opacity: 75%;
}

h1 {
        color: white;
        font-style: italic;
        font-weight: bold;
        text-shadow: 2px 2px 4px #000000;
        margin: 0;
}

h5 {
        font-size: x-small;
}

.footer {
        font-size: xx-small;    
        font-weight: bold;
}

a {
        color: var(--dark-color);
        text-decoration: none;
        white-space: nowrap;
}


a:hover {
        text-decoration: underline;
}

.nowrap {
        white-space: nowrap;
        margin: auto;
}

input[type=text],
textarea
 {
        padding: 2px;
        border: 1px solid var(--medium-color);
        border-radius: 4px;
        box-sizing: border-box;
        outline: none;
        color: var(--dark-color);
}

input[type=text]:focus,
textarea:focus {
  border: 1px solid var(--dark-color);
}


input[type=button],
input[type=submit] {
        background-color: var(--medium-color);
        border: none;
        color: var(--dark-color);
        padding: 4px 16px;
        text-decoration: none;
        margin: 4px 2px;
        border-radius: 15px;
        font-weight: bold;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
        cursor: pointer;
        font-size: x-small;
}

input:hover[type=button], input:hover[type=submit] {
        background-color: var(--dark-color);
        color: var(--medium-color);
        box-shadow: -2px -2px 4px var(--light-color);
}

.inputfile {
        width: 0.1px;
        height: 0.1px;
        opacity: 0;
        overflow: hidden;
        position: absolute;
        z-index: -1;
}

.inputfile + label {
        background-color: var(--medium-color);
        border: none;
        color: var(--dark-color);
        padding: 4px 16px;
        text-decoration: none;
        margin: 4px 2px;
        border-radius: 15px;
        font-weight: bold;
        box-shadow: 2px 2px 4px rgba(0, 0, 0, .5);
        cursor: pointer;
        font-size: x-small;
    display: inline-block;
}

.inputfile + label * {
        pointer-events: none;
}

.inputfile:focus + label,
.inputfile + label:hover {
        background-color: var(--dark-color);
        color: var(--medium-color);
        box-shadow: -2px -2px 4px var(--light-color);
}

.bold {
        font-weight: bold;
}

.success {
        font-size: small;
        font-weight: bold;
        color: green;
}

.error {
        font-size: small;
        font-weight: bold;
        color: crimson;
}

.top {
        vertical-align: top;
}
.rTable {
        display: table;
        padding: 0;
        border: 0;
        border-spacing: 0;
        margin: 0;
        min-width: 80%;
}
.rTableRow { display: table-row; }
.rTableHeading {
        display: table-header-group;
}
.rTableHead {
        display: table-cell;
        color: white;
        background-color: var(--dark-color);
        font-style: italic;
        font-size: small;
        text-shadow: 1px 1px 2px #000000;
        text-align: left;       
        white-space: nowrap;
        padding: 3px 12px;
}

.rTableHead:first-child {
        border-radius: 5px 0 0 0;
}

.rTableHead:last-child {
        border-radius: 0 20px 0 0;
}

.rTableBody { display: table-row-group; }
.rTableFoot { display: table-footer-group; }
.rTableCell {
        display: table-cell;
        color: var(--dark-color);
        font-size: x-small;
        text-align: left;
        padding: 5px 12px;
}
.quarters {
        width: 25%;
}

.right {
        text-align: right;
}

.shaded:nth-child(odd) {
        background-color: var(--light-color);
}

.shaded:nth-child(even) {
        background-color: white;
}

.filters {
        background-color: var(--medium-color);
}

table {
        padding: 0;
        border: 0;
        border-spacing: 0;
        margin: 0;
}

tr:nth-child(odd).shaded {
        background-color: var(--light-color);
}

tr:nth-child(even).shaded {
        background: white;
}

th {
        color: white;
        background-color: var(--dark-color);
        font-style: italic;
        font-size: small;
        text-shadow: 1px 1px 2px #000000;
        text-align: left;
        white-space: nowrap;
}

td {
        color: var(--dark-color);
        font-size: x-small;
        text-align: left;
}

td.filters .filters {
        background-color: var(--medium-color);
}