Subversion Repositories ORC

Rev

Rev 15 | Blame | Compare with Previous | Last modification | View Log | RSS feed

:root {
        --dark-color: #004771;
        --medium-color: #0090e4;
        --light-color: rgba(0, 119, 189, .2);
    --highlight: rgba(0, 119, 189, .4);
        --hl-light: #ffff99;
        --hl-dark: #ffe699;
}

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

.hide {
        display: none;
        padding: 10px;
}

.show:hover + .hide {
        display: block;
        position: absolute;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

div {
        color: var(--dark-color);
}

.index {
        margin-top: 25px;
        margin-left: 5px;
        max-width: 875px;
}

.heading {
        background-color: var(--dark-color);
        accent-color: var(--dark-color);
        border-radius: 3px 15px 3px 3px;
/*      max-width: 610px; */
        padding: 5px;
        color: white;
}

ul {
        max-width: 95%; 
}

li {
/*      max-width: 580px; */
}
.lisp0 {display:flex;}
.liLeft {
        float:left;
        display: flex;
        width:80%;
        margin: auto;
}

.liRight {
        float:right;
        width:20%;
        text-align:right;
}

.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:875px;}
.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;
        margin: 0;
        line-height: 200%;
}

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

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


a:hover {
        text-decoration: underline;
        cursor: pointer;
}

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

input[type=text],
input[type=number],
input[type=password],
input[type=time],
input[type=date],
select,
textarea
{
        font-size: small;
        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,
input[type=number]:focus,
input[type=password]:focus,
input[type=time]:focus,
input[type=date]:focus,
select:focus,
textarea:focus {
  border: 1px solid var(--dark-color);
}


button,
input[type=button],
input[type=reset],
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: xx-small;
        vertical-align: middle;
}

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

.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;
}

.hint {
        font-size: small;
        font-style: italic;
        color: darkgray;
}

.top {
        vertical-align: top;
}
.rTable {
        display: table;
        padding: 0;
        border: 0;
        border-spacing: 0;
        margin: 0;
        min-width: 80%;
}
.rTableRow { display: table-row; }
.rTableRowSpan { display: table-row; column-span: all; }
.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;
}

.rTableCellr {
        display: table-cell;
        color: var(--dark-color);
        font-size: x-small;
        text-align: left;
        padding: 5px 12px;
}
.rTableCellr:first-child {
        text-align: right;
}

.quarters {
        width: 25%;
}

.right {
        text-align: right;
}

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

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

.shaded:hover {
  background-color: var(--highlight);
}

.highlighted {
        background-color: var(--hl-light);
}

.highlighted:hover {
  background-color: var(--hl-dark);
}

tr.highlighted {
        background: var(--hl-light);
}

.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.mvp {
        font-size: small;
}

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


.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}

.pagebreak { page-break-after: always; }