-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
141 lines (117 loc) · 1.84 KB
/
styles.css
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
131
132
133
134
135
136
137
138
139
140
141
@import url('https://fonts.googleapis.com/css?family=Open+Sans%7CRoboto');
html, body, text
{
font-family: 'Open Sans', sans-serif;
color: #212121;
}
/* HTML5 fallback styles for older browsers */
main, section, header, footer, nav, figure, figcaption
{
display: block;
box-sizing: border-box;
}
/* ---------------------------------------- */
h1, h2, h3, h4, h5, h6, .control-label
{
font-family: 'Roboto', sans-serif;
color: #707070;
}
h1, .nav-pills, .centred
{
display: flex;
justify-content: center;
}
h1
{
padding-top: 0;
margin-top: 0;
}
main
{
margin-top: 1em;
}
a, a:hover, a:focus, a:visited, .themeLink
{
color: #046dc3;
}
a
{
text-decoration: none;
}
a:hover
{
text-decoration: underline;
}
.nav-pills a
{
color: #5d77a3;
}
.nav-pills a:hover
{
background-color: #f9f9f9;
}
img
{
border: 0;
}
.traffordDataLabLogo
{
margin: 0.5em;
}
/* background-colour set using SASS variables in app.R */
.bg-secondary
{
padding-top: 1em;
border-bottom: 1px solid #ccc;
box-shadow: 0 0 5px #f0f0f0;
}
.control-label
{
font-weight: bold;
margin-bottom: 0;
}
/* Total cases table */
.table
{
width: 620px;
font-family: 'Open Sans', sans-serif;
font-size: 13px;
line-height: 16px;
}
.group-header
{
font-size: 14px;
}
.value-highlight
{
font-weight: bold;
color: #5d77a3;
}
/* Error message*/
.shiny-output-error-validation
{
font-weight: bold;
}
.infoAndDownloadOptions
{
display: inline-block;
}
.infoAndDownloadOptionsContainer
{
padding: 6px 0 6px 4px;
}
/* content block usually paired with themeBlockLight */
.contentBlock
{
padding: 1em;
border-left: 4px solid #757575;
}
.themeBlockLight
{
background-color: #f5f9ff;
}
/* Used for reference text or clarification notes mostly */
.smallText
{
font-size: 0.8em;
}