-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
79 lines (66 loc) · 1.37 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
@import url('https://fonts.googleapis.com/css?family=Open+Sans%7CRoboto');
@import url('https://use.fontawesome.com/releases/v5.10.1/css/all.css');
html, body
{
font-family: 'Open Sans', sans-serif;
}
h1, h2
{
font-family: 'Roboto', sans-serif;
color: #707070;
}
h2
{
font-size: 1.6em;
margin-bottom: 0;
}
header, main
{
display: block;
}
a, a:hover, a:focus, a:visited, .leaflet-container a
{
color: #046dc3;
}
/* the facilities checkboxes */
.form-group
{
margin-bottom: 0;
}
/* for the content of the zoom control */
.leaflet-bar a
{
color: #000;
}
.leaflet-bar a.leaflet-disabled
{
color: #757575;
}
/* Slider control 'tooltip' values to increase contrast from the default */
.irs-from, .irs-to, .irs-single
{
background-color: #5d77a3;
color: #fff;
}
/* Slider highlighted range to match the 'tooltip' values */
.irs-bar
{
background-color: #5d77a3;
}
/* Slider min and max values need font-size setting otherwise WAVE alerts that the text is very tiny */
.irs-min, .irs-max
{
font-size: 0.8em;
}
/* make the space between the fieldset legend and the checkboxes match with the inline ones */
.checkbox:first-of-type
{
margin-top: 0;
}
/* Replacement heading for the labels causing validation errors - now a legend in a fieldset */
.formGroupHeading
{
font-size: 1em;
font-weight: bold;
margin-bottom: 3px;
}