PluginProbe ʕ •ᴥ•ʔ
Spider Elements – Premium Elementor Widgets & Addons Library / trunk
Spider Elements – Premium Elementor Widgets & Addons Library vtrunk
trunk 1.0.0 1.1.0 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.6 1.6.7 1.7.0 1.8.0 1.9.0
spider-elements / assets / scss / admin / _framework.scss
spider-elements / assets / scss / admin Last commit date
_dashboard-enhanced.scss 6 months ago _elements.scss 6 months ago _framework.scss 6 months ago _notice.scss 1 year ago _theme_builder.scss 1 year ago _welcome.scss 6 months ago
_framework.scss
211 lines
1 // font css
2 $inter: "Inter", sans-serif;
3 $rob: "Roboto", sans-serif;
4 @mixin placeholder {
5 &.placeholder {
6 @content;
7 }
8 &:-moz-placeholder {
9 @content;
10 }
11 &::-moz-placeholder {
12 @content;
13 }
14 &::-webkit-input-placeholder {
15 @content;
16 }
17 }
18
19 // columns css
20 .ezd-grid {
21 display: grid;
22 grid-column-gap: 20px;
23 }
24
25 .ezd-grid-cols-12 {
26 grid-template-columns: repeat(12, minmax(0, 1fr));
27 width: 100%;
28 }
29
30 .ezd-grid-column-full {
31 grid-column: 1 / -1;
32 }
33
34 @media (max-width: 991px) {
35 [class^="ezd-lg-col"]^="ezd-lg-col""] {
36 grid-column: 1 / -1;
37 }
38 }
39
40 @media (min-width: 576px) {
41 .ezd-sm-col-4 {
42 grid-column: span 4 / span 4;
43 }
44 .ezd-sm-col-3 {
45 grid-column: span 3 / span 3;
46 }
47 .ezd-sm-col-5 {
48 grid-column: span 5 / span 5;
49 }
50 .ezd-sm-col-6 {
51 grid-column: span 6 / span 6;
52 }
53 .ezd-sm-col-7 {
54 grid-column: span 7 / span 7;
55 }
56 .ezd-sm-col-8 {
57 grid-column: span 8 / span 8;
58 }
59 .ezd-sm-col-9 {
60 grid-column: span 9 / span 9;
61 }
62 .ezd-sm-col-10 {
63 grid-column: span 10 / span 10;
64 }
65 .ezd-sm-col-2 {
66 grid-column: span 2 / span 2;
67 }
68 .ezd-sm-col-11 {
69 grid-column: span 11 / span 11;
70 }
71 .ezd-sm-col-12 {
72 grid-column: span 12 / span 12;
73 }
74 }
75
76 @media (min-width: 768px) {
77 .ezd-md-col-4 {
78 grid-column: span 4 / span 4;
79 }
80 .ezd-md-col-3 {
81 grid-column: span 3 / span 3;
82 }
83 .ezd-md-col-5 {
84 grid-column: span 5 / span 5;
85 }
86 .ezd-md-col-6 {
87 grid-column: span 6 / span 6;
88 }
89 .ezd-md-col-7 {
90 grid-column: span 7 / span 7;
91 }
92 .ezd-md-col-8 {
93 grid-column: span 8 / span 8;
94 }
95 .ezd-md-col-9 {
96 grid-column: span 9 / span 9;
97 }
98 .ezd-md-col-10 {
99 grid-column: span 10 / span 10;
100 }
101 .ezd-md-col-11 {
102 grid-column: span 11 / span 11;
103 }
104 .ezd-md-col-12 {
105 grid-column: span 12 / span 12;
106 }
107 .ezd-md-col-2 {
108 grid-column: span 2 / span 2;
109 }
110 }
111
112 @media (min-width: 992px) {
113 .ezd-lg-col-4 {
114 grid-column: span 4 / span 4;
115 }
116 .ezd-lg-col-3 {
117 grid-column: span 3 / span 3;
118 }
119 .ezd-lg-col-5 {
120 grid-column: span 5 / span 5;
121 }
122 .ezd-lg-col-6 {
123 grid-column: span 6 / span 6;
124 }
125 .ezd-lg-col-8 {
126 grid-column: span 8 / span 8;
127 }
128 .ezd-lg-col-7 {
129 grid-column: span 7 / span 7;
130 }
131 .ezd-lg-col-9 {
132 grid-column: span 9 / span 9;
133 }
134 .ezd-lg-col-10 {
135 grid-column: span 10 / span 10;
136 }
137 .ezd-lg-col-11 {
138 grid-column: span 11 / span 11;
139 }
140 .ezd-lg-col-12 {
141 grid-column: span 12 / span 12;
142 }
143 .ezd-lg-col-2 {
144 grid-column: span 2 / span 2;
145 }
146 }
147
148 @media (min-width: 1200px) {
149 .ezd-xl-col-4 {
150 grid-column: span 4 / span 4;
151 }
152 .ezd-xl-col-3 {
153 grid-column: span 3 / span 3;
154 }
155 .ezd-xl-col-5 {
156 grid-column: span 5 / span 5;
157 }
158 .ezd-xl-col-6 {
159 grid-column: span 6 / span 6;
160 }
161 .ezd-xl-col-8 {
162 grid-column: span 8 / span 8;
163 }
164 .ezd-xl-col-7 {
165 grid-column: span 7 / span 7;
166 }
167 .ezd-xl-col-9 {
168 grid-column: span 9 / span 9;
169 }
170 .ezd-xl-col-10 {
171 grid-column: span 10 / span 10;
172 }
173 .ezd-xl-col-11 {
174 grid-column: span 11 / span 11;
175 }
176 .ezd-xl-col-12 {
177 grid-column: span 12 / span 12;
178 }
179 .ezd-xl-col-2 {
180 grid-column: span 2 / span 2;
181 }
182 }
183
184 .ezd-list-unstyled {
185 list-style: none;
186 margin: 0;
187 padding-left: 0;
188 }
189
190 .ezd-text-center {
191 text-align: center;
192 }
193
194 .ezd-d-flex {
195 display: flex;
196 flex-wrap: wrap;
197 margin-left: -10px;
198 margin-right: -10px;
199 [class*="ezd-colum-space-"]*="ezd-colum-space-""] {
200 padding-left: 10px;
201 padding-right: 10px;
202 }
203 }
204 .ezd-colum-space-6 {
205 width: 50%;
206 }
207 .ezd-colum-space-4 {
208 flex: 1;
209 width: calc(100% / 3);
210 box-sizing: border-box;
211 }