blob: 55a8a98c4c500ef951fcaa6e40763ef932185c01 (
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
73
|
html, body {
max-width: 100%;
overflow-x: hidden;
}
#date-slider {
width: 100%;
}
#date-filter .slider-rangeHighlight.odd {
background: #0000CC;
}
#date-filter .slider-rangeHighlight.even {
background: #8888FF;
}
#date-filter .slider-track-low,
#date-filter .slider-track-high {
background: #CCCCCC;
z-index: 1;
}
#date-filter .slider-handle {
z-index: 2;
}
#brewery-filter .form-check label {
cursor: pointer;
}
#brewery-filter label img {
width: 30px;
}
#chart-tooltip {
position: absolute;
background: rgba(255, 255, 200, 0.75);
padding: 0.5em;
font-size: 0.7em;
border: solid 1px black;
pointer-events: none;
}
#chart-tooltip ul {
margin: 0;
padding: 0;
}
#chart-tooltip ul ul {
padding: 0 0 0 1em;
}
#chart-tooltip li {
list-style: none;
}
#chart-tooltip dl {
display: flex;
margin: 0;
}
#chart-tooltip dt {
width: 80%;
white-space: nowrap;
}
#chart-tooltip dd {
margin: 0;
width: 20%;
min-width: 30px;
text-align: right;
}
|