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