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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
:root {
--blue: rgb(30, 99, 248);
--red: #d42f2f;
--yellow: #ff9800;
--black: rgb(0, 0, 0);
--white: rgb(255, 255, 255);
--gray: #666;
--light-gray-1: #f2f2f2;
--light-gray-2: #f8f6ff;
--gold-trans: #ffcd0455;
--font-family: "Inclusive Sans", sans-serif;
}
@font-face {
font-family: "Inclusive Sans";
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/static/InclusiveSans-Regular.ttf) format("woff2");
}
html {
font-family: var(--font-family) !important;
font-size: 16px;
}
body {
padding: 10px;
margin: 0 auto;
line-height: 24px;
}
main {
display: flex;
flex-flow: row wrap;
justify-content: space-between;
align-items: flex-start;
}
a,
.contrast {
color: var(--blue);
}
h1 {
margin-bottom: 40px;
}
h1 a {
color: var(--black);
text-decoration: none;
}
h1:hover a {
border-bottom: 2px dotted var(--blue);
text-decoration: none;
}
textarea,
input {
font-family: var(--font-family);
font-size: 16px;
}
button,
input[type="submit"] {
cursor: pointer;
font-size: 16px;
border-radius: 4px;
text-shadow: none;
box-shadow: none;
padding: 5px 8px;
border: 0;
background-color: var(--blue);
color: var(--white);
margin-top: 20px;
}
button.red,
input[type="submit"].red {
background-color: var(--red);
}
button.blue,
input[type="submit"].blue {
background-color: var(--blue);
}
button.yellow,
input[type="submit"].yellow {
background-color: var(--yellow);
}
input[type="text"],
input[type*="date"] {
font-size: 16px;
color: var(--black);
}
input[type="text"]:disabled,
input[type*="date"]:disabled {
color: var(--gray);
}
main > aside {
width: 250px;
}
main > .results {
flex: 1;
overflow-y: scroll;
max-height: 100%;
}
table {
width: 100%;
}
th,
td {
min-width: 100px;
text-align: left;
padding: 7px 5px;
}
tr:nth-of-type(odd) td {
background-color: var(--light-gray-2);
}
|