src/main/webapp/error.css

Mon, 04 Jan 2021 12:45:22 +0100

author
Mike Becker <universe@uap-core.de>
date
Mon, 04 Jan 2021 12:45:22 +0100
changeset 172
89b3320557e2
parent 71
dca186d3911f
child 180
009700915269
permissions
-rw-r--r--

fixes #120 - thin border rendering for Chrome

universe@13 1 /*
universe@13 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
universe@13 3 *
universe@24 4 * Copyright 2018 Mike Becker. All rights reserved.
universe@13 5 *
universe@13 6 * Redistribution and use in source and binary forms, with or without
universe@13 7 * modification, are permitted provided that the following conditions are met:
universe@13 8 *
universe@13 9 * 1. Redistributions of source code must retain the above copyright
universe@13 10 * notice, this list of conditions and the following disclaimer.
universe@13 11 *
universe@13 12 * 2. Redistributions in binary form must reproduce the above copyright
universe@13 13 * notice, this list of conditions and the following disclaimer in the
universe@13 14 * documentation and/or other materials provided with the distribution.
universe@13 15 *
universe@13 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@13 17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@13 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
universe@13 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
universe@13 20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
universe@13 21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
universe@13 22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
universe@13 23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
universe@13 24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
universe@13 25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
universe@13 26 * POSSIBILITY OF SUCH DAMAGE.
universe@13 27 *
universe@13 28 */
universe@13 29
universe@18 30 #error-page h1 {
universe@18 31 font-size: 1.5em;
universe@13 32 }
universe@13 33
universe@18 34 #error-page table {
universe@18 35 width: 100%;
universe@71 36
universe@18 37 border-top-style: solid;
universe@172 38 border-top-width: thin;
universe@18 39 border-top-color: #606060;
universe@71 40
universe@18 41 border-bottom-style: solid;
universe@172 42 border-bottom-width: thin;
universe@18 43 border-bottom-color: #505050;
universe@71 44
universe@18 45 border-collapse: separate;
universe@18 46 border-spacing: .5em;
universe@13 47 }
universe@15 48
universe@18 49 #error-page table th {
universe@18 50 text-align: right;
universe@53 51 white-space: nowrap;
universe@15 52 }
universe@18 53
universe@18 54 #error-page table td {
universe@18 55 width: 100%;
universe@18 56 }

mercurial