-
Notifications
You must be signed in to change notification settings - Fork 17
/
editor.css
2629 lines (2576 loc) · 132 KB
/
editor.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
:root {
--sm-color-primary: #DDAB5D;
--sm-color-secondary: #39497C;
--sm-color-tertiary: #B12C4A;
--sm-dark-primary: #212B49;
--sm-dark-secondary: #34394B;
--sm-dark-tertiary: #141928;
--sm-light-primary: #FFFFFF;
--sm-light-secondary: #CCCCCC;
--sm-light-tertiary: #EEEFF2;
--theme-color-primary: var(--sm-color-primary);
--theme-color-secondary: var(--sm-color-secondary);
--theme-color-tertiary: var(--sm-color-tertiary);
--theme-dark-primary: var(--sm-dark-primary);
--theme-dark-secondary: var(--sm-dark-secondary);
--theme-dark-tertiary: var(--sm-dark-tertiary);
--theme-light-primary: var(--sm-light-primary);
--theme-light-secondary: var(--sm-light-secondary);
--theme-light-tertiary: var(--sm-light-tertiary);
--current-color-primary: var(--theme-color-primary);
--current-color-secondary: var(--theme-color-secondary);
--current-color-tertiary: var(--theme-color-tertiary);
--current-dark-primary: var(--theme-dark-primary);
--current-dark-secondary: var(--theme-dark-secondary);
--current-dark-tertiary: var(--theme-dark-tertiary);
--current-light-primary: var(--theme-light-primary);
--current-light-secondary: var(--theme-light-secondary);
--current-light-tertiary: var(--theme-light-tertiary); }
:root {
--theme-body-font-size: 16;
--theme-customify-fluid-unit: calc( var(--theme-spacing-fluid) / var(--theme-body-font-size) );
--theme-customify-fluid-font-size: calc( 1em / var(--theme-body-font-size) );
--theme-font-size-breakpoint: 1440;
--theme-font-size-minimum-value: 16;
--theme-font-size-minimum-value-breakpoint: 320;
--theme-font-size-slope-adjust: 0.6;
--theme-addon-unit: calc( 1vw - var(--theme-font-size-breakpoint) * 1px / 100 );
--theme-addon-multiplier: 0;
--theme-addon: calc( var(--theme-addon-unit) * var(--theme-addon-multiplier) );
--theme-headline-spacing-setting: -0.3;
--theme-headline-spacing: calc(var(--theme-headline-spacing-setting) * 1em);
--theme-body-font-family: Source Sans Pro, sans-serif;
--theme-body-line-height: 1.7;
--theme-body-font-weight: 400;
--theme-body-letter-spacing: -0.03em;
--theme-body-text-transform: inherit;
--theme-body-text-decoration: inherit;
--theme-body-font-size: 16;
--x0: var(--theme-font-size-minimum-value-breakpoint);
--y0: var(--theme-font-size-minimum-value);
--x1: var(--theme-font-size-breakpoint);
--theme-body-y1: var(--theme-body-font-size);
--theme-body-y0-new: calc( var(--theme-body-y1) - ( var(--theme-body-y1) - var(--y0) ) * var(--theme-font-size-slope-adjust));
--theme-body-a: calc( ( var(--theme-body-y1) - var(--theme-body-y0-new) ) / ( var(--x1) - var(--x0) ));
--theme-body-b: calc( var(--theme-body-y0-new) - var(--theme-body-a) * var(--x0));
--theme-body-x2: 100vw;
--theme-body-y2: calc( var(--theme-body-a) * var(--theme-body-x2) + var(--theme-body-b) * 1px);
--theme-body-final-font-size: calc( var(--theme-body-y2) + var(--theme-addon));
--theme-content-font-family: Source Sans Pro, sans-serif;
--theme-content-line-height: 1.6;
--theme-content-font-weight: inherit;
--theme-content-letter-spacing: -0.03em;
--theme-content-text-transform: inherit;
--theme-content-text-decoration: inherit;
--theme-content-font-size: 18;
--x0: var(--theme-font-size-minimum-value-breakpoint);
--y0: var(--theme-font-size-minimum-value);
--x1: var(--theme-font-size-breakpoint);
--theme-content-y1: var(--theme-content-font-size);
--theme-content-y0-new: calc( var(--theme-content-y1) - ( var(--theme-content-y1) - var(--y0) ) * var(--theme-font-size-slope-adjust));
--theme-content-a: calc( ( var(--theme-content-y1) - var(--theme-content-y0-new) ) / ( var(--x1) - var(--x0) ));
--theme-content-b: calc( var(--theme-content-y0-new) - var(--theme-content-a) * var(--x0));
--theme-content-x2: 100vw;
--theme-content-y2: calc( var(--theme-content-a) * var(--theme-content-x2) + var(--theme-content-b) * 1px);
--theme-content-final-font-size: calc( var(--theme-content-y2) + var(--theme-addon));
--theme-lead-font-family: Source Sans Pro, sans-serif;
--theme-lead-line-height: 1.6;
--theme-lead-font-weight: inherit;
--theme-lead-letter-spacing: -0.02em;
--theme-lead-text-transform: inherit;
--theme-lead-text-decoration: inherit;
--theme-lead-font-size: 24;
--x0: var(--theme-font-size-minimum-value-breakpoint);
--y0: var(--theme-font-size-minimum-value);
--x1: var(--theme-font-size-breakpoint);
--theme-lead-y1: var(--theme-lead-font-size);
--theme-lead-y0-new: calc( var(--theme-lead-y1) - ( var(--theme-lead-y1) - var(--y0) ) * var(--theme-font-size-slope-adjust));
--theme-lead-a: calc( ( var(--theme-lead-y1) - var(--theme-lead-y0-new) ) / ( var(--x1) - var(--x0) ));
--theme-lead-b: calc( var(--theme-lead-y0-new) - var(--theme-lead-a) * var(--x0));
--theme-lead-x2: 100vw;
--theme-lead-y2: calc( var(--theme-lead-a) * var(--theme-lead-x2) + var(--theme-lead-b) * 1px);
--theme-lead-final-font-size: calc( var(--theme-lead-y2) + var(--theme-addon));
--theme-display-font-family: Montserrat, sans-serif;
--theme-display-line-height: 1.03;
--theme-display-font-weight: 700;
--theme-display-letter-spacing: -0.03em;
--theme-display-text-transform: inherit;
--theme-display-text-decoration: inherit;
--theme-display-font-size: 115;
--x0: var(--theme-font-size-minimum-value-breakpoint);
--y0: var(--theme-font-size-minimum-value);
--x1: var(--theme-font-size-breakpoint);
--theme-display-y1: var(--theme-display-font-size);
--theme-display-y0-new: calc( var(--theme-display-y1) - ( var(--theme-display-y1) - var(--y0) ) * var(--theme-font-size-slope-adjust));
--theme-display-a: calc( ( var(--theme-display-y1) - var(--theme-display-y0-new) ) / ( var(--x1) - var(--x0) ));
--theme-display-b: calc( var(--theme-display-y0-new) - var(--theme-display-a) * var(--x0));
--theme-display-x2: 100vw;
--theme-display-y2: calc( var(--theme-display-a) * var(--theme-display-x2) + var(--theme-display-b) * 1px);
--theme-display-final-font-size: calc( var(--theme-display-y2) + var(--theme-addon));
--theme-heading-1-font-family: Montserrat, sans-serif;
--theme-heading-1-line-height: 1.1;
--theme-heading-1-font-weight: 700;
--theme-heading-1-letter-spacing: -0.03em;
--theme-heading-1-text-transform: inherit;
--theme-heading-1-text-decoration: inherit;
--theme-heading-1-font-size: 66;
--x0: var(--theme-font-size-minimum-value-breakpoint);
--y0: var(--theme-font-size-minimum-value);
--x1: var(--theme-font-size-breakpoint);
--theme-heading-1-y1: var(--theme-heading-1-font-size);
--theme-heading-1-y0-new: calc( var(--theme-heading-1-y1) - ( var(--theme-heading-1-y1) - var(--y0) ) * var(--theme-font-size-slope-adjust));
--theme-heading-1-a: calc( ( var(--theme-heading-1-y1) - var(--theme-heading-1-y0-new) ) / ( var(--x1) - var(--x0) ));
--theme-heading-1-b: calc( var(--theme-heading-1-y0-new) - var(--theme-heading-1-a) * var(--x0));
--theme-heading-1-x2: 100vw;
--theme-heading-1-y2: calc( var(--theme-heading-1-a) * var(--theme-heading-1-x2) + var(--theme-heading-1-b) * 1px);
--theme-heading-1-final-font-size: calc( var(--theme-heading-1-y2) + var(--theme-addon));
--theme-heading-2-font-family: Montserrat, sans-serif;
--theme-heading-2-line-height: 1.2;
--theme-heading-2-font-weight: 700;
--theme-heading-2-letter-spacing: -0.02em;
--theme-heading-2-text-transform: inherit;
--theme-heading-2-text-decoration: inherit;
--theme-heading-2-font-size: 40;
--x0: var(--theme-font-size-minimum-value-breakpoint);
--y0: var(--theme-font-size-minimum-value);
--x1: var(--theme-font-size-breakpoint);
--theme-heading-2-y1: var(--theme-heading-2-font-size);
--theme-heading-2-y0-new: calc( var(--theme-heading-2-y1) - ( var(--theme-heading-2-y1) - var(--y0) ) * var(--theme-font-size-slope-adjust));
--theme-heading-2-a: calc( ( var(--theme-heading-2-y1) - var(--theme-heading-2-y0-new) ) / ( var(--x1) - var(--x0) ));
--theme-heading-2-b: calc( var(--theme-heading-2-y0-new) - var(--theme-heading-2-a) * var(--x0));
--theme-heading-2-x2: 100vw;
--theme-heading-2-y2: calc( var(--theme-heading-2-a) * var(--theme-heading-2-x2) + var(--theme-heading-2-b) * 1px);
--theme-heading-2-final-font-size: calc( var(--theme-heading-2-y2) + var(--theme-addon));
--theme-heading-3-font-family: Montserrat, sans-serif;
--theme-heading-3-line-height: 1.2;
--theme-heading-3-font-weight: 700;
--theme-heading-3-letter-spacing: -0.02em;
--theme-heading-3-text-transform: inherit;
--theme-heading-3-text-decoration: inherit;
--theme-heading-3-font-size: 32;
--x0: var(--theme-font-size-minimum-value-breakpoint);
--y0: var(--theme-font-size-minimum-value);
--x1: var(--theme-font-size-breakpoint);
--theme-heading-3-y1: var(--theme-heading-3-font-size);
--theme-heading-3-y0-new: calc( var(--theme-heading-3-y1) - ( var(--theme-heading-3-y1) - var(--y0) ) * var(--theme-font-size-slope-adjust));
--theme-heading-3-a: calc( ( var(--theme-heading-3-y1) - var(--theme-heading-3-y0-new) ) / ( var(--x1) - var(--x0) ));
--theme-heading-3-b: calc( var(--theme-heading-3-y0-new) - var(--theme-heading-3-a) * var(--x0));
--theme-heading-3-x2: 100vw;
--theme-heading-3-y2: calc( var(--theme-heading-3-a) * var(--theme-heading-3-x2) + var(--theme-heading-3-b) * 1px);
--theme-heading-3-final-font-size: calc( var(--theme-heading-3-y2) + var(--theme-addon));
--theme-heading-4-font-family: Montserrat, sans-serif;
--theme-heading-4-line-height: 1.2;
--theme-heading-4-font-weight: 700;
--theme-heading-4-letter-spacing: -0.02em;
--theme-heading-4-text-transform: inherit;
--theme-heading-4-text-decoration: inherit;
--theme-heading-4-font-size: 24;
--x0: var(--theme-font-size-minimum-value-breakpoint);
--y0: var(--theme-font-size-minimum-value);
--x1: var(--theme-font-size-breakpoint);
--theme-heading-4-y1: var(--theme-heading-4-font-size);
--theme-heading-4-y0-new: calc( var(--theme-heading-4-y1) - ( var(--theme-heading-4-y1) - var(--y0) ) * var(--theme-font-size-slope-adjust));
--theme-heading-4-a: calc( ( var(--theme-heading-4-y1) - var(--theme-heading-4-y0-new) ) / ( var(--x1) - var(--x0) ));
--theme-heading-4-b: calc( var(--theme-heading-4-y0-new) - var(--theme-heading-4-a) * var(--x0));
--theme-heading-4-x2: 100vw;
--theme-heading-4-y2: calc( var(--theme-heading-4-a) * var(--theme-heading-4-x2) + var(--theme-heading-4-b) * 1px);
--theme-heading-4-final-font-size: calc( var(--theme-heading-4-y2) + var(--theme-addon));
--theme-heading-5-font-family: Montserrat, sans-serif;
--theme-heading-5-line-height: 1.5;
--theme-heading-5-font-weight: 500;
--theme-heading-5-letter-spacing: 0.017em;
--theme-heading-5-text-transform: inherit;
--theme-heading-5-text-decoration: inherit;
--theme-heading-5-font-size: 17;
--x0: var(--theme-font-size-minimum-value-breakpoint);
--y0: var(--theme-font-size-minimum-value);
--x1: var(--theme-font-size-breakpoint);
--theme-heading-5-y1: var(--theme-heading-5-font-size);
--theme-heading-5-y0-new: calc( var(--theme-heading-5-y1) - ( var(--theme-heading-5-y1) - var(--y0) ) * var(--theme-font-size-slope-adjust));
--theme-heading-5-a: calc( ( var(--theme-heading-5-y1) - var(--theme-heading-5-y0-new) ) / ( var(--x1) - var(--x0) ));
--theme-heading-5-b: calc( var(--theme-heading-5-y0-new) - var(--theme-heading-5-a) * var(--x0));
--theme-heading-5-x2: 100vw;
--theme-heading-5-y2: calc( var(--theme-heading-5-a) * var(--theme-heading-5-x2) + var(--theme-heading-5-b) * 1px);
--theme-heading-5-final-font-size: calc( var(--theme-heading-5-y2) + var(--theme-addon));
--theme-heading-6-font-family: Montserrat, sans-serif;
--theme-heading-6-line-height: 1.5;
--theme-heading-6-font-weight: 500;
--theme-heading-6-letter-spacing: 0.017em;
--theme-heading-6-text-transform: inherit;
--theme-heading-6-text-decoration: inherit;
--theme-heading-6-font-size: 17;
--x0: var(--theme-font-size-minimum-value-breakpoint);
--y0: var(--theme-font-size-minimum-value);
--x1: var(--theme-font-size-breakpoint);
--theme-heading-6-y1: var(--theme-heading-6-font-size);
--theme-heading-6-y0-new: calc( var(--theme-heading-6-y1) - ( var(--theme-heading-6-y1) - var(--y0) ) * var(--theme-font-size-slope-adjust));
--theme-heading-6-a: calc( ( var(--theme-heading-6-y1) - var(--theme-heading-6-y0-new) ) / ( var(--x1) - var(--x0) ));
--theme-heading-6-b: calc( var(--theme-heading-6-y0-new) - var(--theme-heading-6-a) * var(--x0));
--theme-heading-6-x2: 100vw;
--theme-heading-6-y2: calc( var(--theme-heading-6-a) * var(--theme-heading-6-x2) + var(--theme-heading-6-b) * 1px);
--theme-heading-6-final-font-size: calc( var(--theme-heading-6-y2) + var(--theme-addon));
--theme-navigation-font-family: Montserrat, sans-serif;
--theme-navigation-line-height: 1.5;
--theme-navigation-font-weight: 500;
--theme-navigation-letter-spacing: 0.017em;
--theme-navigation-text-transform: inherit;
--theme-navigation-text-decoration: inherit;
--theme-navigation-font-size: 17;
--x0: var(--theme-font-size-minimum-value-breakpoint);
--y0: var(--theme-font-size-minimum-value);
--x1: var(--theme-font-size-breakpoint);
--theme-navigation-y1: var(--theme-navigation-font-size);
--theme-navigation-y0-new: calc( var(--theme-navigation-y1) - ( var(--theme-navigation-y1) - var(--y0) ) * var(--theme-font-size-slope-adjust));
--theme-navigation-a: calc( ( var(--theme-navigation-y1) - var(--theme-navigation-y0-new) ) / ( var(--x1) - var(--x0) ));
--theme-navigation-b: calc( var(--theme-navigation-y0-new) - var(--theme-navigation-a) * var(--x0));
--theme-navigation-x2: 100vw;
--theme-navigation-y2: calc( var(--theme-navigation-a) * var(--theme-navigation-x2) + var(--theme-navigation-b) * 1px);
--theme-navigation-final-font-size: calc( var(--theme-navigation-y2) + var(--theme-addon));
--theme-meta-font-family: Montserrat, sans-serif;
--theme-meta-line-height: 1.5;
--theme-meta-font-weight: 500;
--theme-meta-letter-spacing: 0.017em;
--theme-meta-text-transform: inherit;
--theme-meta-text-decoration: inherit;
--theme-meta-font-size: 17;
--x0: var(--theme-font-size-minimum-value-breakpoint);
--y0: var(--theme-font-size-minimum-value);
--x1: var(--theme-font-size-breakpoint);
--theme-meta-y1: var(--theme-meta-font-size);
--theme-meta-y0-new: calc( var(--theme-meta-y1) - ( var(--theme-meta-y1) - var(--y0) ) * var(--theme-font-size-slope-adjust));
--theme-meta-a: calc( ( var(--theme-meta-y1) - var(--theme-meta-y0-new) ) / ( var(--x1) - var(--x0) ));
--theme-meta-b: calc( var(--theme-meta-y0-new) - var(--theme-meta-a) * var(--x0));
--theme-meta-x2: 100vw;
--theme-meta-y2: calc( var(--theme-meta-a) * var(--theme-meta-x2) + var(--theme-meta-b) * 1px);
--theme-meta-final-font-size: calc( var(--theme-meta-y2) + var(--theme-addon));
--theme-button-font-family: Montserrat, sans-serif;
--theme-button-line-height: 1.2;
--theme-button-font-weight: 500;
--theme-button-letter-spacing: 0.03em;
--theme-button-text-transform: capitalize;
--theme-button-text-decoration: inherit;
--theme-button-font-size: 17;
--x0: var(--theme-font-size-minimum-value-breakpoint);
--y0: var(--theme-font-size-minimum-value);
--x1: var(--theme-font-size-breakpoint);
--theme-button-y1: var(--theme-button-font-size);
--theme-button-y0-new: calc( var(--theme-button-y1) - ( var(--theme-button-y1) - var(--y0) ) * var(--theme-font-size-slope-adjust));
--theme-button-a: calc( ( var(--theme-button-y1) - var(--theme-button-y0-new) ) / ( var(--x1) - var(--x0) ));
--theme-button-b: calc( var(--theme-button-y0-new) - var(--theme-button-a) * var(--x0));
--theme-button-x2: 100vw;
--theme-button-y2: calc( var(--theme-button-a) * var(--theme-button-x2) + var(--theme-button-b) * 1px);
--theme-button-final-font-size: calc( var(--theme-button-y2) + var(--theme-addon));
--theme-accent-font-family: Yesteryear, cursive;
--theme-accent-line-height: inherit;
--theme-accent-font-weight: 400;
--theme-accent-letter-spacing: normal;
--theme-accent-text-transform: none;
--theme-accent-text-decoration: inherit;
--theme-accent-final-font-size: inherit; }
@media only screen and (min-width: 1440px) {
:root {
--theme-font-size-slope-adjust: 0.6;
--theme-addon-multiplier: 1; } }
:root {
--theme-content-width-normal: calc(38 * var(--theme-content-final-font-size));
--theme-content-width-wide: calc(65 * var(--theme-content-final-font-size));
--theme-wrapper-sides-spacing: var(--theme-spacing-fluid-medium); }
:root {
--theme-spacing: 1rem;
--theme-spacing-micro: calc( var( --theme-spacing ) / 4 );
--theme-spacing-tiny: calc( var( --theme-spacing ) / 2 );
--theme-spacing-default: calc( var( --theme-spacing ) * 1 );
--theme-spacing-small: calc( var( --theme-spacing ) * 2 );
--theme-spacing-medium: calc( var( --theme-spacing ) * 3 );
--theme-spacing-large: calc( var( --theme-spacing ) * 4 );
--theme-spacing-xl: calc( var( --theme-spacing ) * 5 );
--theme-spacing-xxl: calc( var( --theme-spacing ) * 8 );
--theme-spacing-fluid: 0.45rem;
--theme-spacing-fluid-micro: calc( var( --theme-spacing-fluid ) / 4 );
--theme-spacing-fluid-tiny: calc( var( --theme-spacing-fluid ) / 2 );
--theme-spacing-fluid-default: calc( var( --theme-spacing-fluid ) * 1 );
--theme-spacing-fluid-small: calc( var( --theme-spacing-fluid ) * 2 );
--theme-spacing-fluid-medium: calc( var( --theme-spacing-fluid ) * 3 );
--theme-spacing-fluid-large: calc( var( --theme-spacing-fluid ) * 4 );
--theme-spacing-fluid-xl: calc( var( --theme-spacing-fluid ) * 5 );
--theme-spacing-fluid-xxl: calc( var( --theme-spacing-fluid ) * 8 ); }
@media screen and (min-width: 20em) {
:root {
--theme-spacing-fluid: calc(0.45rem + 0.55 * ((100vw - 20em) / 70)); } }
@media screen and (min-width: 90em) {
:root {
--theme-spacing-fluid: 1rem; } }
:root {
--theme-header-logo-height-setting: 22;
--theme-header-logo-height: calc( var(--theme-header-logo-height-setting) * var(--theme-customify-fluid-unit) );
--theme-header-height-setting: 118;
--theme-header-height: calc( var(--theme-header-height-setting) * var(--theme-customify-fluid-unit) );
--theme-header-links-spacing-setting: 32;
--theme-header-links-spacing: calc( var(--theme-header-links-spacing-setting) * var(--theme-customify-fluid-font-size) );
--theme-header-sides-spacing-setting: 48;
--theme-header-sides-spacing: calc( var(--theme-header-sides-spacing-setting) * var(--theme-customify-fluid-unit) ); }
:root {
--theme-transition-duration: 0.4s;
--theme-transition-easing: cubic-bezier(0.25, 0.1, 0.25, 1);
--theme-transition: all var(--theme-transition-duration) var(--theme-transition-easing); }
@media only screen and (min-width: 1440px) {
:root {
--theme-font-size-slope-adjust: 0; } }
.editor-styles-wrapper .wp-block-button__link {
transition: var(--current-button-transition); }
.editor-styles-wrapper .wp-block-button:not(.is-style-text) .wp-block-button__link {
display: inline-block;
text-decoration: none;
cursor: pointer;
--theme-button-text-color: var(--current-light-primary);
--theme-button-background-color: var(--current-dark-primary);
--theme-button-border-color: var(--current-dark-primary);
--theme-button-hover-text-color: var(--current-dark-primary);
--theme-button-hover-background-color: transparent;
--theme-button-hover-border-color: var(--current-dark-primary);
--theme-button-border-width: 2px;
--theme-button-border-style: solid;
--theme-button-border-radius: 0;
--theme-button-x-padding: 1.5em;
--theme-button-y-padding: 0.75em;
--theme-button-padding: var(--theme-button-y-padding) var(--theme-button-x-padding);
--theme-button-transition-duration: 0.4s;
--theme-button-transition-easing: cubic-bezier(0.25, 0.1, 0.25, 1);
--theme-button-transition: all var(--theme-button-transition-duration) var(--theme-button-transition-easing);
--theme-button-hover-transition: var(--theme-button-transition);
--current-button-background-color: var(--theme-button-background-color);
--current-button-border-color: var(--theme-button-border-color);
--current-button-text-color: var(--theme-button-text-color);
--current-button-transition: var(--theme-button-transition);
font-family: var(--current-font-family);
font-size: var(--current-font-size);
line-height: var(--current-line-height);
font-weight: var(--current-font-weight);
letter-spacing: var(--current-letter-spacing);
text-transform: var(--current-text-transform);
text-decoration: var(--current-text-decoration);
--current-font-family: var(--theme-button-font-family);
--current-font-size: var(--theme-button-final-font-size);
--current-line-height: var(--theme-button-line-height);
--current-font-weight: var(--theme-button-font-weight);
--current-letter-spacing: var(--theme-button-letter-spacing);
--current-text-transform: var(--theme-button-text-transform);
--current-text-decoration: var(--theme-button-text-decoration); }
.editor-styles-wrapper .wp-block-button:not(.is-style-text) .wp-block-button__link:hover {
--current-button-background-color: var(--theme-button-hover-background-color);
--current-button-border-color: var(--theme-button-hover-border-color);
--current-button-text-color: var(--theme-button-hover-text-color);
--current-button-transition: var(--theme-button-hover-transition); }
.editor-styles-wrapper .wp-block-button:not(.is-style-text) .wp-block-button__link:not(.has-background) {
background-color: var(--current-button-background-color); }
.editor-styles-wrapper .wp-block-button:not(.is-style-text) .wp-block-button__link:not(.has-text-color) {
color: var(--current-button-text-color); }
.editor-styles-wrapper .wp-block-button:not([class*="is-style"]) .wp-block-button__link:not(.has-background) {
background-color: transparent;
transform: translateZ(0);
will-change: transform;
backface-visibility: hidden; }
.editor-styles-wrapper .wp-block-button:not([class*="is-style"]) .wp-block-button__link:not(.has-background):before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: calc(100% + var(--theme-button-border-width));
will-change: transform;
-webkit-backface-visibility: hidden;
transition: var(--current-button-transition);
transition-property: transform;
z-index: -1; }
.editor-styles-wrapper .wp-block-button:not([class*="is-style"]) .wp-block-button__link:not(.has-background):before {
transform: scale3d(1, 1, 1);
transform-origin: right;
background-color: var(--theme-button-background-color); }
.editor-styles-wrapper .wp-block-button:not([class*="is-style"]) .wp-block-button__link:not(.has-background):hover:before {
transform: scale3d(0, 1, 1); }
.editor-styles-wrapper .wp-block-button.is-style-primary .wp-block-button__link[class] {
background-color: transparent;
transform: translateZ(0);
will-change: transform;
backface-visibility: hidden; }
.editor-styles-wrapper .wp-block-button.is-style-primary .wp-block-button__link[class]:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: calc(100% + var(--theme-button-border-width));
will-change: transform;
-webkit-backface-visibility: hidden;
transition: var(--current-button-transition);
transition-property: transform;
z-index: -1; }
.editor-styles-wrapper .wp-block-button.is-style-primary .wp-block-button__link[class]:before {
transform: scale3d(1, 1, 1);
transform-origin: right;
background-color: var(--theme-button-background-color); }
.editor-styles-wrapper .wp-block-button.is-style-primary .wp-block-button__link[class]:hover:before {
transform: scale3d(0, 1, 1); }
.editor-styles-wrapper .wp-block-button.is-style-secondary .wp-block-button__link[class] {
background-color: transparent;
transform: translateZ(0);
will-change: transform;
backface-visibility: hidden;
--current-button-text-color: var(--theme-button-hover-text-color); }
.editor-styles-wrapper .wp-block-button.is-style-secondary .wp-block-button__link[class]:before {
content: '';
position: absolute;
left: 0;
top: 0;
width: 100%;
height: calc(100% + var(--theme-button-border-width));
will-change: transform;
-webkit-backface-visibility: hidden;
transition: var(--current-button-transition);
transition-property: transform;
z-index: -1; }
.editor-styles-wrapper .wp-block-button.is-style-secondary .wp-block-button__link[class]:before {
transform: scale3d(0, 1, 1);
transform-origin: left;
background-color: var(--theme-button-background-color); }
.editor-styles-wrapper .wp-block-button.is-style-secondary .wp-block-button__link[class]:hover {
--current-button-text-color: var(--theme-button-text-color); }
.editor-styles-wrapper .wp-block-button.is-style-secondary .wp-block-button__link[class]:hover:before {
transform: scale3d(1, 1, 1); }
.editor-styles-wrapper .is-style-text .wp-block-button__link {
padding: 0;
background: none;
border-width: 0;
position: relative;
padding-right: 1.15em;
padding-bottom: .3em;
margin-right: calc( -1 * 1.15em);
margin-bottom: -.3em;
text-decoration: none;
--theme-button-text-color: var(--current-color-primary);
--theme-button-hover-text-color: var(--current-color-primary); }
.editor-styles-wrapper .is-style-text .wp-block-button__link:before {
content: '';
position: absolute;
bottom: 0;
right: 1.15em;
width: calc(100% - 1.15em);
height: .1em;
transform: scale3d(1, 1, 1);
will-change: transform;
-webkit-backface-visibility: hidden;
transform-origin: left;
background: currentColor;
transition: var(--theme-button-transition);
transition-property: transform; }
.editor-styles-wrapper .is-style-text .wp-block-button__link:after {
content: '';
opacity: 0;
transform: translate(0, -50%) scale(-1, 1); }
@supports (mask-clip: initial) or (-webkit-mask-clip: initial) {
.editor-styles-wrapper .is-style-text .wp-block-button__link:after {
position: absolute;
top: 50%;
right: 0;
display: inline-block;
width: 1.15em;
height: 1.15em;
mask: url("assets/images/icon-arrow.svg") no-repeat 50% 50%;
mask-size: cover;
-webkit-mask: url("assets/images/icon-arrow.svg") no-repeat 50% 50%;
-webkit-mask-size: cover;
background-color: currentColor;
vertical-align: text-bottom;
transform: translate(0, -50%) scale(-1, 1);
transition: var(--theme-button-transition);
transition-property: opacity, transform; } }
.editor-styles-wrapper .is-style-text .wp-block-button__link:not([disabled]):hover {
color: var(--theme-button-text-color); }
.editor-styles-wrapper .is-style-text .wp-block-button__link:not([disabled]):hover:before {
transform: scale3d(0, 1, 1);
transform-origin: right; }
.editor-styles-wrapper .is-style-text .wp-block-button__link:not([disabled]):hover:after {
opacity: 1;
transform: translate(0.4em, -50%) scale(-1, 1); }
.editor-styles-wrapper .c-headline {
display: flex;
flex-direction: column;
align-items: center;
width: 100%; }
.editor-styles-wrapper .c-headline.has-text-align-left {
align-items: flex-start; }
.editor-styles-wrapper .c-headline.has-text-align-right {
align-items: flex-end; }
.editor-styles-wrapper .c-headline__word {
display: inline-flex !important; }
.editor-styles-wrapper .c-headline__primary,
.editor-styles-wrapper .c-headline__secondary {
display: block; }
.editor-styles-wrapper .c-headline__secondary + .c-headline__primary,
.editor-styles-wrapper .c-headline > .editor-rich-text + .editor-rich-text {
margin-top: var(--theme-headline-spacing); }
.editor-styles-wrapper .c-headline__secondary,
.editor-styles-wrapper .c-headline > .editor-rich-text:first-child {
position: relative;
z-index: 10; }
.editor-styles-wrapper .c-headline__secondary {
font-family: var(--current-font-family);
font-size: var(--current-font-size);
line-height: var(--current-line-height);
font-weight: var(--current-font-weight);
letter-spacing: var(--current-letter-spacing);
text-transform: var(--current-text-transform);
text-decoration: var(--current-text-decoration);
--current-font-family: var(--theme-accent-font-family);
--current-font-size: var(--theme-accent-final-font-size);
--current-line-height: var(--theme-accent-line-height);
--current-font-weight: var(--theme-accent-font-weight);
--current-letter-spacing: var(--theme-accent-letter-spacing);
--current-text-transform: var(--theme-accent-text-transform);
--current-text-decoration: var(--theme-accent-text-decoration);
color: var(--current-color-primary); }
.editor-styles-wrapper .c-headline__secondary {
font-size: 1.3636em;
white-space: nowrap; }
.editor-styles-wrapper h1.c-headline.has-larger-font-size .c-headline__secondary {
font-size: 0.87em; }
.editor-styles-wrapper h1.c-headline.has-larger-font-size .c-headline__secondary + .c-headline__primary,
.editor-styles-wrapper h1.c-headline.has-larger-font-size > .editor-rich-text + .editor-rich-text {
margin-top: -0.3em; }
.editor-styles-wrapper figure > :not(:first-child) {
--element-spacing: var(--theme-spacing-tiny);
margin-top: var(--element-spacing); }
.editor-styles-wrapper pre,
.editor-styles-wrapper code {
border: 1px solid;
border-radius: 0.2em;
background: var(--current-light-secondary); }
.editor-styles-wrapper pre {
padding: 1em; }
.editor-styles-wrapper code {
padding: 0.1em; }
.editor-styles-wrapper pre code {
background: transparent; }
.editor-styles-wrapper .c-separator {
--separator-line-thickness: 2px;
--separator-arrow-width: 5px;
display: flex;
justify-content: center;
align-items: center;
line-height: 1; }
.editor-styles-wrapper .c-separator__symbol {
padding-left: 1em;
padding-right: 1em;
opacity: 0.5; }
.editor-styles-wrapper .c-separator__symbol svg {
width: auto;
height: auto; }
.novablocks-hero .editor-styles-wrapper .c-separator__symbol {
opacity: 1; }
.editor-styles-wrapper .c-separator__line {
flex-grow: 1; }
.editor-styles-wrapper .c-separator__line:after {
content: "";
display: block;
width: 100%;
height: var(--separator-line-thickness);
background: currentColor; }
.editor-styles-wrapper .c-separator__arrow {
height: var(--separator-line-thickness);
border: var(--separator-arrow-width) solid transparent; }
.editor-styles-wrapper .c-separator__arrow--left {
border-left-color: currentColor;
border-right: 0; }
.editor-styles-wrapper .c-separator__arrow--right {
border-right-color: currentColor;
border-left: 0; }
.editor-styles-wrapper .wp-block-separator.is-style-simple {
width: 100%; }
.editor-styles-wrapper .wp-block-separator.is-style-simple .c-separator:after {
content: "";
display: block;
width: 100%;
height: var(--separator-line-thickness);
background: currentColor; }
.editor-styles-wrapper .wp-block-separator.is-style-simple .c-separator__arrow,
.editor-styles-wrapper .wp-block-separator.is-style-simple .c-separator__symbol,
.editor-styles-wrapper .wp-block-separator.is-style-simple .c-separator__line {
display: none; }
.editor-styles-wrapper .wp-block-separator.is-style-decorative .c-separator__arrow,
.editor-styles-wrapper .wp-block-separator.is-style-decorative .c-separator__line,
.editor-styles-wrapper .wp-block-separator:not([class*="is-style"]) .c-separator__arrow,
.editor-styles-wrapper .wp-block-separator:not([class*="is-style"]) .c-separator__line {
display: none; }
/* Layout */
.editor-block-list__layout > :not([data-align="wide"]):not([data-align="full"]),
.block-editor-block-list__layout > :not([data-align="wide"]):not([data-align="full"]) {
max-width: var(--theme-content-width-normal); }
.editor-block-list__layout .wp-block[data-align=wide],
.block-editor-block-list__layout .wp-block[data-align=wide] {
max-width: var(--theme-content-width-wide); }
.editor-block-list__layout > [data-align="full"],
.block-editor-block-list__layout > [data-align="full"] {
max-width: none; }
/* Typography */
.editor-styles-wrapper {
/* Audio Block */
/* Button Block */
/* Columns Blocks */
/* Cover Block */
/* Embed Blocks */
/* Gallery Block */
/*
.wp-block-latest-comments.has-avatars .avatar {
margin-right: 10px;
}
.wp-block-latest-comments__comment-excerpt p {
font-size: 14px;
margin: 5px 0 20px;
padding-top: 0;
}
.wp-block-latest-comments.has-avatars .wp-block-latest-comments__comment {
min-height: 36px;
}
*/
/* Latest Comments Block */
/* Latest Posts Block */
/* Media Block */
/*
* Here we here not able to use a mobile first CSS approach.
* Custom widths are set using inline styles, and on mobile,
* we need 100% width, so we use important to overwrite the inline style.
* If the style were set on mobile first, on desktop styles,
* we would have no way of setting the style again to the inline style.
*/
/* Pullquote Block */
/* Social Links Block */
/* Table Block */
/* Links */
/* Media */ }
.editor-styles-wrapper ul.wp-block-archives-list[class] {
list-style: none;
padding-left: 0; }
.editor-styles-wrapper ul.wp-block-archives-list[class] ul {
padding-left: 0;
list-style: none;
counter-reset: submenu; }
.editor-styles-wrapper ul.wp-block-archives-list[class] ul a:before {
content: "\2013 " counters(submenu, "– ", none);
counter-increment: submenu; }
.editor-styles-wrapper ul.wp-block-archives-list[class] a {
text-decoration: none; }
.editor-styles-wrapper .wp-block-audio audio {
width: 100%; }
.editor-styles-wrapper .wp-block-button.is-style-squared {
--theme-button-border-radius: 0; }
.editor-styles-wrapper .wp-block-button.is-style-outline {
--theme-button-background-color: transparent;
--theme-button-text-color: currentColor;
--theme-button-border-color: currentColor;
--theme-button-hover-background-color: transparent;
--theme-button-hover-text-color: currentColor;
--theme-button-hover-border-color: currentColor; }
.editor-styles-wrapper .wp-block-button.alignleft {
text-align: left; }
.editor-styles-wrapper .wp-block-button.aligncenter {
text-align: center; }
.editor-styles-wrapper .wp-block-button.alignright {
text-align: right; }
.editor-styles-wrapper .wp-block-button__link {
display: inline-block;
text-decoration: none;
cursor: pointer;
--theme-button-text-color: var(--current-light-primary);
--theme-button-background-color: var(--current-dark-primary);
--theme-button-border-color: var(--current-dark-primary);
--theme-button-hover-text-color: var(--current-dark-primary);
--theme-button-hover-background-color: transparent;
--theme-button-hover-border-color: var(--current-dark-primary);
--theme-button-border-width: 2px;
--theme-button-border-style: solid;
--theme-button-border-radius: 0;
--theme-button-x-padding: 1.5em;
--theme-button-y-padding: 0.75em;
--theme-button-padding: var(--theme-button-y-padding) var(--theme-button-x-padding);
--theme-button-transition-duration: 0.4s;
--theme-button-transition-easing: cubic-bezier(0.25, 0.1, 0.25, 1);
--theme-button-transition: all var(--theme-button-transition-duration) var(--theme-button-transition-easing);
--theme-button-hover-transition: var(--theme-button-transition);
--current-button-background-color: var(--theme-button-background-color);
--current-button-border-color: var(--theme-button-border-color);
--current-button-text-color: var(--theme-button-text-color);
--current-button-transition: var(--theme-button-transition);
padding: var(--theme-button-padding);
border: var(--theme-button-border-width) var(--theme-button-border-style) var(--current-button-border-color);
border-radius: var(--theme-button-border-radius);
font-family: var(--current-font-family);
font-size: var(--current-font-size);
line-height: var(--current-line-height);
font-weight: var(--current-font-weight);
letter-spacing: var(--current-letter-spacing);
text-transform: var(--current-text-transform);
text-decoration: var(--current-text-decoration);
--current-font-family: var(--theme-button-font-family);
--current-font-size: var(--theme-button-final-font-size);
--current-line-height: var(--theme-button-line-height);
--current-font-weight: var(--theme-button-font-weight);
--current-letter-spacing: var(--theme-button-letter-spacing);
--current-text-transform: var(--theme-button-text-transform);
--current-text-decoration: var(--theme-button-text-decoration);
color: var(--current-button-text-color); }
.editor-styles-wrapper .wp-block-button__link:hover {
--current-button-background-color: var(--theme-button-hover-background-color);
--current-button-border-color: var(--theme-button-hover-border-color);
--current-button-text-color: var(--theme-button-hover-text-color);
--current-button-transition: var(--theme-button-hover-transition); }
.editor-styles-wrapper .wp-block-buttons[class][class][class] {
margin-top: var(--element-spacing);
display: flex;
align-items: center;
flex-wrap: wrap; }
.editor-styles-wrapper .wp-block-buttons[class][class][class]:first-child {
--block-top-spacing: 1;
--element-spacing: calc( var(--block-top-spacing, 1) * var(--theme-spacing-fluid-small) * var(--novablocks-element-spacing-multiplier, 1) ); }
.editor-styles-wrapper .wp-block-buttons[class][class][class] .wp-block,
.editor-styles-wrapper .wp-block-buttons[class][class][class] .wp-block-button {
margin-top: 0 !important; }
.editor-styles-wrapper .wp-block-buttons[class][class][class] .wp-block:not(:last-child), .editor-styles-wrapper .wp-block-buttons[class][class][class] .wp-block:not(:first-child):not(:last-child),
.editor-styles-wrapper .wp-block-buttons[class][class][class] .wp-block-button:not(:last-child),
.editor-styles-wrapper .wp-block-buttons[class][class][class] .wp-block-button:not(:first-child):not(:last-child) {
margin-right: var(--element-spacing); }
.editor-styles-wrapper .wp-block-buttons[class][class][class] .block-editor-block-list__layout {
display: flex;
align-items: center;
flex-wrap: wrap; }
.editor-styles-wrapper .wp-block-buttons[class][class][class] .block-editor-block-list__layout > * {
margin-left: 0;
margin-right: 0; }
.editor-styles-wrapper .wp-block-buttons[class][class][class].aligncenter {
justify-content: center; }
.editor-styles-wrapper .wp-block-buttons[class][class][class].aligncenter .wp-block,
.editor-styles-wrapper .wp-block-buttons[class][class][class].aligncenter .wp-block-button {
margin-left: calc( var(--element-spacing) / 2);
margin-right: calc( var(--element-spacing) / 2); }
.editor-styles-wrapper .wp-block-buttons[class][class][class].alignright {
justify-content: flex-end; }
.editor-styles-wrapper .wp-block-buttons[class][class][class].alignright .wp-block,
.editor-styles-wrapper .wp-block-buttons[class][class][class].alignright .wp-block-button {
margin-left: var(--element-spacing);
margin-right: 0; }
.editor-styles-wrapper .wp-block-buttons[class][class][class].is-content-justification-left {
justify-content: flex-start; }
.editor-styles-wrapper .wp-block-buttons[class][class][class].is-content-justification-center {
justify-content: center; }
.editor-styles-wrapper .wp-block-buttons[class][class][class].is-content-justification-right {
justify-content: flex-end; }
.editor-styles-wrapper .wp-block-buttons[class][class][class] .wp-block-button__link[class] {
display: block; }
.editor-styles-wrapper ul.wp-block-categories__list[class] {
list-style: none;
padding-left: 0; }
.editor-styles-wrapper ul.wp-block-categories__list[class] ul {
padding-left: 0;
list-style: none;
counter-reset: submenu; }
.editor-styles-wrapper ul.wp-block-categories__list[class] ul a:before {
content: "\2013 " counters(submenu, "– ", none);
counter-increment: submenu; }
.editor-styles-wrapper ul.wp-block-categories__list[class] a {
text-decoration: none; }
.editor-styles-wrapper .wp-block-columns:not(:first-child),
.editor-styles-wrapper .wp-block-columns + :not(:first-child) {
--element-spacing: var(--theme-spacing-fluid-large); }
.editor-styles-wrapper .wp-block-columns .editor-styles-wrapper .wp-block-columns:not(:first-child),
.editor-styles-wrapper .wp-block-columns .editor-styles-wrapper .wp-block-columns + :not(:first-child) {
--element-spacing: var(--theme-spacing-fluid-medium); }
.editor-styles-wrapper .wp-block-column {
min-width: 0;
word-break: break-word;
overflow-wrap: break-word; }
.editor-styles-wrapper :root {
--wp-block-columns-spacing: calc(var(--theme-spacing-fluid-medium) + var(--theme-spacing-fluid-tiny)); }
.editor-styles-wrapper .wp-block-columns {
display: flex; }
.editor-styles-wrapper .wp-block-columns > * {
flex: 0 1 100%; }
.editor-styles-wrapper .wp-block-columns > :not(:first-child) {
margin-left: var(--wp-block-columns-spacing); }
@media not screen and (min-width: 1000px) {
.editor-styles-wrapper .wp-block-columns {
flex-wrap: wrap; }
.editor-styles-wrapper .wp-block-columns > * {
flex-basis: calc(50% - var(--wp-block-columns-spacing) / 2) !important;
margin-bottom: var(--wp-block-columns-spacing); }
.editor-styles-wrapper .wp-block-columns > :nth-child(2n+1) {
margin-left: 0; }
.editor-styles-wrapper .wp-block-columns > :last-child,
.editor-styles-wrapper .wp-block-columns > :nth-child(2n+1):nth-last-child(2) {
margin-bottom: 0; }
.editor-styles-wrapper .wp-block-columns .editor-styles-wrapper .wp-block-columns {
flex-wrap: wrap; }
.editor-styles-wrapper .wp-block-columns .editor-styles-wrapper .wp-block-columns > * {
flex-basis: 100% !important; }
.editor-styles-wrapper .wp-block-columns .editor-styles-wrapper .wp-block-columns > :nth-child(n) {
margin-left: 0; }
.editor-styles-wrapper .wp-block-columns .editor-styles-wrapper .wp-block-columns > :nth-child(n):not(:last-child) {
margin-bottom: var(--wp-block-columns-spacing); } }
@media not screen and (min-width: 768px) {
.editor-styles-wrapper .wp-block-columns {
flex-wrap: wrap; }
.editor-styles-wrapper .wp-block-columns > * {
flex-basis: 100% !important; }
.editor-styles-wrapper .wp-block-columns > :nth-child(n) {
margin-left: 0; }
.editor-styles-wrapper .wp-block-columns > :nth-child(n):not(:last-child) {
margin-bottom: var(--wp-block-columns-spacing); } }
.editor-styles-wrapper .wp-block-columns.are-vertically-aligned-top {
align-items: flex-start; }
.editor-styles-wrapper .wp-block-columns.are-vertically-aligned-center {
align-items: center; }
.editor-styles-wrapper .wp-block-columns.are-vertically-aligned-bottom {
align-items: flex-end; }
.editor-styles-wrapper .wp-block-column.is-vertically-aligned-top {
align-self: flex-start; }
.editor-styles-wrapper .wp-block-column.is-vertically-aligned-center {
align-self: center; }
.editor-styles-wrapper .wp-block-column.is-vertically-aligned-bottom {
align-self: flex-end; }
.editor-styles-wrapper .wp-block-columns .block-editor-inner-blocks {
width: 100%; }
.editor-styles-wrapper .wp-block-cover {
position: relative;
display: flex;
align-items: center;
justify-content: center;
padding: 2em;
min-height: 430px;
text-align: center;
color: #FFFFFF;
background-color: #000000;
background-size: cover; }
.editor-styles-wrapper .wp-block-cover a {
color: inherit; }
.editor-styles-wrapper .wp-block-cover.has-background-dim:before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 200;
background-color: inherit;
opacity: 0.5; }
.editor-styles-wrapper .wp-block-cover.has-background-dim-10:before {
opacity: 0.1; }
.editor-styles-wrapper .wp-block-cover.has-background-dim-20:before {
opacity: 0.2; }
.editor-styles-wrapper .wp-block-cover.has-background-dim-30:before {
opacity: 0.3; }
.editor-styles-wrapper .wp-block-cover.has-background-dim-40:before {
opacity: 0.4; }
.editor-styles-wrapper .wp-block-cover.has-background-dim-50:before {
opacity: 0.5; }
.editor-styles-wrapper .wp-block-cover.has-background-dim-60:before {
opacity: 0.6; }
.editor-styles-wrapper .wp-block-cover.has-background-dim-70:before {
opacity: 0.7; }
.editor-styles-wrapper .wp-block-cover.has-background-dim-80:before {
opacity: 0.8; }
.editor-styles-wrapper .wp-block-cover.has-background-dim-90:before {
opacity: 0.9; }
.editor-styles-wrapper .wp-block-cover.has-background-dim-100:before {
opacity: 1; }
.editor-styles-wrapper .wp-block-cover.has-parallax {
background-attachment: fixed; }
.editor-styles-wrapper .wp-block-cover-text {
color: inherit; }
.editor-styles-wrapper .wp-block-cover > * {
position: relative;
z-index: 300; }
.editor-styles-wrapper .wp-block-cover__video-background {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 100; }
.editor-styles-wrapper .wp-block-cover .block-editor-block-list__block {
color: inherit; }
.editor-styles-wrapper .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper {
position: relative; }
.editor-styles-wrapper .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper:before {
content: "";
display: block; }
.editor-styles-wrapper .wp-block-embed.wp-has-aspect-ratio .wp-block-embed__wrapper > iframe {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: 100%; }
.editor-styles-wrapper .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper {
padding-top: 75%; }
.editor-styles-wrapper .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper {
padding-top: 56.25%; }
.editor-styles-wrapper .wp-block-gallery {
--block-grid-spacing: 20px;
list-style: none;
display: flex;
flex-wrap: wrap; }
.editor-styles-wrapper .wp-block-gallery.columns-2 .blocks-gallery-grid > * {
flex: 0 1 auto;
margin-right: var(--block-grid-spacing);
margin-top: var(--block-grid-spacing);
width: calc((100% - 1 * var(--block-grid-spacing))/2); }
.editor-styles-wrapper .wp-block-gallery.columns-2 .blocks-gallery-grid > *:last-child {
margin-right: 0; }
.editor-styles-wrapper .wp-block-gallery.columns-2 .blocks-gallery-grid > *:nth-child(-n + 2) {
margin-top: 0; }
.editor-styles-wrapper .wp-block-gallery.columns-2 .blocks-gallery-grid > *:nth-child(2n) {
margin-right: 0; }
.editor-styles-wrapper .wp-block-gallery.columns-3 .blocks-gallery-grid > * {
flex: 0 1 auto;
margin-right: var(--block-grid-spacing);
margin-top: var(--block-grid-spacing);
width: calc((100% - 2 * var(--block-grid-spacing))/3); }
.editor-styles-wrapper .wp-block-gallery.columns-3 .blocks-gallery-grid > *:last-child {
margin-right: 0; }
.editor-styles-wrapper .wp-block-gallery.columns-3 .blocks-gallery-grid > *:nth-child(-n + 3) {
margin-top: 0; }
.editor-styles-wrapper .wp-block-gallery.columns-3 .blocks-gallery-grid > *:nth-child(3n) {
margin-right: 0; }
.editor-styles-wrapper .wp-block-gallery.columns-4 .blocks-gallery-grid > * {
flex: 0 1 auto;
margin-right: var(--block-grid-spacing);
margin-top: var(--block-grid-spacing);
width: calc((100% - 3 * var(--block-grid-spacing))/4); }
.editor-styles-wrapper .wp-block-gallery.columns-4 .blocks-gallery-grid > *:last-child {
margin-right: 0; }
.editor-styles-wrapper .wp-block-gallery.columns-4 .blocks-gallery-grid > *:nth-child(-n + 4) {
margin-top: 0; }
.editor-styles-wrapper .wp-block-gallery.columns-4 .blocks-gallery-grid > *:nth-child(4n) {
margin-right: 0; }
.editor-styles-wrapper .wp-block-gallery.columns-5 .blocks-gallery-grid > * {