12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- /**
- * These styles should be loaded by the Block Editor only
- */
- /**
- * Abstracts
- * - Mixins, variables and functions
- */
- @import "../../varia/sass/abstracts/imports";
- /**
- * Child Theme Name
- */
- @import "config-child-theme-deep";
- /**
- * Base
- * - Reset the browser
- */
- @import "../../varia/sass/base/editor";
- /**
- * Elements
- * - Styles for basic HTML elemants
- */
- @import "../../varia/sass/elements/editor";
- /**
- * Blocks
- * - These styles replace key Gutenberg Block styles for fonts, colors, and
- * spacing with CSS-variables overrides
- */
- @import "../../varia/sass/blocks/editor";
- /**
- * Extras
- */
- $font_size_xxxxl: map-deep-get($config-global, "font", "size", "xxxxl");
- $font_size_xxxl: map-deep-get($config-global, "font", "size", "xxxl");
- $font_size_xxl: map-deep-get($config-global, "font", "size", "xxl");
- $font_size_xl: map-deep-get($config-global, "font", "size", "xl");
- $font_size_lg: map-deep-get($config-global, "font", "size", "lg");
- $font_size_md: map-deep-get($config-global, "font", "size", "md");
- .wp-block-cover,
- .wp-block-cover-image {
- h1,h2,h3,h4,h5,h6 {
- font-weight: 700;
- }
- @include media(desktop) {
- min-height: #{20 * map-deep-get($config-global, "spacing", "vertical")};
- h1 {
- font-size: (strip-unit( $font_size_xxxxl ) + 0em);
- }
- h2 {
- font-size: (strip-unit( $font_size_xxxl ) + 0em);
- }
- h3 {
- font-size: (strip-unit( $font_size_xxl ) + 0em);
- }
- h4 {
- font-size: (strip-unit( $font_size_xl ) + 0em);
- }
- h5 {
- font-size: (strip-unit( $font_size_lg ) + 0em);
- }
- h6 {
- font-size: (strip-unit( $font_size_md ) + 0em);
- }
- }
- }
|