]> git.localhorst.tv Git - alttp.git/blob - resources/sass/map.scss
list items shown on map
[alttp.git] / resources / sass / map.scss
1 .map-pin {
2         path {
3                 fill: red;
4                 stroke: black;
5                 stroke-width: 2px;
6                 vector-effect: non-scaling-stroke;
7         }
8 }
9
10 .map-popover {
11         position: absolute;
12         width: 40vw;
13         min-width: 20em;
14
15         &.hidden {
16                 display: none;
17         }
18 }
19
20 .pin-list {
21         margin: 1em 0;
22         padding: 0;
23         list-style: none;
24
25         li {
26                 margin: 1ex 0;
27                 padding: 1ex;
28                 border-top: thin solid silver;
29         }
30
31         h2 > a, h3 > a {
32                 text-decoration: none;
33         }
34 }