src/main/webapp/lightpit.css

Sun, 23 Aug 2020 15:10:49 +0200

author
Mike Becker <universe@uap-core.de>
date
Sun, 23 Aug 2020 15:10:49 +0200
changeset 99
a369fb1b3aa2
parent 98
5c406eef0e5c
child 101
c34c81b87674
permissions
-rw-r--r--

cleanup ProjectsModule

universe@10 1 /*
universe@10 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@10 3 *
universe@24 4 * Copyright 2018 Mike Becker. All rights reserved.
universe@10 5 *
universe@10 6 * Redistribution and use in source and binary forms, with or without
universe@10 7 * modification, are permitted provided that the following conditions are met:
universe@10 8 *
universe@10 9 * 1. Redistributions of source code must retain the above copyright
universe@10 10 * notice, this list of conditions and the following disclaimer.
universe@10 11 *
universe@10 12 * 2. Redistributions in binary form must reproduce the above copyright
universe@10 13 * notice, this list of conditions and the following disclaimer in the
universe@10 14 * documentation and/or other materials provided with the distribution.
universe@10 15 *
universe@10 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@10 17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@10 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
universe@10 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
universe@10 20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
universe@10 21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
universe@10 22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
universe@10 23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
universe@10 24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
universe@10 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
universe@10 26 * POSSIBILITY OF SUCH DAMAGE.
universe@10 27 *
universe@10 28 */
universe@10 29
universe@10 30 html {
universe@47 31 font-family: sans-serif;
universe@52 32 font-size: 11pt;
universe@47 33 background: white;
universe@47 34 color: #1c204e;
universe@47 35 margin: 0;
universe@47 36 padding: 0;
universe@10 37 }
universe@10 38
universe@10 39 body {
universe@47 40 height: 100%;
universe@47 41 margin: 0;
universe@47 42 padding: 0;
universe@26 43 }
universe@26 44
universe@10 45 a {
universe@11 46 color: #3060f8;
universe@10 47 text-decoration: none;
universe@10 48 }
universe@10 49
universe@96 50 #mainMenu {
universe@98 51 position: fixed;
universe@98 52 z-index: 2;
universe@10 53 width: 100%;
universe@10 54 display: flex;
universe@10 55 flex-flow: row wrap;
universe@45 56 border-image-source: linear-gradient(to right, #606060, rgba(60, 60, 60, .25));
universe@45 57 border-image-slice: 1;
universe@45 58 border-bottom-style: solid;
universe@45 59 border-bottom-width: 1pt;
universe@45 60 }
universe@98 61
universe@96 62 #sideMenu {
universe@96 63 display: flex;
universe@98 64 z-index: 1;
universe@96 65 flex-flow: column;
universe@96 66 position: fixed;
universe@96 67 height: 100%;
universe@97 68 width: 30ch;
universe@98 69 padding-top: 2.25rem;
universe@96 70 border-image-source: linear-gradient(to bottom, #606060, rgba(60, 60, 60, .25));
universe@96 71 border-image-slice: 1;
universe@96 72 border-right-style: solid;
universe@96 73 border-right-width: 1pt;
universe@96 74 }
universe@96 75
universe@96 76 #content-area.sidebar-spacing {
universe@97 77 margin-left: 30ch;
universe@96 78 }
universe@45 79
universe@45 80 #mainMenu {
universe@98 81 font-size: 1.2rem;
universe@45 82 background: #e0e0e5;
universe@10 83 }
universe@10 84
universe@96 85 #sideMenu {
universe@10 86 background: #f7f7ff;
universe@97 87 overflow-x: scroll;
universe@10 88 }
universe@10 89
universe@96 90 #mainMenu .menuEntry {
universe@10 91 padding: .25em 1em .25em 1em;
universe@28 92 border-right-style: solid;
universe@28 93 border-right-width: 1pt;
universe@28 94 border-right-color: #9095a1;
universe@10 95 }
universe@10 96
universe@97 97 #sideMenu .menuEntry {
universe@97 98 padding-top: .25em;
universe@97 99 padding-bottom: .25em;
universe@97 100 border-bottom-style: solid;
universe@97 101 border-bottom-width: 1pt;
universe@97 102 border-bottom-color: #d7d7df;
universe@97 103 }
universe@97 104
universe@10 105 #mainMenu .menuEntry[data-active] {
universe@45 106 background: #d0d0d5;
universe@10 107 }
universe@10 108
universe@96 109 #sideMenu .menuEntry[data-active] {
universe@10 110 background: #e7e7ef
universe@10 111 }
universe@10 112
universe@97 113 #sideMenu .level-0 {
universe@97 114 padding-left: .25em;
universe@97 115 }
universe@97 116
universe@97 117 #sideMenu .level-1 {
universe@97 118 padding-left: .75em;
universe@97 119 }
universe@97 120
universe@97 121 #sideMenu .level-2 {
universe@97 122 padding-left: 2em;
universe@97 123 }
universe@97 124
universe@10 125 #content-area {
universe@98 126 padding: 2.75rem 1em 1em;
universe@10 127 }
universe@23 128
universe@47 129 button, a.button {
universe@47 130 display: inline-block;
universe@47 131 font-size: medium;
universe@47 132 border-style: outset;
universe@47 133 border-width: 2pt;
universe@47 134 border-color: #6060cc;
universe@47 135 color: inherit;
universe@47 136 background: #f0f0f0;
universe@47 137
universe@47 138 padding: .25em .5em .25em .5em;
universe@47 139 cursor: default;
universe@47 140 text-decoration: none;
universe@47 141 }
universe@47 142
universe@47 143 button:hover, a.button:hover {
universe@47 144 background: #f0f0ff;
universe@47 145 }
universe@47 146
universe@47 147 button[type=submit] {
universe@47 148 background: #20a0ff;
universe@47 149 color: white;
universe@47 150 }
universe@47 151
universe@47 152 button[type=submit]:hover {
universe@47 153 background: #1090cf;
universe@47 154 }
universe@47 155
universe@26 156 th {
universe@26 157 text-align: left;
universe@26 158 }
universe@26 159
universe@26 160 table.datatable {
universe@23 161 border-style: solid;
universe@23 162 border-width: 1pt;
universe@80 163 border-color: silver;
universe@23 164 border-collapse: collapse;
universe@23 165 }
universe@23 166
universe@26 167 table.datatable th {
universe@47 168 white-space: nowrap;
universe@23 169 font-weight: bold;
universe@23 170 background: lightsteelblue;
universe@23 171 }
universe@23 172
universe@26 173 table.datatable th, table.datatable td {
universe@23 174 border-style: solid;
universe@23 175 border-width: 1pt;
universe@23 176 border-color: black;
universe@23 177 padding: .4em;
universe@23 178 }
universe@23 179
universe@26 180 table.datatable tr:nth-child(2n) {
universe@51 181 background: #f0ffff;
universe@23 182 }
universe@26 183
universe@47 184 table.formtable {
universe@47 185 border-style: none;
universe@47 186 border-collapse: separate;
universe@47 187 border-spacing: 1em;
universe@47 188 }
universe@47 189
universe@47 190 table.formtable th {
universe@47 191 font-weight: bold;
universe@47 192 text-align: left;
universe@47 193 vertical-align: center;
universe@47 194 white-space: nowrap;
universe@47 195 }
universe@47 196
universe@47 197 table.formtable tbody td > * {
universe@47 198 width: 100%;
universe@47 199 }
universe@47 200
universe@75 201 table.formtable input[type=date] {
universe@75 202 width: auto;
universe@75 203 }
universe@75 204
universe@47 205 table.formtable tfoot td {
universe@47 206 text-align: right;
universe@47 207 }
universe@47 208
universe@47 209 .fullwidth {
universe@47 210 width: 100%;
universe@47 211 }
universe@47 212
universe@47 213 .vtop {
universe@47 214 vertical-align: top;
universe@47 215 }
universe@47 216
universe@26 217 .hcenter {
universe@26 218 text-align: center;
universe@26 219 }
universe@26 220
universe@80 221 .hright {
universe@80 222 text-align: right;
universe@80 223 }
universe@80 224
universe@26 225 .smalltext {
universe@26 226 font-size: smaller;
universe@26 227 }
universe@26 228
universe@26 229 .nowrap {
universe@26 230 white-space: nowrap;
universe@47 231 }
universe@47 232
universe@47 233 .medskip {
universe@47 234 margin-top: .5em;
universe@47 235 }
universe@47 236
universe@47 237 .info-box {
universe@47 238 margin: 2em;
universe@47 239 border-style: dashed;
universe@47 240 border-width: 1pt;
universe@47 241 border-color: deepskyblue;
universe@47 242 padding: 1em;
universe@26 243 }

mercurial