| 1 |
/** |
| 2 |
* All of the CSS for your public-facing functionality should be |
| 3 |
* included in this file. |
| 4 |
*/ |
| 5 |
/** |
| 6 |
* Environment for all styles (variables, additions, etc). |
| 7 |
*/ |
| 8 |
/*--------------------------------------------------------------*/ |
| 9 |
/* Vars */ |
| 10 |
.pk-zoom-icon-popup { |
| 11 |
--pk-zoom-icon-popup-color: white; |
| 12 |
--pk-zoom-icon-popup-background: rgba(0, 0, 0, 0.6); |
| 13 |
--pk-zoom-icon-popup-font-size: 16px; |
| 14 |
} |
| 15 |
|
| 16 |
/* Common Style */ |
| 17 |
.pk-lightbox-container { |
| 18 |
position: relative; |
| 19 |
max-width: 100%; |
| 20 |
} |
| 21 |
|
| 22 |
.pk-zoom-icon-popup { |
| 23 |
display: block; |
| 24 |
} |
| 25 |
|
| 26 |
.pk-zoom-icon-popup:after { |
| 27 |
display: block; |
| 28 |
position: absolute; |
| 29 |
top: 1rem; |
| 30 |
left: 1rem; |
| 31 |
width: 2.5rem; |
| 32 |
height: 2.5rem; |
| 33 |
line-height: 2.5rem; |
| 34 |
text-align: center; |
| 35 |
opacity: 0; |
| 36 |
color: var(--pk-zoom-icon-popup-color); |
| 37 |
background: var(--pk-zoom-icon-popup-background); |
| 38 |
transition: all 0.2s ease; |
| 39 |
font-family: 'powerkit-icons'; |
| 40 |
font-size: var(--pk-zoom-icon-popup-font-size); |
| 41 |
content: "\e916"; |
| 42 |
} |
| 43 |
|
| 44 |
.pk-zoom-icon-popup:hover:after { |
| 45 |
opacity: 1; |
| 46 |
} |
| 47 |
|
| 48 |
.pk-zoom-icon-popup img { |
| 49 |
min-width: 100%; |
| 50 |
} |
| 51 |
|
| 52 |
.glightbox-clean .gslide-description { |
| 53 |
background: transparent; |
| 54 |
} |
| 55 |
|
| 56 |
.glightbox-clean .gdesc-inner { |
| 57 |
padding-right: 0; |
| 58 |
padding-left: 0; |
| 59 |
} |
| 60 |
|
| 61 |
.glightbox-clean .gslide-title { |
| 62 |
color: white; |
| 63 |
font-family: inherit; |
| 64 |
font-size: 1rem; |
| 65 |
font-weight: inherit; |
| 66 |
} |
| 67 |
|
| 68 |
.glightbox-clean .gslide-desc { |
| 69 |
color: rgba(255, 255, 255, 0.75); |
| 70 |
font-family: inherit; |
| 71 |
font-size: 0.75rem; |
| 72 |
font-weight: inherit; |
| 73 |
} |
| 74 |
|