-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
73 lines (61 loc) · 1003 Bytes
/
stylesheet.css
File metadata and controls
73 lines (61 loc) · 1003 Bytes
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
/* General page layout */
html,body{
height:100%;
background-color: #ecf0f1;
}
main {
min-height: 700px;
}
#header-container {
flex: 0 0 auto;
background-color: #273c75;
}
#main-container {
flex: 1 1 auto;
height: 0px; /* For Safari support, see: https://bugs.webkit.org/show_bug.cgi?id=198375 */
}
#footer-container {
flex: 0 0 auto;
}
#form-container {
flex: 0 0 auto;
}
#chart-outer-container {
flex: 1 1 auto;
min-height: 0;
}
/* Header */
#header-text {
color: white;
margin-top: 2px;
margin-bottom: 2px;
font-weight: 700;
font-size: 16px;
}
/* Forms */
label {
margin-bottom: 0px;
padding-top: 3px;
font-weight: 600;
}
select {
background-color: #ecf0f1;
border-radius: 5px;
padding: 3px;
border-color: #2c3e50;
border-width: 1px;
}
select:focus {
border-color: #3498db;
border-width: 2px;
outline: none;
}
/* Footer */
#footer-text {
color: #2c3e50;
font-size: 12px;
}
#footer-text a {
color: #2c3e50;
font-size: 12px;
}