lostplaces-frontend/components/03_Organisms/osmMap/_osmMap.scss

48 lines
804 B
SCSS
Raw Normal View History

2020-12-25 13:31:55 +01:00
.LP-Map {
2020-09-29 20:37:34 +02:00
margin-bottom: $-spacing-medium;
2020-12-25 13:31:55 +01:00
&--wide {
height: 300px;
}
&--full {
height: 100%;
width: 100%;
}
.ol-attribution {
2020-09-29 20:21:02 +02:00
font-family: $-primary-sans-serif-font;
color: $-grey;
2020-12-25 13:31:55 +01:00
a {
2020-09-29 20:21:02 +02:00
color: $-light-brown;
2020-12-25 13:31:55 +01:00
&:hover,
&:focus {
2020-09-29 20:21:02 +02:00
color: $-beige;
}
}
}
2020-12-25 13:31:55 +01:00
.ol-zoom {
&-in,
&-out {
2020-09-29 20:21:02 +02:00
background-color: $-light-brown;
2020-12-25 13:31:55 +01:00
&:hover,
&:focus {
2020-09-29 20:21:02 +02:00
background-color: $-grey;
}
}
}
2020-12-25 13:31:55 +01:00
.LP-Map__Popup {
2020-09-29 20:21:02 +02:00
font-family: $-primary-sans-serif-font;
color: $-grey;
background-color: $-almost-white;
padding: .5em;
border-radius: 2px;
}
2021-10-02 07:19:34 +02:00
}