PluginProbe
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder / 2.14.0
aBlocks – Gutenberg Blocks, User Dashboard Builder, Popup Builder, Form Builder & Animation Builder v2.14.0
2.14.0 2.13.0 2.13.1 2.12.0 2.11.1 2.11.0 2.10.0 2.9.0 2.7.4 2.7.5 2.7.6 2.7.7 2.8.0 2.8.1 2.9.1 trunk 1.0 1.0-beta1 1.0-beta2 1.0-beta3 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 All 81 releases
← All changes | templates/email/template-header.php +475 -0 2.7.6 → 2.14.0 View file →
@@ -1,0 +1,475 @@
1 +<?php
2 +if ( ! defined( 'ABSPATH' ) ) {
3 + exit; // Exit if accessed directly
4 +}
5 +?>
6 +<!doctype html>
7 +<html>
8 +
9 +<head>
10 + <meta name="viewport" content="width=device-width, initial-scale=1.0" />
11 + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
12 + <style>
13 + img {
14 + border: none;
15 + -ms-interpolation-mode: bicubic;
16 + max-width: 100%;
17 + }
18 +
19 + body {
20 + background-color: #f6f6f6;
21 + width: 100%;
22 + font-family: sans-serif;
23 + -webkit-font-smoothing: antialiased;
24 + font-size: 14px;
25 + line-height: 1.4;
26 + margin: 0;
27 + padding: 0;
28 + -ms-text-size-adjust: 100%;
29 + -webkit-text-size-adjust: 100%;
30 + }
31 +
32 + /* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something */
33 + .ablocks-container {
34 + display: block;
35 + margin: 0 auto !important;
36 + /* makes it centered */
37 + max-width: 580px;
38 + padding: 10px;
39 + width: 580px;
40 + background: white;
41 + }
42 +
43 + /* This should also be a block element, so that it will fill 100% of the .ablocks-container */
44 + .ablocks-content {
45 + box-sizing: border-box;
46 + display: block;
47 + margin: 0 auto;
48 + max-width: 580px;
49 + padding: 45px;
50 + }
51 +
52 + /* HEADER, FOOTER, MAIN */
53 + .ablocks-main {
54 + background: #ffffff;
55 + border-radius: 3px;
56 + width: 100%;
57 + }
58 +
59 + .ablocks-wrapper {
60 + box-sizing: border-box;
61 + }
62 + .ablocks-wrapper p {
63 + font-size: 14px;
64 + margin-bottom: 10px;
65 + }
66 + .ablocks-wrapper .ablocks-entry-button {
67 + display: flex;
68 + column-gap: 15px;
69 + }
70 +
71 + .ablocks-content-block {
72 + padding-bottom: 10px;
73 + padding-top: 10px;
74 + }
75 +
76 + .ablocks-footer {
77 + clear: both;
78 + margin-top: 10px;
79 + width: 100%;
80 + margin-top: 30px;
81 + font-size: 15px;
82 + }
83 +
84 + .ablocks-footer p,
85 + .ablocks-footer span,
86 + .ablocks-footer a {
87 + color: #999999;
88 + }
89 +
90 + /* TYPOGRAPHY */
91 + h1,
92 + h2,
93 + h3,
94 + h4,
95 + h5,
96 + h6 {
97 + color: #000000;
98 + font-family: sans-serif;
99 + font-weight: 500;
100 + line-height: 1.4;
101 + margin: 0;
102 + margin-bottom: 10px;
103 + }
104 +
105 + h1 {
106 + font-size: 35px;
107 + }
108 +
109 + p,
110 + ul,
111 + ol {
112 + font-family: sans-serif;
113 + font-size: 14px;
114 + font-weight: normal;
115 + margin: 0;
116 + margin-bottom: 15px;
117 + }
118 +
119 + p li,
120 + ul li,
121 + ol li {
122 + list-style-position: inside;
123 + margin-left: 5px;
124 + }
125 +
126 + a {
127 + color: #3498db;
128 + text-decoration: underline;
129 + }
130 +
131 + /* BUTTONS */
132 +
133 + .ablocks-btn-primary,
134 + .ablocks-btn-secondary {
135 + box-sizing: border-box;
136 + display: inline-block;
137 + text-decoration: none;
138 + font-size: 14px;
139 + padding: 12px 30px;
140 + background: #7B68EE;
141 + color: #FFFFFF !important;
142 + border-radius: 6px;
143 + font-weight: normal;
144 + }
145 + .ablocks-btn-secondary {
146 + background: #EAEBEE;
147 + color: #0A083A !important;
148 + }
149 +
150 + h5.ablocks-main-heading {
151 + font-size: 21px;
152 + margin-bottom: 25px;
153 + }
154 +
155 + /* OTHER STYLES THAT MIGHT BE USEFUL */
156 + .ablocks-last {
157 + margin-bottom: 0;
158 + }
159 +
160 + .ablocks-first {
161 + margin-top: 0;
162 + }
163 +
164 + .ablocks-align-center {
165 + text-align: center;
166 + }
167 +
168 + .ablocks-align-right {
169 + text-align: right;
170 + }
171 +
172 + .ablocks-align-left {
173 + text-align: left;
174 + }
175 +
176 + .ablocks-clear {
177 + clear: both;
178 + }
179 +
180 + .ablocks-mt0 {
181 + margin-top: 0;
182 + }
183 +
184 + .ablocks-mb0 {
185 + margin-bottom: 0;
186 + }
187 +
188 + .ablocks-preheader {
189 + color: transparent;
190 + display: none;
191 + height: 0;
192 + max-height: 0;
193 + max-width: 0;
194 + opacity: 0;
195 + overflow: hidden;
196 + mso-hide: all;
197 + visibility: hidden;
198 + width: 0;
199 + }
200 +
201 + .ablocks-powered-by a {
202 + text-decoration: none;
203 + }
204 +
205 + hr {
206 + border: 0;
207 + border-bottom: 1px solid #f6f6f6;
208 + margin: 20px 0;
209 + }
210 +
211 + .ablocks-ql-align-center {
212 + text-align: left;
213 + }
214 + .ablocks-ql-align-center {
215 + text-align: center;
216 + }
217 + .ablocks-ql-align-right {
218 + text-align: right;
219 + }
220 + .ablocks-ql-align-justify {
221 + text-align: justify;
222 + }
223 +
224 +
225 + ol li.ablocks-ql-indent-1 {
226 + counter-increment: list-1
227 + }
228 +
229 + ol li.ablocks-ql-indent-1:before {
230 + content: counter(list-1,lower-alpha) ". "
231 + }
232 +
233 + ol li.ablocks-ql-indent-1 {
234 + counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9
235 + }
236 +
237 + ol li.ablocks-ql-indent-2 {
238 + counter-increment: list-2
239 + }
240 +
241 + ol li.ablocks-ql-indent-2:before {
242 + content: counter(list-2,lower-roman) ". "
243 + }
244 +
245 + ol li.ablocks-ql-indent-2 {
246 + counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9
247 + }
248 +
249 + ol li.ablocks-ql-indent-3 {
250 + counter-increment: list-3
251 + }
252 +
253 + ol li.ablocks-ql-indent-3:before {
254 + content: counter(list-3,decimal) ". "
255 + }
256 +
257 + ol li.ablocks-ql-indent-3 {
258 + counter-reset: list-4 list-5 list-6 list-7 list-8 list-9
259 + }
260 +
261 + ol li.ablocks-ql-indent-4 {
262 + counter-increment: list-4
263 + }
264 +
265 + ol li.ablocks-ql-indent-4:before {
266 + content: counter(list-4,lower-alpha) ". "
267 + }
268 +
269 + ol li.ablocks-ql-indent-4 {
270 + counter-reset: list-5 list-6 list-7 list-8 list-9
271 + }
272 +
273 + ol li.ablocks-ql-indent-5 {
274 + counter-increment: list-5
275 + }
276 +
277 + ol li.ablocks-ql-indent-5:before {
278 + content: counter(list-5,lower-roman) ". "
279 + }
280 +
281 + ol li.ablocks-ql-indent-5 {
282 + counter-reset: list-6 list-7 list-8 list-9
283 + }
284 +
285 + ol li.ablocks-ql-indent-6 {
286 + counter-increment: list-6
287 + }
288 +
289 + ol li.ablocks-ql-indent-6:before {
290 + content: counter(list-6,decimal) ". "
291 + }
292 +
293 + ol li.ablocks-ql-indent-6 {
294 + counter-reset: list-7 list-8 list-9
295 + }
296 +
297 + ol li.ablocks-ql-indent-7 {
298 + counter-increment: list-7
299 + }
300 +
301 + ol li.ablocks-ql-indent-7:before {
302 + content: counter(list-7,lower-alpha) ". "
303 + }
304 +
305 + ol li.ablocks-ql-indent-7 {
306 + counter-reset: list-8 list-9
307 + }
308 +
309 + ol li.ablocks-ql-indent-8 {
310 + counter-increment: list-8
311 + }
312 +
313 + ol li.ablocks-ql-indent-8:before {
314 + content: counter(list-8,lower-roman) ". "
315 + }
316 +
317 + ol li.ablocks-ql-indent-8 {
318 + counter-reset: list-9
319 + }
320 +
321 + ol li.ablocks-ql-indent-9 {
322 + counter-increment: list-9
323 + }
324 +
325 + ol li.ablocks-ql-indent-9:before {
326 + content: counter(list-9,decimal) ". "
327 + }
328 +
329 + .ablocks-ql-indent-1:not(.ablocks-ql-direction-rtl) {
330 + padding-left: 3em
331 + }
332 +
333 + li.ablocks-ql-indent-1:not(.ablocks-ql-direction-rtl) {
334 + padding-left: 4.5em
335 + }
336 +
337 + .ablocks-ql-indent-1.ablocks-ql-direction-rtl.ablocks-ql-align-right {
338 + padding-right: 3em
339 + }
340 +
341 + li.ablocks-ql-indent-1.ablocks-ql-direction-rtl.ablocks-ql-align-right {
342 + padding-right: 4.5em
343 + }
344 +
345 + .ablocks-ql-indent-2:not(.ablocks-ql-direction-rtl) {
346 + padding-left: 6em
347 + }
348 +
349 + li.ablocks-ql-indent-2:not(.ablocks-ql-direction-rtl) {
350 + padding-left: 7.5em
351 + }
352 +
353 + .ablocks-ql-indent-2.ablocks-ql-direction-rtl.ablocks-ql-align-right {
354 + padding-right: 6em
355 + }
356 +
357 + li.ablocks-ql-indent-2.ablocks-ql-direction-rtl.ablocks-ql-align-right {
358 + padding-right: 7.5em
359 + }
360 +
361 + .ablocks-ql-indent-3:not(.ablocks-ql-direction-rtl) {
362 + padding-left: 9em
363 + }
364 +
365 + li.ablocks-ql-indent-3:not(.ablocks-ql-direction-rtl) {
366 + padding-left: 10.5em
367 + }
368 +
369 + .ablocks-ql-indent-3.ablocks-ql-direction-rtl.ablocks-ql-align-right {
370 + padding-right: 9em
371 + }
372 +
373 + li.ablocks-ql-indent-3.ablocks-ql-direction-rtl.ablocks-ql-align-right {
374 + padding-right: 10.5em
375 + }
376 +
377 + .ablocks-ql-indent-4:not(.ablocks-ql-direction-rtl) {
378 + padding-left: 12em
379 + }
380 +
381 + li.ablocks-ql-indent-4:not(.ablocks-ql-direction-rtl) {
382 + padding-left: 13.5em
383 + }
384 +
385 + .ablocks-ql-indent-4.ablocks-ql-direction-rtl.ablocks-ql-align-right {
386 + padding-right: 12em
387 + }
388 +
389 + li.ablocks-ql-indent-4.ablocks-ql-direction-rtl.ablocks-ql-align-right {
390 + padding-right: 13.5em
391 + }
392 +
393 + .ablocks-ql-indent-5:not(.ablocks-ql-direction-rtl) {
394 + padding-left: 15em
395 + }
396 +
397 + li.ablocks-ql-indent-5:not(.ablocks-ql-direction-rtl) {
398 + padding-left: 16.5em
399 + }
400 +
401 + .ablocks-ql-indent-5.ablocks-ql-direction-rtl.ablocks-ql-align-right {
402 + padding-right: 15em
403 + }
404 +
405 + li.ablocks-ql-indent-5.ablocks-ql-direction-rtl.ablocks-ql-align-right {
406 + padding-right: 16.5em
407 + }
408 +
409 + .ablocks-ql-indent-6:not(.ablocks-ql-direction-rtl) {
410 + padding-left: 18em
411 + }
412 +
413 + li.ablocks-ql-indent-6:not(.ablocks-ql-direction-rtl) {
414 + padding-left: 19.5em
415 + }
416 +
417 + .ablocks-ql-indent-6.ablocks-ql-direction-rtl.ablocks-ql-align-right {
418 + padding-right: 18em
419 + }
420 +
421 + li.ablocks-ql-indent-6.ablocks-ql-direction-rtl.ablocks-ql-align-right {
422 + padding-right: 19.5em
423 + }
424 +
425 + .ablocks-ql-indent-7:not(.ablocks-ql-direction-rtl) {
426 + padding-left: 21em
427 + }
428 +
429 + li.ablocks-ql-indent-7:not(.ablocks-ql-direction-rtl) {
430 + padding-left: 22.5em
431 + }
432 +
433 + .ablocks-ql-indent-7.ablocks-ql-direction-rtl.ablocks-ql-align-right {
434 + padding-right: 21em
435 + }
436 +
437 + li.ablocks-ql-indent-7.ablocks-ql-direction-rtl.ablocks-ql-align-right {
438 + padding-right: 22.5em
439 + }
440 +
441 + .ablocks-ql-indent-8:not(.ablocks-ql-direction-rtl) {
442 + padding-left: 24em
443 + }
444 +
445 + li.ablocks-ql-indent-8:not(.ablocks-ql-direction-rtl) {
446 + padding-left: 25.5em
447 + }
448 +
449 + .ablocks-ql-indent-8.ablocks-ql-direction-rtl.ablocks-ql-align-right {
450 + padding-right: 24em
451 + }
452 +
453 + li.ablocks-ql-indent-8.ablocks-ql-direction-rtl.ablocks-ql-align-right {
454 + padding-right: 25.5em
455 + }
456 +
457 + .ablocks-ql-indent-9:not(.ablocks-ql-direction-rtl) {
458 + padding-left: 27em
459 + }
460 +
461 + li.ablocks-ql-indent-9:not(.ablocks-ql-direction-rtl) {
462 + padding-left: 28.5em
463 + }
464 +
465 + .ablocks-ql-indent-9.ablocks-ql-direction-rtl.ablocks-ql-align-right {
466 + padding-right: 27em
467 + }
468 +
469 + li.ablocks-ql-indent-9.ablocks-ql-direction-rtl.ablocks-ql-align-right {
470 + padding-right: 28.5em
471 + }
472 + </style>
473 +</head>
474 +
475 +<body>