| 1 |
/** |
| 2 |
* Frontend Styles |
| 3 |
*/ |
| 4 |
@import "./variables"; |
| 5 |
|
| 6 |
/* Fullheight */ |
| 7 |
.ghostkit-google-maps-fullheight { |
| 8 |
height: calc(100vh - var(--wp-admin--admin-bar--height, 0px)); |
| 9 |
} |
| 10 |
|
| 11 |
.ghostkit-google-maps { |
| 12 |
position: relative; |
| 13 |
background-color: var(--gkt-google-maps__background-color); |
| 14 |
|
| 15 |
&::before, |
| 16 |
> svg { |
| 17 |
position: absolute; |
| 18 |
top: 50%; |
| 19 |
left: 50%; |
| 20 |
opacity: var(--gkt-google-maps--placeholder-icon__opacity); |
| 21 |
transform: translateX(-50%) translateY(-50%); |
| 22 |
} |
| 23 |
|
| 24 |
&::before { |
| 25 |
display: block; |
| 26 |
width: var(--gkt-google-maps--placeholder-icon__width); |
| 27 |
height: var(--gkt-google-maps--placeholder-icon__height); |
| 28 |
content: ""; |
| 29 |
background-image: var(--gkt-google-maps--placeholder-icon__background-image); |
| 30 |
} |
| 31 |
} |
| 32 |
|