blob: 4eedd0bba7d2e01fffd04897b3b200dd432bae3e (
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
|
td {
border: 1px solid lightgrey;
min-width: 3em;
}
table {
max-width: 100%;
}
li {
cursor: pointer;
text-decoration: underline;
}
tr:nth-child(2n+1) {
background-color: lightgray;
}
tr {
width: 100%;
}
.bold {
font-weight: bold;
}
#data {
width: 100%;
}
.border {
border: 1px solid lightgrey;
}
textarea {
border-radius: 4px;
width: 60%;
height: 10em;
display: block;
}
pre {
white-space: pre-line;
}
.net-negative {
/* color: red; */
background-color: lightcoral;
}
.net-positive {
/* color: green; */
background-color: lightgreen
}
.summary-panel {
float:left;
padding-right: 2em;
}
@media only screen and (max-width: 600px) {
.newItem td {
display:block;
}
.table-index {
display: none;
}
button {
font-size: 32px;
}
input {
font-size: 32px;
display: block;
width: 100%;
}
}
|