123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023 |
- /**
- * These styles should be loaded by the Block Editor only
- */
- /**
- * Abstracts
- * - Mixins, variables and functions
- */
- /**
- * Abstracts
- * - Mixins, variables and functions
- */
- /* Sass Functions go here */
- /**
- * Map deep get
- * @author Hugo Giraudel
- * @access public
- * @param {Map} $map - Map
- * @param {Arglist} $keys - Key chain
- * @return {*} - Desired value
- *
- * Example:
- * $m-breakpoint: map-deep-get($__prefix-default-config, "layouts", "M");
- */
- /**
- * Deep set function to set a value in nested maps
- * @author Hugo Giraudel
- * @access public
- * @param {Map} $map - Map
- * @param {List} $keys - Key chaine
- * @param {*} $value - Value to assign
- * @return {Map}
- *
- * Example:
- * $__prefix-default-config: map-deep-set($__prefix-default-config, "layouts" "M", 650px);
- */
- /**
- * jQuery-style extend function
- * - Child themes can use this function to `reset` the values in
- * config maps without editing the `master` Sass files.
- * - src: https://www.sitepoint.com/extra-map-functions-sass/
- * - About `map-merge()`:
- * - - only takes 2 arguments
- * - - is not recursive
- * @param {Map} $map - first map
- * @param {ArgList} $maps - other maps
- * @param {Bool} $deep - recursive mode
- * @return {Map}
- *
- * Examples:
- $grid-configuration-default: (
- 'columns': 12,
- 'layouts': (
- 'small': 800px,
- 'medium': 1000px,
- 'large': 1200px,
- ),
- );
- $grid-configuration-custom: (
- 'layouts': (
- 'large': 1300px,
- 'huge': 1500px
- ),
- );
- $grid-configuration-user: (
- 'direction': 'ltr',
- 'columns': 16,
- 'layouts': (
- 'large': 1300px,
- 'huge': 1500px
- ),
- );
- // $deep: false
- $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user);
- // --> ("columns": 16, "layouts": (("large": 1300px, "huge": 1500px)), "direction": "ltr")
- // $deep: true
- $grid-configuration: map-extend($grid-configuration-default, $grid-configuration-custom, $grid-configuration-user, true);
- // --> ("columns": 16, "layouts": (("small": 800px, "medium": 1000px, "large": 1300px, "huge": 1500px)), "direction": "ltr")
- */
- /**
- * Button
- */
- /**
- * Cover
- */
- /**
- * Heading
- */
- /**
- * List
- */
- /**
- * Pullquote
- */
- /**
- * Quote
- */
- /**
- * Separator
- */
- /**
- * Responsive breakpoints
- * - breakpoints values are defined in _config-global.scss
- */
- /**
- * Align wide widths
- * - Sets .alignwide widths
- */
- /**
- * Crop Text Boundry
- * - Sets a fixed-width on content within alignwide and alignfull blocks
- */
- /**
- * Add font-family using CSS variables.
- * It also adds the proper fallback for browsers without support.
- */
- /**
- * Child Theme Name
- */
- /**
- * Redefine Sass map values for child theme output.
- * - See: style-child-theme.scss
- */
- /**
- * Global
- */
- /**
- * Elements
- */
- /**
- * Button
- */
- /**
- * Cover
- */
- /**
- * Heading
- */
- /**
- * List
- */
- /**
- * Pullquote
- */
- /**
- * Quote
- */
- /**
- * Separator
- */
- /**
- * Header
- */
- /**
- * Footer
- */
- /**
- * Base
- * - Reset the browser
- */
- body {
- color: #444444;
- background-color: white;
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-family: var(--font-base, Lora, Baskerville, Georgia, Times, serif);
- font-size: 18px;
- font-weight: normal;
- line-height: 1.78;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- }
- .editor-post-title__block {
- font-size: 18px;
- }
- p {
- font-size: 1em;
- line-height: 1.78;
- }
- a {
- color: #222222;
- }
- a:hover {
- color: #444444;
- }
- button,
- a {
- cursor: pointer;
- }
- /**
- * Elements
- * - Styles for basic HTML elemants
- */
- /**
- * Elements
- * - Styles for basic HTML elemants
- */
- blockquote {
- padding-left: 16px;
- }
- blockquote p {
- font-size: 1.728rem;
- letter-spacing: normal;
- line-height: 1.125;
- }
- blockquote cite,
- blockquote footer {
- font-size: 0.83333rem;
- letter-spacing: normal;
- }
- blockquote > * {
- margin-top: 16px;
- margin-bottom: 16px;
- }
- blockquote > *:first-child {
- margin-top: 0;
- }
- blockquote > *:last-child {
- margin-bottom: 0;
- }
- blockquote.alignleft, blockquote.alignright {
- padding-left: inherit;
- }
- blockquote.alignleft p, blockquote.alignright p {
- font-size: 1.44rem;
- max-width: inherit;
- width: inherit;
- }
- blockquote.alignleft cite,
- blockquote.alignleft footer, blockquote.alignright cite,
- blockquote.alignright footer {
- font-size: 0.69444rem;
- letter-spacing: normal;
- }
- figcaption {
- color: #757575;
- font-size: 0.69444rem;
- margin-top: calc(0.5 * 16px);
- margin-bottom: 16px;
- text-align: center;
- }
- .alignleft figcaption,
- .alignright figcaption {
- margin-bottom: 0;
- }
- /* WP Smiley */
- .page-content .wp-smiley,
- .entry-content .wp-smiley,
- .comment-content .wp-smiley {
- border: none;
- margin-bottom: 0;
- margin-top: 0;
- padding: 0;
- }
- /* Make sure embeds and iframes fit their containers. */
- embed,
- iframe,
- object {
- max-width: 100%;
- }
- /**
- * Blocks
- * - These styles replace key Gutenberg Block styles for fonts, colors, and
- * spacing with CSS-variables overrides
- */
- /**
- * Block Styles for the Editor
- *
- * - These styles replace key Gutenberg Block styles for fonts, colors, and
- * spacing with CSS-variables overrides in the Block Editor
- * - In the future the Block styles may get compiled to individual .css
- * files and conditionally loaded
- */
- .wp-block-button {
- /* Default Style */
- /* Outline Style */
- /* Squared Style */
- }
- .wp-block-button .wp-block-button__link {
- color: white;
- font-weight: bold;
- font-family: Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
- font-family: var(--font-base, Raleway, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
- font-size: 0.83333em;
- line-height: 1;
- background-color: #222222;
- border-radius: 0;
- padding: 16px 20px;
- }
- .wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus, .wp-block-button .wp-block-button__link.has-focus {
- color: white;
- background-color: #444444;
- }
- .wp-block-button.is-style-outline .wp-block-button__link {
- color: #222222;
- background: transparent;
- border: 2px solid currentcolor;
- }
- .wp-block-button.is-style-outline .wp-block-button__link:hover, .wp-block-button.is-style-outline .wp-block-button__link:focus, .wp-block-button.is-style-outline .wp-block-button__link.has-focus {
- color: #444444;
- }
- .wp-block-button.is-style-squared .wp-block-button__link {
- border-radius: 0;
- }
- .wp-block-cover,
- .wp-block-cover-image {
- background-color: #444444;
- color: white;
- min-height: 90vh;
- /* default & custom background-color */
- /* Treating H2 separately to account for legacy /core styles */
- }
- .wp-block-cover .wp-block-cover__inner-container,
- .wp-block-cover .wp-block-cover-image-text,
- .wp-block-cover .wp-block-cover-text,
- .wp-block-cover .block-editor-block-list__block,
- .wp-block-cover-image .wp-block-cover__inner-container,
- .wp-block-cover-image .wp-block-cover-image-text,
- .wp-block-cover-image .wp-block-cover-text,
- .wp-block-cover-image .block-editor-block-list__block {
- color: currentColor;
- }
- .wp-block-cover .wp-block-cover__inner-container a,
- .wp-block-cover .wp-block-cover-image-text a,
- .wp-block-cover .wp-block-cover-text a,
- .wp-block-cover .block-editor-block-list__block a,
- .wp-block-cover-image .wp-block-cover__inner-container a,
- .wp-block-cover-image .wp-block-cover-image-text a,
- .wp-block-cover-image .wp-block-cover-text a,
- .wp-block-cover-image .block-editor-block-list__block a {
- color: currentColor;
- }
- .wp-block-cover:not([class*='background-color']) .wp-block-cover__inner-container,
- .wp-block-cover:not([class*='background-color']) .wp-block-cover-image-text,
- .wp-block-cover:not([class*='background-color']) .wp-block-cover-text,
- .wp-block-cover:not([class*='background-color']) .block-editor-block-list__block,
- .wp-block-cover-image:not([class*='background-color']) .wp-block-cover__inner-container,
- .wp-block-cover-image:not([class*='background-color']) .wp-block-cover-image-text,
- .wp-block-cover-image:not([class*='background-color']) .wp-block-cover-text,
- .wp-block-cover-image:not([class*='background-color']) .block-editor-block-list__block {
- color: white;
- }
- .wp-block-cover h2,
- .wp-block-cover-image h2 {
- font-size: 2.48832em;
- letter-spacing: normal;
- line-height: 1.125;
- padding: 0;
- max-width: inherit;
- text-align: inherit;
- }
- .wp-block-cover h2.has-text-align-left,
- .wp-block-cover-image h2.has-text-align-left {
- text-align: left;
- }
- .wp-block-cover h2.has-text-align-center,
- .wp-block-cover-image h2.has-text-align-center {
- text-align: center;
- }
- .wp-block-cover h2.has-text-align-right,
- .wp-block-cover-image h2.has-text-align-right {
- text-align: right;
- }
- .wp-block-heading h1, h1, .h1,
- .wp-block-heading h2, h2, .h2,
- .wp-block-heading h3, h3, .h3,
- .wp-block-heading h4, h4, .h4,
- .wp-block-heading h5, h5, .h5,
- .wp-block-heading h6, h6, .h6 {
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
- font-weight: bold;
- clear: both;
- }
- .wp-block-heading h1, h1, .h1 {
- font-size: 2.98598em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-heading h2, h2, .h2 {
- font-size: 2.48832em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-heading h3, h3, .h3 {
- font-size: 2.0736em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-heading h4, h4, .h4 {
- font-size: 1.728em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-heading h5, h5, .h5 {
- font-size: 1.44em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-heading h6, h6, .h6 {
- font-size: 1.2em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- /* Center image block by default in the editor */
- .wp-block-image > div {
- text-align: center;
- }
- [data-type="core/image"] .block-editor-block-list__block-edit figure.is-resized {
- margin: 0 auto;
- }
- .wp-block-gallery figcaption {
- margin-bottom: 0;
- }
- .wp-block-group.has-background {
- padding: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- .wp-block-group.has-background {
- padding: 32px;
- }
- }
- .wp-block[data-type="core/group"] > .editor-block-list__block-edit > div > .wp-block-group.has-background > .wp-block-group__inner-container > .editor-inner-blocks > .editor-block-list__layout > .wp-block[data-align=full] {
- margin: 0;
- width: 100%;
- }
- .wp-block-latest-comments {
- margin-left: 0;
- }
- .wp-block-latest-posts {
- padding-left: 0;
- }
- .wp-block-latest-posts > li > a {
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
- font-size: 1.728rem;
- font-weight: bold;
- line-height: 1.125;
- }
- .wp-block-latest-posts:not(.is-grid) > li {
- /* Vertical margins logic */
- margin-top: 32px;
- margin-bottom: 32px;
- }
- .wp-block-latest-posts:not(.is-grid) > li:first-child {
- margin-top: 0;
- }
- .wp-block-latest-posts:not(.is-grid) > li:last-child {
- margin-bottom: 0;
- }
- .wp-block-latest-posts .wp-block-latest-posts__post-date {
- color: #757575;
- font-size: 0.83333rem;
- line-height: 1.78;
- }
- [class*="inner-container"] .wp-block-latest-posts .wp-block-latest-posts__post-date,
- .has-background .wp-block-latest-posts .wp-block-latest-posts__post-date {
- color: currentColor;
- }
- .wp-block-latest-posts .wp-block-latest-posts__post-excerpt,
- .wp-block-latest-posts .wp-block-latest-posts__post-full-content {
- font-size: 0.83333rem;
- line-height: 1.78;
- margin: 0;
- }
- .block-library-list ul,
- .block-library-list ol {
- margin: 32px 0;
- padding-left: 32px;
- }
- .block-library-list li > ul,
- .block-library-list li > ol {
- margin: 0;
- }
- .wp-block-media-text .block-editor-inner-blocks {
- padding-right: 16px;
- padding-left: 16px;
- }
- @media only screen and (min-width: 640px) {
- .wp-block-media-text .block-editor-inner-blocks {
- padding-right: 32px;
- padding-left: 32px;
- }
- }
- .wp-block-media-text[style*="background-color"]:not(.has-background-background-color) a {
- color: currentColor;
- }
- .a8c-posts-list {
- padding-left: 0;
- }
- p.has-background {
- padding: 16px 16px;
- }
- p.has-background:not(.has-background-background-color) a {
- color: currentColor;
- }
- .wp-block-pullquote {
- padding: calc( 3 * 16px) 0;
- margin-left: 0;
- margin-right: 0;
- text-align: center;
- border-top-color: #E0E0E0;
- border-top-width: 2px;
- border-bottom-color: #E0E0E0;
- border-bottom-width: 2px;
- color: #444444;
- /**
- * Block Options
- */
- }
- .wp-block-pullquote blockquote {
- padding-left: 0;
- }
- .wp-block-pullquote p {
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
- font-size: 1.728em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .wp-block-pullquote a {
- color: currentColor;
- }
- .wp-block-pullquote .wp-block-pullquote__citation,
- .wp-block-pullquote cite,
- .wp-block-pullquote footer {
- color: #757575;
- font-size: 0.83333em;
- letter-spacing: normal;
- }
- .wp-block-pullquote:not(.is-style-solid-color) {
- background: none;
- }
- .wp-block-pullquote.is-style-solid-color {
- background-color: #222222;
- color: white;
- }
- .wp-block-pullquote.is-style-solid-color.alignleft blockquote,
- .wp-block-pullquote.is-style-solid-color.alignright blockquote {
- padding-left: 16px;
- padding-right: 16px;
- max-width: inherit;
- }
- .wp-block-pullquote.is-style-solid-color blockquote {
- padding-left: 0;
- }
- .wp-block-pullquote.is-style-solid-color .wp-block-pullquote__citation,
- .wp-block-pullquote.is-style-solid-color cite,
- .wp-block-pullquote.is-style-solid-color footer {
- color: currentColor;
- }
- .wp-block-pullquote.alignwide > p,
- .wp-block-pullquote.alignfull > p,
- .wp-block-pullquote.alignwide blockquote,
- .wp-block-pullquote.alignfull blockquote {
- margin-left: auto;
- margin-right: auto;
- }
- .wp-block-quote {
- border-left-color: #222222;
- margin: 32px 0;
- padding-left: 16px;
- }
- .wp-block-quote p {
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
- font-size: 1.728em;
- letter-spacing: normal;
- }
- .wp-block-quote.is-large, .wp-block-quote.is-style-large {
- border: none;
- padding: 0;
- }
- .wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
- font-size: 2.0736em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .has-background:not(.has-background-background-color) .wp-block-quote,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-quote,
- [style*="background-color"]:not(.has-background-background-color) .wp-block-quote,
- .wp-block-cover[style*="background-image"] .wp-block-quote {
- border-color: currentColor;
- }
- .wp-block-quote .wp-block-quote__citation {
- color: #757575;
- font-size: 0.83333em;
- letter-spacing: normal;
- }
- .has-background:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
- [style*="background-color"]:not(.has-background-background-color) .wp-block-quote .wp-block-quote__citation,
- .wp-block-cover[style*="background-image"] .wp-block-quote .wp-block-quote__citation {
- color: currentColor;
- }
- .wp-block-separator,
- hr {
- border-bottom: 2px solid #E0E0E0;
- clear: both;
- }
- .wp-block-separator[style*="text-align:right"], .wp-block-separator[style*="text-align: right"],
- hr[style*="text-align:right"],
- hr[style*="text-align: right"] {
- border-right-color: #E0E0E0;
- }
- .wp-block-separator.is-style-wide,
- hr.is-style-wide {
- border-bottom-width: 2px;
- }
- .wp-block-separator.is-style-dots,
- hr.is-style-dots {
- border-bottom: none;
- }
- .wp-block-separator.is-style-dots:before,
- hr.is-style-dots:before {
- color: #E0E0E0;
- }
- .has-background:not(.has-background-background-color) .wp-block-separator,
- [class*="background-color"]:not(.has-background-background-color) .wp-block-separator,
- [style*="background-color"]:not(.has-background-background-color) .wp-block-separator,
- .wp-block-cover[style*="background-image"] .wp-block-separator, .has-background:not(.has-background-background-color)
- hr,
- [class*="background-color"]:not(.has-background-background-color)
- hr,
- [style*="background-color"]:not(.has-background-background-color)
- hr,
- .wp-block-cover[style*="background-image"]
- hr {
- border-color: currentColor;
- }
- table th,
- .wp-block-table th {
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
- }
- table td,
- table th,
- .wp-block-table td,
- .wp-block-table th {
- padding: calc( 0.5 * 16px);
- }
- /**
- * Editor Post Title
- * - Needs a special styles
- */
- .editor-post-title__block .editor-post-title__input {
- color: #444444;
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
- font-weight: bold;
- font-size: 2.48832em;
- letter-spacing: normal;
- line-height: 1.125;
- }
- .has-primary-color[class] {
- color: #222222 !important;
- }
- .has-secondary-color[class] {
- color: #116821 !important;
- }
- .has-foreground-color[class] {
- color: #444444 !important;
- }
- .has-foreground-light-color[class] {
- color: #757575 !important;
- }
- .has-foreground-dark-color[class] {
- color: #111111 !important;
- }
- .has-background-light-color[class] {
- color: #F0F0F0 !important;
- }
- .has-background-dark-color[class] {
- color: #E0E0E0 !important;
- }
- .has-background-color[class] {
- color: white !important;
- }
- .has-background:not(.has-background-background-color) a,
- .has-background p, .has-background h1, .has-background h2, .has-background h3, .has-background h4, .has-background h5, .has-background h6 {
- color: currentColor;
- }
- .has-primary-background-color[class] {
- background-color: #222222 !important;
- color: white;
- }
- .has-primary-background-color[class] {
- background-color: #222222 !important;
- color: white;
- }
- .has-secondary-background-color[class] {
- background-color: #116821 !important;
- color: white;
- }
- .has-foreground-background-color[class] {
- background-color: #444444 !important;
- color: white;
- }
- .has-foreground-light-background-color[class] {
- background-color: #757575 !important;
- color: white;
- }
- .has-foreground-dark-background-color[class] {
- background-color: #111111 !important;
- color: white;
- }
- .has-background-light-background-color[class] {
- background-color: #F0F0F0 !important;
- color: #444444;
- }
- .has-background-dark-background-color[class] {
- background-color: #E0E0E0 !important;
- color: #444444;
- }
- .has-background-background-color[class] {
- background-color: white !important;
- color: #444444;
- }
- .is-small-text,
- .has-small-font-size {
- font-size: 0.83333em;
- }
- .is-regular-text,
- .has-regular-font-size,
- .has-normal-font-size,
- .has-medium-font-size {
- font-size: 1.2em;
- }
- .is-large-text,
- .has-large-font-size {
- font-size: 1.44em;
- line-height: 1.125;
- }
- .is-larger-text,
- .has-larger-font-size,
- .has-huge-font-size {
- font-size: 1.728em;
- line-height: 1.125;
- }
- .has-drop-cap:not(:focus)::first-letter {
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-family: var(--font-headings, Lora, Baskerville, Georgia, Times, serif);
- font-size: calc(2 * 2.98598em);
- font-weight: bold;
- }
- /**
- * Spacing Overrides
- */
- [data-block] {
- margin-top: 21.312px;
- margin-bottom: 21.312px;
- }
- @media only screen and (min-width: 560px) {
- [data-block] {
- margin-top: 32px;
- margin-bottom: 32px;
- }
- }
- /*
- * Margins
- */
- .margin-top-none {
- margin-top: 0 !important;
- }
- .margin-top-half {
- margin-top: 16px !important;
- }
- .margin-top-default {
- margin-top: 32px !important;
- }
- .margin-right-none {
- /*rtl:ignore*/
- margin-right: 0 !important;
- }
- .margin-right-half {
- /*rtl:ignore*/
- margin-right: 16px !important;
- }
- .margin-right-default {
- /*rtl:ignore*/
- margin-right: 32px !important;
- }
- .margin-bottom-none {
- margin-bottom: 0 !important;
- }
- .margin-bottom-half {
- margin-bottom: 16px !important;
- }
- .margin-bottom-default {
- margin-bottom: 32px !important;
- }
- .margin-left-none {
- /*rtl:ignore*/
- margin-left: 0 !important;
- }
- .margin-left-half {
- /*rtl:ignore*/
- margin-left: 16px !important;
- }
- .margin-left-default {
- /*rtl:ignore*/
- margin-left: 32px !important;
- }
- /*
- * Padding
- */
- .padding-top-none {
- padding-top: 0 !important;
- }
- .padding-top-half {
- padding-top: 16px !important;
- }
- .padding-top-default {
- padding-top: 32px !important;
- }
- .padding-right-none {
- /*rtl:ignore*/
- padding-right: 0 !important;
- }
- .padding-right-half {
- /*rtl:ignore*/
- padding-right: 16px !important;
- }
- .padding-right-default {
- /*rtl:ignore*/
- padding-right: 32px !important;
- }
- .padding-bottom-none {
- padding-bottom: 0 !important;
- }
- .padding-bottom-half {
- padding-bottom: 16px !important;
- }
- .padding-bottom-default {
- padding-bottom: 32px !important;
- }
- .padding-left-none {
- /*rtl:ignore*/
- padding-left: 0 !important;
- }
- .padding-left-half {
- /*rtl:ignore*/
- padding-left: 16px !important;
- }
- .padding-left-default {
- /*rtl:ignore*/
- padding-left: 32px !important;
- }
- /**
- * Extras
- */
- .editor-post-title__input {
- text-align: center;
- }
- .wp-block-pullquote {
- border-bottom-width: 1px;
- }
- .wp-block-button__link {
- position: relative;
- }
- .wp-block-button__link:before {
- border: 2px solid;
- content: "";
- display: block;
- left: 3px;
- margin: 0;
- position: absolute;
- top: 3px;
- height: calc(100% - 6px);
- width: calc(100% - 6px);
- }
- .is-style-circular .wp-block-button__link:before {
- border-radius: 100px;
- }
|