blob: 886384290368e6da97216aae65a47c7e2b7ec7af (
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
|
@import "../../styles/theme";
.ItemsDisplay,
.ItemsDisplay table {
width: 100%;
}
.ItemsDisplay {
margin: 3rem auto;
}
.ItemsDisplay .legend {
background-color: $altBG;
}
.ItemsDisplay th {
font-size: 1.2rem;
}
.ItemsDisplay td {
text-align: center;
border-bottom: 1px solid $tableDefBorderColor;
font-size: 1.5rem;
}
.ItemsDisplay .leftAlign {
text-align: left;
}
.ItemsDisplay .altBorder {
border-bottom: 1px solid $tableAltBorderColor;
}
|