-
Notifications
You must be signed in to change notification settings - Fork 0
/
shared-styles.css
108 lines (86 loc) · 1.46 KB
/
shared-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
html, body {
position: relative;
min-height: 100%;
}
#selection-overlay {
display: block;
position: absolute;
top: 0;
left: 0;
overflow: visible;
min-width: 100%;
min-height: 100%;
z-index: 5;
pointer-events: none;
stroke: blue;
fill: none;
stroke-width: 1px;
}
#description:empty {
display: none;
}
#description {
display: block;
border-style: solid;
border-color: blue;
border-width: 1px;
margin: 4ex;
font-size: smaller;
}
.description .name {
text-align: center;
font-weight: bolder;
}
.bookit {
font-sie: larger;
font-weight:bolder;
margin: 2ex;
}
.pointer-position span {
min-width: 8em;
}
#filter {
margin: 6ex;
}
#filter input {
border-style: solid;
}
.item {
margin-left: 2em;
}
.hidden-item {
display: none;
}
.container {
margin-left: 2em;
}
/* Animate the selected item. */
.selected {
animation-name: selected;
animation-duration: 200ms;
animation-timing-function: ease-in-out;
animation-iteration-count: infinite;
}
@keyframes selected {
50% {
fill: orange;
}
}
/* Styles relating to the pop-up item descriptions */
.title {
text-align: center;
font-weight: bold;
font-size: 120%;
}
img {
object-fit: contain;
max-width: 90%;
margin-top: 3ex;
}
/* Direction indicator */
.direction-indicator {
fill: none;
stroke: black;
stroke-width: 2;
vector-effect: non-scaling-stroke;
}