blob: a3bc4064b7250413405cb33ec5cb26f3f88cfd43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap");
/* Experimental color scheme */
/* light theme */
/*
$defBG: #FFFFFF;
$altBG: lightgray;
$defFG: #000000;
$altFG: #232627;
$defLink: brown;
$altLink: brown;
$defShadow: 0px 0px 4px #232627;
*/
/* Inspired by Dracula */
.ItemsDisplay,
.ItemsDisplay table {
width: 100%; }
.ItemsDisplay {
border-right: 1px dashed lightblue;
border-left: 1px dashed lightblue;
padding: 1rem 0.5rem; }
.ItemsDisplay td {
text-align: center;
border-bottom: 1px solid lightblue; }
.ItemsDisplay .leftAlign {
text-align: left; }
.ItemsDisplay .legend {
background-color: #383A59; }
|