PluginProbe ʕ •ᴥ•ʔ
FrontBlocks for Gutenberg/GeneratePress / 1.3.0
FrontBlocks for Gutenberg/GeneratePress v1.3.0
trunk 0.2.0 0.2.1 0.2.2 0.2.3 0.2.4 0.2.5 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 ci-artifacts
frontblocks / assets / carousel / frontblocks-carousel.css
frontblocks / assets / carousel Last commit date
frontblocks-advanced-option.js 7 months ago frontblocks-carousel.css 7 months ago frontblocks-carousel.js 8 months ago glide.min.js 8 months ago
frontblocks-carousel.css
155 lines
1 /**
2 * ## Glide Carousel style
3 * --------------------------- */
4
5 .glide {
6 position: relative;
7 width: 100%;
8 box-sizing: border-box;
9 }
10 .glide * {
11 box-sizing: inherit;
12 }
13 .glide__track {
14 overflow: hidden;
15 }
16 .glide__slides {
17 position: relative;
18 width: 100%;
19 list-style: none;
20 backface-visibility: hidden;
21 transform-style: preserve-3d;
22 touch-action: pan-Y;
23 overflow: hidden;
24 margin: 0;
25 padding: 0;
26 white-space: nowrap;
27 display: flex;
28 flex-wrap: nowrap;
29 will-change: transform;
30 }
31 .glide__slides--dragging {
32 user-select: none;
33 }
34 .glide__slide {
35 width: 100%;
36 height: 100%;
37 flex-shrink: 0;
38 white-space: normal;
39 user-select: none;
40 -webkit-touch-callout: none;
41 -webkit-tap-highlight-color: transparent;
42 }
43 .glide__slide a {
44 user-select: none;
45 -webkit-user-drag: none;
46 -moz-user-select: none;
47 -ms-user-select: none;
48 }
49 .glide__arrows {
50 -webkit-touch-callout: none;
51 user-select: none;
52 }
53 .glide__bullets {
54 -webkit-touch-callout: none;
55 user-select: none;
56 }
57 .glide--rtl {
58 direction: rtl;
59 }
60
61 /*# sourceMappingURL=glide.core.css.map */
62
63 .glide__arrow {
64 position: absolute;
65 display: block;
66 top: 50%;
67 z-index: 2;
68 color: white;
69 text-transform: uppercase;
70 padding: 9px 12px;
71 background-color: transparent;
72 border: 2px solid rgba(255, 255, 255, 0.5);
73 border-radius: 4px;
74 opacity: 1;
75 cursor: pointer;
76 transition: opacity 150ms ease, border 300ms ease-in-out;
77 transform: translateY(-50%);
78 line-height: 1;
79 }
80 .glide__arrow:focus {
81 outline: none;
82 }
83 .glide__arrow:hover {
84 border-color: white;
85 }
86 .glide__arrow--left {
87 left: -1em;
88 }
89 .glide__arrow--right {
90 right: -1em;
91 }
92 .glide__arrow--disabled {
93 opacity: 0.33;
94 }
95 .glide__bullets {
96 position: absolute;
97 z-index: 2;
98 bottom: -1em;
99 left: 50%;
100 display: inline-flex;
101 list-style: none;
102 transform: translateX(-50%);
103 }
104 .glide__bullet {
105 background-color: rgba(255, 255, 255, 0.5);
106 width: 9px;
107 height: 9px;
108 padding: 0;
109 border-radius: 50%;
110 border: 2px solid transparent;
111 transition: all 300ms ease-in-out;
112 cursor: pointer;
113 line-height: 0;
114 margin: 0 0.25em;
115 }
116 .glide__bullet:focus {
117 outline: none;
118 }
119 .glide__bullet:hover, .glide__bullet:focus {
120 border: 2px solid white;
121 background-color: rgba(255, 255, 255, 0.5);
122 }
123 .glide__bullet--active {
124 background-color: white;
125 }
126 .glide--swipeable {
127 cursor: grab;
128 cursor: -moz-grab;
129 cursor: -webkit-grab;
130 }
131 .glide--dragging {
132 cursor: grabbing;
133 cursor: -moz-grabbing;
134 cursor: -webkit-grabbing;
135 }
136 .glide__arrows--bottom .glide__arrow {
137 top: calc(100% + 25px);
138 left: 0;
139 }
140 .glide__arrows--bottom .glide__arrow--right {
141 left: 50px;
142 right: unset;
143 }
144 /* Responsive */
145 @media only screen and (max-width: 768px) {
146 .glide__arrow--left {
147 left: 0;
148 }
149 .glide__arrow--right {
150 right: 0;
151 }
152 }
153
154 /*# sourceMappingURL=glide.theme.css.map */
155