universe@10: /* universe@10: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. universe@10: * universe@24: * Copyright 2018 Mike Becker. All rights reserved. universe@10: * universe@10: * Redistribution and use in source and binary forms, with or without universe@10: * modification, are permitted provided that the following conditions are met: universe@10: * universe@10: * 1. Redistributions of source code must retain the above copyright universe@10: * notice, this list of conditions and the following disclaimer. universe@10: * universe@10: * 2. Redistributions in binary form must reproduce the above copyright universe@10: * notice, this list of conditions and the following disclaimer in the universe@10: * documentation and/or other materials provided with the distribution. universe@10: * universe@10: * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" universe@10: * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE universe@10: * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE universe@10: * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE universe@10: * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR universe@10: * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF universe@10: * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS universe@10: * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN universe@10: * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) universe@10: * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE universe@10: * POSSIBILITY OF SUCH DAMAGE. universe@10: * universe@10: */ universe@10: universe@10: html { universe@10: background: #f8f8f8; universe@10: } universe@10: universe@10: body { universe@10: background: white; universe@26: font-family: serif; universe@10: universe@10: border-color: #505050; universe@10: border-style: solid; universe@10: border-width: 1pt; universe@10: universe@18: color: #1c202e; universe@10: } universe@10: universe@26: h1, h2, h3, h4, #mainMenu, #subMenu { universe@26: font-family: sans-serif; universe@26: } universe@26: universe@10: a { universe@11: color: #3060f8; universe@10: text-decoration: none; universe@10: } universe@10: universe@23: #mainMenu { universe@10: width: 100%; universe@10: display: flex; universe@10: flex-flow: row wrap; universe@10: background: #f0f0f5; universe@10: } universe@10: universe@10: #subMenu { universe@10: background: #f7f7ff; universe@39: border-image-source: linear-gradient(to right, #606060, rgba(60, 60, 60, .25)); universe@10: border-image-slice: 1; universe@10: border-top-style: solid; universe@10: border-top-width: 1pt; universe@10: border-bottom-style: solid; universe@10: border-bottom-width: 1pt; universe@10: } universe@10: universe@10: .menuEntry { universe@10: padding: .25em 1em .25em 1em; universe@28: border-right-style: solid; universe@28: border-right-width: 1pt; universe@28: border-right-color: #9095a1; universe@10: } universe@10: universe@10: #mainMenu .menuEntry[data-active] { universe@10: background: #e0e0e5; universe@10: } universe@10: universe@10: #subMenu .menuEntry[data-active] { universe@10: background: #e7e7ef universe@10: } universe@10: universe@10: #content-area { universe@10: padding: 1em; universe@10: } universe@23: universe@26: th { universe@26: text-align: left; universe@26: } universe@26: universe@26: table.datatable { universe@26: width: 100%; universe@23: border-style: solid; universe@23: border-width: 1pt; universe@23: border-color: black; universe@23: border-collapse: collapse; universe@23: } universe@23: universe@26: table.datatable th { universe@23: font-weight: bold; universe@23: background: lightsteelblue; universe@23: } universe@23: universe@26: table.datatable th, table.datatable td { universe@23: border-style: solid; universe@23: border-width: 1pt; universe@23: border-color: black; universe@23: padding: .4em; universe@23: } universe@23: universe@26: table.datatable tr:nth-child(2n) { universe@23: background: lightblue; universe@23: } universe@26: universe@26: .hcenter { universe@26: text-align: center; universe@26: } universe@26: universe@26: .smalltext { universe@26: font-size: smaller; universe@26: } universe@26: universe@26: .nowrap { universe@26: white-space: nowrap; universe@26: }