PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.9.1
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.9.1
2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 All 80 releases
ablocks / assets / build / blocks / image-scroll / style.css

style.css in aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder 2.9.1, at assets/build/blocks/image-scroll/style.css

88 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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