aboutsummaryrefslogtreecommitdiff
path: root/src/components/Display/Display.css
blob: c5917e32a3c30b8ae1344b8eab54c9b13bd95be1 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
@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 {
  margin: 3rem auto; }

.ItemsDisplay .legend {
  background-color: #383A59; }

.ItemsDisplay th {
  font-size: 1.2rem; }

.ItemsDisplay td {
  text-align: center;
  border-bottom: 1px solid lightblue;
  font-size: 1.5rem; }

.ItemsDisplay .disabledBorder {
  border-bottom: 1px solid gray; }

.ItemsDisplay .warningBorder {
  border-bottom: 1px solid red; }

.ItemsDisplay .leftAlign {
  text-align: left; }

.SummaryDisplayTR td {
  color: #FF79C6;
  font-size: 1.7rem; }

.SummaryDisplay {
  width: 30%;
  padding: 0.5rem 2rem; }

.SummaryDisplay h1 {
  font-size: 3rem;
  margin: 0.5rem -1.5rem;
  border-bottom: 1px dotted lightblue; }

.SummaryDisplay table {
  width: 100%;
  margin: auto; }

.SummaryDisplay td {
  font-size: 1.25rem;
  padding: 0.2rem 0; }

.SummaryDisplay .grandTotal td {
  font-size: 2rem;
  color: #FF79C6; }