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