blob: 74e405f3c4bffa73922ada73e7f7afcb1caf1b46 (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
div.vcontainer{
display: flex;
flex-direction: column;
height: 100%;
}
div.hcontainer {
display: flex;
flex-direction: row;
flex-grow: 1;
}
div.hcontainer > div {
width: 50%;
flex-direction: column;
display: flex;
}
div.hcontainer > div:first-child {
border-right: 1px solid white;
padding-right: 15px;
}
div.hcontainer > div:last-child {
padding-left: 15px;
}
div.hcontainer > div > p {
margin: auto 0 auto 0;
text-align: center;
}
div.principal-select {
align-items: center;
display: flex;
flex-direction: row;
}
div.principal-select * {
margin: 0;
}
div.principal-select :not(:last-child) {
margin-right: 5px;
}
div.principal-select input[type="text"] {
flex-grow: 1;
}
div.hcontainer > div:last-child > label {
font-family: 'Lucida Console';
}
table p {
margin: 8px 0 8px 0;
}
table tr {
background: none !important;
}
table td {
white-space: nowrap;
text-overflow: ellipsis;
font-size: 8pt;
font-family: 'Lucida Console';
}
table td:last-child {
font-size: 12pt;
}
table td:nth-last-child(2) {
border-right: none !important;
}
table tr:nth-child(2n+1) td:not(:first-child) {
background: rgba(255, 255, 255, 0.1);
}
table td:nth-child(2n) {
width: 1px;
white-space: nowrap;
}
table td > div {
width: min-content;
margin: auto;
}
|