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
.table {
display: grid;
overflow-x: auto;
background-color: white;
.row {
display: contents;
}
.row:not(.head):hover span {
background-color: #ddd;
}
.head span {
font-weight: bold;
padding: .55em .2em;
}
span {
display: flex;
justify-content: center;
align-items: center;
padding: .35em .2em;
border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
}
.cancelled {
text-decoration-line: line-through;
}
.cancelled-text {
font-weight: bold;
color: red !important;
}