2019-12-10 19:11:50 +01:00
|
|
|
/*
|
|
|
|
* bootstrap includes
|
|
|
|
* keep it at the end
|
|
|
|
*/
|
|
|
|
|
2019-12-17 18:15:25 +01:00
|
|
|
@-webkit-keyframes pulse {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: scale(1);
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
-webkit-transform: scale(0.8);
|
|
|
|
transform: scale(0.8);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
-webkit-transform: scale(1);
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes pulse {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: scale(1);
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
-webkit-transform: scale(0.8);
|
|
|
|
transform: scale(0.8);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
-webkit-transform: scale(1);
|
|
|
|
transform: scale(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-10 19:11:50 +01:00
|
|
|
.mapAPI-map {
|
|
|
|
height: 30rem;
|
2020-03-19 18:19:58 +01:00
|
|
|
margin-bottom: 4rem;
|
2019-12-10 19:11:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.mapboxgl-popup {
|
2020-03-19 18:19:58 +01:00
|
|
|
width: 16rem;
|
|
|
|
height: 7rem;
|
|
|
|
font-size: 0.8rem;
|
|
|
|
line-height: 1.2em;
|
2019-12-17 18:07:17 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
display: -webkit-box;
|
|
|
|
display: -ms-flexbox;
|
|
|
|
display: flex;
|
|
|
|
pointer-events: none;
|
2019-12-10 19:11:50 +01:00
|
|
|
z-index: 4;
|
|
|
|
}
|
|
|
|
|
2019-12-17 18:07:17 +01:00
|
|
|
.mapboxgl-popup-anchor-bottom,
|
|
|
|
.mapboxgl-popup-anchor-bottom-left,
|
|
|
|
.mapboxgl-popup-anchor-bottom-right {
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
-webkit-box-direction: reverse;
|
|
|
|
-ms-flex-direction: column-reverse;
|
|
|
|
flex-direction: column-reverse;
|
|
|
|
}
|
|
|
|
|
2019-12-10 19:11:50 +01:00
|
|
|
.mapboxgl-popup-content {
|
2020-03-19 18:19:58 +01:00
|
|
|
min-width: 16rem;
|
|
|
|
background: #fff;
|
|
|
|
color: #212121;
|
2019-12-17 18:07:17 +01:00
|
|
|
position: relative;
|
|
|
|
pointer-events: auto;
|
2020-03-19 18:19:58 +01:00
|
|
|
padding: 0.8rem;
|
|
|
|
border-radius: 0.25rem;
|
2020-01-31 19:53:29 +01:00
|
|
|
min-height: 5rem;
|
2020-03-19 18:19:58 +01:00
|
|
|
-webkit-box-shadow: 0 0.1rem 0.8rem 0 rgba(0, 0, 0, 0.4);
|
|
|
|
box-shadow: 0 0.1rem 0.8rem 0 rgba(0, 0, 0, 0.4);
|
2019-12-10 19:11:50 +01:00
|
|
|
}
|
|
|
|
|
2019-12-17 18:07:17 +01:00
|
|
|
.mapboxgl-popup-close-button {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
2019-12-10 19:11:50 +01:00
|
|
|
font-size: 2rem;
|
2020-01-31 16:50:22 +01:00
|
|
|
padding: 0.5rem;
|
2020-03-19 18:19:58 +01:00
|
|
|
border-top-right-radius: 0.25rem;
|
2019-12-10 19:11:50 +01:00
|
|
|
}
|
|
|
|
|
2019-12-17 18:07:17 +01:00
|
|
|
.mapboxgl-popup-close-button:hover,
|
|
|
|
.mapboxgl-popup-close-button:focus {
|
2019-12-10 19:11:50 +01:00
|
|
|
background: #2196f3;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2019-12-17 18:07:17 +01:00
|
|
|
.mapboxgl-popup-tip {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
2020-03-19 18:19:58 +01:00
|
|
|
border: 0.8rem solid transparent;
|
2019-12-17 18:07:17 +01:00
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
|
2020-03-19 18:19:58 +01:00
|
|
|
border-top-color: #fff;
|
2019-12-17 18:07:17 +01:00
|
|
|
-ms-flex-item-align: center;
|
|
|
|
align-self: center;
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
2019-12-10 19:11:50 +01:00
|
|
|
.mapboxgl-marker {
|
|
|
|
width: 30px;
|
|
|
|
height: 30px;
|
|
|
|
font-size: 30px;
|
2020-03-19 18:19:58 +01:00
|
|
|
color: #2196f3;
|
2019-12-10 19:11:50 +01:00
|
|
|
cursor: pointer;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.mapboxgl-marker .marker-icon,
|
|
|
|
.mapboxgl-marker .fas,
|
|
|
|
.mapboxgl-marker .fab,
|
|
|
|
.mapboxgl-marker .far {
|
|
|
|
-webkit-animation: pulse 0.8s linear infinite;
|
|
|
|
animation: pulse 0.8s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*# sourceMappingURL=app_SilverShop.Page.CheckoutPageController.css.map*/
|