-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathreport.css
58 lines (53 loc) · 890 Bytes
/
report.css
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
img {
display: inline-block;
vertical-align: text-bottom;
max-height: 1.1em;
max-width: 1.1em;
min-height: 1.1em;
min-width: 1.1em;
}
.table-wrap {
max-height: 80vh;
}
th,
.points,
.rectangle-cell {
border-left: 10px solid var(--table-border);
}
.points {
min-width: 3rem;
width: 3rem;
text-align: right;
}
.heal_total,
.damage {
display: none;
}
.swap {
position: absolute;
right: 0;
padding-inline: .2em;
font-weight: 600;
}
.sortable {
position: relative;
}
.rectangle-cell {
width: 12rem;
}
.percent-bar {
width: var(--width);
height: 1em;
border-radius: 0.1em;
}
.useful .percent-bar,
.damage .percent-bar,
.taken .percent-bar {
background-color: hsl(0, 100%, 30%);
box-shadow: .1em .1em 1em darkred;
}
.heal .percent-bar,
.heal_total .percent-bar {
background-color: hsl(120, 100%, 25%);
box-shadow: .1em .1em 1em forestgreen;
}