Add license information.
[ustaxviewer.git] / src / FormView.css
1 /* Copyright 2020 Blue Static <https://www.bluestatic.org>
2 * This program is free software licensed under the GNU General Public License,
3 * version 3.0. The full text of the license can be found in LICENSE.txt.
4 * SPDX-License-Identifier: GPL-3.0-only
5 */
6
7 .form-name {
8 margin: 0;
9 border: 3px solid black;
10 border-bottom-width: 2px;
11 padding: 5px;
12 }
13
14 .table {
15 border: 1px solid black;
16 border-collapse: collapse;
17 width: 100%;
18 }
19
20 .line {
21 border: 1px solid black;
22 }
23
24 .line:hover {
25 background-color: #dfdfdf;
26 }
27
28 .id {
29 background-color: black;
30 color: white;
31 font-weight: bold;
32 padding: 0 5px;
33 text-align: center;
34 }
35
36 .description {
37 padding: 3px 10px 3px 3px;
38 }
39
40 .value {
41 font-family: monospace;
42 text-align: right;
43 padding: 0 5px;
44 }
45
46 .error {
47 color: red;
48 font-weight: bold;
49 }