mirror of
https://github.com/a2nt/webpack-bootstrap-ui-kit.git
synced 2024-10-22 11:05:45 +02:00
126 lines
2.3 KiB
CSS
126 lines
2.3 KiB
CSS
/*
|
|
* bootstrap includes
|
|
* keep it at the end
|
|
*/
|
|
|
|
@-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);
|
|
}
|
|
}
|
|
|
|
.mapAPI-map {
|
|
height: 30rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.mapboxgl-popup {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
display: -webkit-box;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
pointer-events: none;
|
|
font-size: 0.8rem;
|
|
z-index: 4;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.mapboxgl-popup-content {
|
|
position: relative;
|
|
pointer-events: auto;
|
|
padding: 10px 10px 15px;
|
|
border-radius: 3px;
|
|
background: #fff;
|
|
min-width: 240px;
|
|
min-height: 5rem;
|
|
-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.4);
|
|
box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.4);
|
|
}
|
|
|
|
.mapboxgl-popup-close-button {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
font-size: 2rem;
|
|
padding: 0.5rem;
|
|
border-top-right-radius: 3px;
|
|
}
|
|
|
|
.mapboxgl-popup-close-button:hover,
|
|
.mapboxgl-popup-close-button:focus {
|
|
background: #2196f3;
|
|
color: #fff;
|
|
}
|
|
|
|
.mapboxgl-popup-tip {
|
|
width: 0;
|
|
height: 0;
|
|
border: 10px solid transparent;
|
|
z-index: 1;
|
|
}
|
|
|
|
.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
|
|
-ms-flex-item-align: center;
|
|
align-self: center;
|
|
border-bottom: none;
|
|
border-top-color: #fff;
|
|
}
|
|
|
|
.mapboxgl-marker {
|
|
width: 30px;
|
|
height: 30px;
|
|
font-size: 30px;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
color: #2196f3;
|
|
}
|
|
|
|
.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*/ |