| 1 |
|
| 2 |
|
| 3 |
.ablocks-image-scroll__figure img { |
| 4 |
height: 100%; |
| 5 |
max-width: 100%; |
| 6 |
} |
| 7 |
|
| 8 |
.ablocks-icon--image-scroll:before { |
| 9 |
content: "\e9a3"; |
| 10 |
} |
| 11 |
.ablocks-image-scroll__figure .components-resizable-box__container { |
| 12 |
max-width: 100% !important; |
| 13 |
} |
| 14 |
|
| 15 |
.ablocks-alt-text-control { |
| 16 |
width: 100%; |
| 17 |
display: flex; |
| 18 |
flex-direction: column; |
| 19 |
} |
| 20 |
|
| 21 |
.ablocks-alt-text-control__header { |
| 22 |
display: flex; |
| 23 |
justify-content: space-between; |
| 24 |
align-items: center; |
| 25 |
margin-bottom: 6px; |
| 26 |
} |
| 27 |
|
| 28 |
.ablocks-alt-text-control__clear { |
| 29 |
cursor: pointer; |
| 30 |
} |
| 31 |
|
| 32 |
.ablocks-alt-text-control .components-base-control { |
| 33 |
width: 100%; |
| 34 |
} |
| 35 |
.ablocks-alt-text-control |
| 36 |
.components-base-control |
| 37 |
.components-base-control__field { |
| 38 |
width: 100%; |
| 39 |
} |
| 40 |
|
| 41 |
/* image hover effect */ |
| 42 |
|
| 43 |
.ablocks-image--effect { |
| 44 |
transition: all 0.3s ease; |
| 45 |
} |
| 46 |
|
| 47 |
.ablocks-image--effect-zoomin { |
| 48 |
transform: scale(1); |
| 49 |
} |
| 50 |
|
| 51 |
.ablocks-image--effect-zoomin:hover { |
| 52 |
transform: scale(1.1); |
| 53 |
} |
| 54 |
|
| 55 |
.ablocks-image--effect-grayscale:hover { |
| 56 |
filter: grayscale(100%); |
| 57 |
} |
| 58 |
|
| 59 |
.ablocks-image--effect-blur:hover { |
| 60 |
filter: blur(3px); |
| 61 |
} |
| 62 |
|
| 63 |
.ablocks-image--effect-slide { |
| 64 |
transform: translate3d(-20px, 0, 0); |
| 65 |
} |
| 66 |
|
| 67 |
.ablocks-image--effect-slide:hover { |
| 68 |
transform: translate3d(0, 0, 0); |
| 69 |
} |
| 70 |
.ablocks-image-caption { |
| 71 |
margin-top: 0.5em; |
| 72 |
} |
| 73 |
.ablocks-image-caption--left { |
| 74 |
text-align: left; |
| 75 |
} |
| 76 |
|
| 77 |
.ablocks-image-caption--right { |
| 78 |
text-align: right; |
| 79 |
} |
| 80 |
|
| 81 |
.ablocks-image-caption--center { |
| 82 |
text-align: center; |
| 83 |
} |
| 84 |
|
| 85 |
.ablocks-image-caption--justify { |
| 86 |
text-align: justify; |
| 87 |
} |
| 88 |
|