PluginProbe
Smart Grid-Layout Design for Contact Form 7 / 4.11
Smart Grid-Layout Design for Contact Form 7 v4.11
4.18.0 4.17.0 3.2.0 3.2.1 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 3.3.5 3.3.6 3.3.7 3.3.8 4.0.0 4.0.1 4.1.0 4.1.1 4.1.2 4.1.3 4.1.4 4.10 4.11 4.12 4.13 4.14 All 119 releases
cf7-grid-layout / assets / glider-js / glider.css

glider.css in Smart Grid-Layout Design for Contact Form 7 4.11, at assets/glider-js/glider.css

137 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .glider-contain {
2 width: 100%;
3 margin: 0 auto;
4 position: relative;
5 }
6 .glider {
7 margin: 0 auto;
8 position: relative;
9 overflow-y: hidden;
10 -webkit-overflow-scrolling: touch;
11 -ms-overflow-style: none;
12 transform: translateZ(0);
13 }
14 .glider-track {
15 transform: translateZ(0);
16 width: 100%;
17 margin: 0;
18 padding: 0;
19 display: flex;
20 z-index: 1;
21 }
22 .label-dots .glider-dot {
23 width: 1.1rem;
24 height: 1.1rem;
25 font-size: 1rem;
26 line-height: 1;
27 padding-bottom: 2px;
28 }
29 .glider.draggable {
30 user-select: none;
31 cursor: -webkit-grab;
32 cursor: grab;
33 }
34 .glider.draggable .glider-slide img {
35 user-select: none;
36 pointer-events: none;
37 }
38 .glider.drag {
39 cursor: -webkit-grabbing;
40 cursor: grabbing;
41 }
42 .glider-slide {
43 user-select: none;
44 justify-content: center;
45 align-content: center;
46 width: 100%;
47 }
48 .glider-slide img {
49 max-width: 100%;
50 }
51 .glider::-webkit-scrollbar {
52 opacity: 0;
53 height: 0;
54 }
55 .glider-prev,.glider-next {
56 user-select: none;
57 position: absolute;
58 outline: none;
59 background: none;
60 padding: 0;
61 z-index: 2;
62 font-size: 40px;
63 text-decoration: none;
64 left: -23px;
65 border: 0;
66 top: 30%;
67 cursor: pointer;
68 color: #666;
69 opacity: 1;
70 line-height: 1;
71 transition: opacity .5s cubic-bezier(.17,.67,.83,.67),
72 color .5s cubic-bezier(.17,.67,.83,.67);
73 }
74 .glider-prev:hover,
75 .glider-next:hover,
76 .glider-prev:focus,
77 .glider-next:focus {
78 color: #a89cc8;
79 }
80 .glider-next {
81 right: -23px;
82 left: auto;
83 }
84 .glider-next.disabled,
85 .glider-prev.disabled {
86 opacity: .25;
87 color: #666;
88 cursor: default;
89 }
90 .glider-slide {
91 min-width: 150px;
92 }
93 .glider-hide {
94 opacity: 0;
95 }
96 .glider-dots {
97 user-select: none;
98 display: flex;
99 flex-wrap: wrap;
100 justify-content: center;
101 margin: 0 auto;
102 padding: 0;
103 }
104 .glider-dot {
105 border: 0;
106 padding: 0;
107 user-select: none;
108 outline: none;
109 display: block;
110 cursor: pointer;
111 color: #ccc;
112 border-radius: 999px;
113 background: #ccc;
114 width: 12px;
115 height: 12px;
116 margin: 7px;
117 }
118 .glider-dot:hover,
119 .glider-dot:focus,
120 .glider-dot.active {
121 background: #a89cc8;
122 }
123 @media(max-width: 36em){
124 .glider::-webkit-scrollbar {
125 opacity: 1;
126 -webkit-appearance: none;
127 width: 7px;
128 height: 3px;
129 }
130 .glider::-webkit-scrollbar-thumb {
131 opacity: 1;
132 border-radius: 99px;
133 background-color: rgba(156, 156, 156, 0.25);
134 box-shadow: 0 0 1px rgba(255,255,255,.25);
135 }
136 }
137