123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676 |
- /**
- * Base
- * - Reset the browser
- */
- body {
- margin: 0;
- padding: 0;
- }
- body {
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- img {
- height: auto;
- max-width: 100%;
- }
- * {
- box-sizing: border-box;
- }
- /**
- * Breakpoints & Media Queries
- */
- /**
- * Breakpoint mixins
- */
- /**
- * Long content fade mixin
- *
- * Creates a fading overlay to signify that the content is longer
- * than the space allows.
- */
- /**
- * Focus styles.
- */
- /**
- * Applies editor left position to the selector passed as argument
- */
- /**
- * Styles that are reused verbatim in a few places
- */
- /**
- * Allows users to opt-out of animations via OS-level preferences.
- */
- /**
- * Reset default styles for JavaScript UI based pages.
- * This is a WP-admin agnostic reset
- */
- /**
- * Reset the WP Admin page styles for Gutenberg-like pages.
- */
- /**
- * These are default block editor widths in case the theme doesn't provide them.
- */
- .is-root-container {
- padding-left: var(--wp--custom--post-content--padding--left);
- padding-right: var(--wp--custom--post-content--padding--right);
- }
- .block-editor-block-list__layout.is-root-container > .wp-block[data-align=full],
- .wp-block-post-content > .alignfull {
- margin-left: calc(-1 * var(--wp--custom--post-content--padding--left)) !important;
- margin-right: calc(-1 * var(--wp--custom--post-content--padding--right)) !important;
- width: calc( 100% + var(--wp--custom--post-content--padding--left) + var(--wp--custom--post-content--padding--right)) !important;
- }
- .site-header,
- .post-header,
- .page-content,
- [data-align="full"] p,
- .alignfull p {
- padding-left: var(--wp--custom--post-content--padding--left);
- padding-right: var(--wp--custom--post-content--padding--right);
- }
- @media (min-width: 480px) {
- .wp-block[data-align="left"],
- .wp-block[data-align="right"],
- .wp-site-blocks .alignleft,
- .wp-site-blocks .alignright {
- max-width: var(--wp--custom--alignment--aligned-max-width);
- }
- }
- .wp-block-group:not(.site-header) {
- overflow: auto;
- }
- .aligncenter {
- text-align: center;
- }
- .site-header {
- align-items: center;
- flex-wrap: wrap;
- justify-content: space-between;
- display: flex;
- overflow: inherit;
- }
- .site-header .wp-block-site-title a {
- text-decoration: none;
- }
- ::selection {
- background-color: var(--wp--custom--color--selection);
- }
- ::-moz-selection {
- background-color: var(--wp--custom--color--selection);
- }
- p, h1, h2, h3, h4, h5, h6 {
- margin-top: var(--wp--custom--margin--vertical);
- margin-bottom: var(--wp--custom--margin--vertical);
- }
- .image-no-margin {
- margin: 0;
- }
- .image-no-margin > * {
- vertical-align: bottom;
- }
- .has-background-no-padding.wp-block-columns.has-background {
- padding: 0;
- }
- /**
- * Elements
- * - Styles for basic HTML elemants
- */
- a {
- cursor: pointer;
- text-underline-offset: 0.15em;
- text-decoration: none;
- }
- a:hover, a:focus {
- text-decoration-line: underline;
- }
- .block-editor-block-list__layout a,
- .wp-block-post-content a {
- text-decoration-line: underline;
- }
- .block-editor-block-list__layout a:hover, .block-editor-block-list__layout a:focus,
- .wp-block-post-content a:hover,
- .wp-block-post-content a:focus {
- text-decoration: none;
- }
- input[type="text"],
- input[type="email"],
- input[type="url"],
- input[type="password"],
- input[type="search"],
- input[type="number"],
- input[type="tel"],
- input[type="range"],
- input[type="date"],
- input[type="month"],
- input[type="week"],
- input[type="time"],
- input[type="datetime"],
- input[type="datetime-local"],
- input[type="color"],
- textarea {
- background: var(--wp--custom--form--color--background);
- border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
- border-radius: var(--wp--custom--form--border--radius);
- box-shadow: var(--wp--custom--form--color--box-shadow);
- color: var(--wp--custom--form--color--text);
- font-family: var(--wp--custom--body--typography--font-family);
- padding: var(--wp--custom--form--padding);
- }
- input[type="text"]:focus,
- input[type="email"]:focus,
- input[type="url"]:focus,
- input[type="password"]:focus,
- input[type="search"]:focus,
- input[type="number"]:focus,
- input[type="tel"]:focus,
- input[type="range"]:focus,
- input[type="date"]:focus,
- input[type="month"]:focus,
- input[type="week"]:focus,
- input[type="time"]:focus,
- input[type="datetime"]:focus,
- input[type="datetime-local"]:focus,
- input[type="color"]:focus,
- textarea:focus {
- color: var(--wp--custom--form--color--text);
- border-color: var(--custom--form--color--border);
- }
- select {
- font-family: inherit;
- font-size: 100%;
- }
- textarea {
- width: 100%;
- }
- input[type=checkbox] + label {
- display: inline;
- margin-left: 0.5em;
- line-height: 1em;
- }
- /**
- * Button
- */
- /**
- * Block Options
- */
- .wp-block-button.wp-block-button__link,
- .wp-block-button .wp-block-button__link {
- border-width: 0;
- padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
- padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
- padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
- padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
- font-weight: var(--wp--custom--button--typography--font-weight);
- font-family: var(--wp--custom--button--typography--font-family);
- font-size: var(--wp--custom--button--typography--font-size);
- line-height: var(--wp--custom--button--typography--line-height);
- text-decoration: none;
- opacity: 1;
- color: var(--wp--custom--button--color--text);
- background-color: var(--wp--custom--button--color--background);
- border-color: currentColor;
- border-radius: var(--wp--custom--button--border--radius);
- }
- .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
- .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
- .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
- .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
- --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
- --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
- --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
- opacity: 1;
- color: var(--wp--custom--button--color--text);
- background-color: var(--wp--custom--button--color--background);
- border-color: currentColor;
- border-color: var(--wp--custom--button--border--color);
- }
- .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
- .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
- .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
- .wp-block-button .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
- fill: var(--wp--custom--button--color--text);
- }
- .wp-block-button.wp-block-button__link svg,
- .wp-block-button .wp-block-button__link svg {
- fill: var(--wp--custom--button--color--text);
- }
- .wp-block-button.is-style-outline.wp-block-button__link,
- .wp-block-button.is-style-outline .wp-block-button__link {
- --wp--custom--button--color--text: var(--wp--custom--button--border--color);
- --wp--custom--button--color--background: transparent;
- border-style: var(--wp--custom--button--border--style);
- border-width: var(--wp--custom--button--border--width);
- padding-top: var(--wp--custom--button--spacing--padding--top);
- padding-bottom: var(--wp--custom--button--spacing--padding--bottom);
- padding-left: var(--wp--custom--button--spacing--padding--left);
- padding-right: var(--wp--custom--button--spacing--padding--right);
- opacity: 1;
- color: var(--wp--custom--button--color--text);
- background-color: var(--wp--custom--button--color--background);
- border-color: currentColor;
- }
- .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):hover, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):focus, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus,
- .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover,
- .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus,
- .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus {
- --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
- --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
- --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
- opacity: 1;
- color: var(--wp--custom--button--color--text);
- background-color: var(--wp--custom--button--color--background);
- border-color: currentColor;
- border-color: var(--wp--custom--button--border--color);
- }
- .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):hover svg, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color):focus svg, .wp-block-button.is-style-outline.wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg,
- .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):hover svg,
- .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color):focus svg,
- .wp-block-button.is-style-outline .wp-block-button__link:not(.has-background):not(.has-text-color).has-focus svg {
- fill: var(--wp--custom--button--color--text);
- }
- .wp-block-button.is-style-outline.wp-block-button__link svg,
- .wp-block-button.is-style-outline .wp-block-button__link svg {
- fill: var(--wp--custom--button--color--text);
- }
- .wp-block-buttons .wp-block-button:last-child {
- margin-bottom: 0;
- }
- .wp-block-code code {
- font-family: var(--wp--custom--code--typography--font-family);
- }
- .wp-block-gallery .blocks-gallery-image figcaption,
- .wp-block-gallery .blocks-gallery-item figcaption {
- font-size: var(--wp--custom--gallery--caption--font-size);
- }
- .wp-block-image {
- /*
- From what I can tell the below are styles regularly used by themes
- to fix the image block. I believe these should go into the block's
- default styles. It's difficult to say how this will land, however
- based on discussion found in (many) related issues here:
- https://github.com/WordPress/gutenberg/issues/28923
- */
- text-align: center;
- }
- ul,
- ol {
- font-family: var(--wp--custom--list--typography--font-family);
- padding-left: var(--wp--custom--list--spacing--padding--left);
- }
- .wp-block-navigation.is-responsive .wp-block-navigation__responsive-container.is-menu-open {
- background-color: var(--wp--custom--color--background);
- color: var(--wp--custom--color--foreground);
- }
- .wp-block-navigation.is-responsive .wp-block-navigation-link__content {
- color: var(--wp--custom--color--foreground) !important;
- }
- .wp-block-navigation.is-responsive .has-child .wp-block-navigation-link__container {
- display: revert;
- }
- p.has-text-color a {
- color: var(--wp--style--color--link, var(--wp--custom--color--primary));
- }
- p.has-drop-cap:not(:focus):first-letter {
- font-size: var(--wp--custom--paragraph--dropcap--typography--font-size);
- font-family: var(--wp--custom--paragraph--dropcap--typography--font-family);
- font-weight: var(--wp--custom--paragraph--dropcap--typography--font-weight);
- margin: var(--wp--custom--paragraph--dropcap--margin);
- }
- .wp-block-post-author__name {
- font-weight: var(--wp--custom--post-author--font-weight);
- }
- .wp-block-post-comments .comment {
- font-size: var(--wp--custom--form--typography--font-size);
- }
- .wp-block-post-comments label, .wp-block-post-comments .comment-meta {
- font-size: var(--wp--custom--form--label--typography--font-size);
- }
- .wp-block-post-comments input[type="submit"], .wp-block-post-comments .reply a {
- border-width: 0;
- padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
- padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
- padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
- padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
- font-weight: var(--wp--custom--button--typography--font-weight);
- font-family: var(--wp--custom--button--typography--font-family);
- font-size: var(--wp--custom--button--typography--font-size);
- line-height: var(--wp--custom--button--typography--line-height);
- text-decoration: none;
- opacity: 1;
- color: var(--wp--custom--button--color--text);
- background-color: var(--wp--custom--button--color--background);
- border-color: currentColor;
- border-radius: var(--wp--custom--button--border--radius);
- }
- .wp-block-post-comments input[type="submit"] svg, .wp-block-post-comments .reply a svg {
- fill: var(--wp--custom--button--color--text);
- }
- .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):hover, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):focus, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color).has-focus, .wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):hover, .wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):focus, .wp-block-post-comments .reply a:not(.has-background):not(.has-text-color).has-focus {
- --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
- --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
- --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
- opacity: 1;
- color: var(--wp--custom--button--color--text);
- background-color: var(--wp--custom--button--color--background);
- border-color: currentColor;
- border-color: var(--wp--custom--button--border--color);
- }
- .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):hover svg, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color):focus svg, .wp-block-post-comments input[type="submit"]:not(.has-background):not(.has-text-color).has-focus svg, .wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):hover svg, .wp-block-post-comments .reply a:not(.has-background):not(.has-text-color):focus svg, .wp-block-post-comments .reply a:not(.has-background):not(.has-text-color).has-focus svg {
- fill: var(--wp--custom--button--color--text);
- }
- .wp-block-post-comments .reply a {
- display: inline-block;
- }
- .wp-block-pullquote.is-style-solid-color,
- .wp-block-pullquote {
- text-align: var(--wp--custom--pullquote--typography--text-align);
- }
- .wp-block-pullquote.is-style-solid-color blockquote,
- .wp-block-pullquote blockquote {
- padding: 0;
- margin: 0;
- }
- .wp-block-pullquote.is-style-solid-color blockquote p,
- .wp-block-pullquote blockquote p {
- font-size: 1em;
- padding: 0;
- margin: 0;
- line-height: inherit;
- }
- .wp-block-pullquote.is-style-solid-color blockquote .wp-block-pullquote__citation,
- .wp-block-pullquote.is-style-solid-color blockquote cite,
- .wp-block-pullquote blockquote .wp-block-pullquote__citation,
- .wp-block-pullquote blockquote cite {
- display: block;
- font-size: var(--wp--custom--pullquote--citation--typography--font-size);
- font-family: var(--wp--custom--pullquote--citation--typography--font-family);
- font-style: var(--wp--custom--pullquote--citation--typography--font-style);
- font-weight: var(--wp--custom--pullquote--citation--typography--font-weight);
- margin-top: var(--wp--custom--pullquote--citation--spacing--margin--top);
- }
- .wp-block-pullquote.is-style-solid-color.is-style-solid-color,
- .wp-block-pullquote.is-style-solid-color {
- background-color: var(--wp--custom--color--foreground);
- color: var(--wp--custom--color--background);
- }
- .wp-block-query-pagination {
- padding-top: 1.5em;
- justify-content: space-between;
- display: grid;
- grid-template-areas: "prev numbers next";
- grid-template-columns: 1fr 2fr 1fr;
- }
- @media (max-width: 479px) {
- .wp-block-query-pagination {
- grid-template-areas: "prev next";
- grid-template-columns: 1fr 1fr;
- }
- }
- .wp-block-query-pagination .wp-block-query-pagination-previous {
- justify-self: start;
- grid-area: prev;
- }
- .wp-block-query-pagination .wp-block-query-pagination-next {
- justify-self: end;
- grid-area: next;
- }
- .wp-block-query-pagination .wp-block-query-pagination-numbers {
- grid-area: numbers;
- justify-self: center;
- }
- .wp-block-query-pagination .wp-block-query-pagination-numbers .current {
- text-decoration: underline;
- }
- @media (max-width: 479px) {
- .wp-block-query-pagination .wp-block-query-pagination-numbers {
- display: none;
- }
- }
- .wp-block-quote.is-style-large p,
- .wp-block-quote p {
- font-style: unset;
- margin-top: 0px;
- }
- .wp-block-quote.is-style-large .wp-block-quote__citation,
- .wp-block-quote.is-style-large cite,
- .wp-block-quote .wp-block-quote__citation,
- .wp-block-quote cite {
- font-size: var(--wp--custom--quote--citation--typography--font-size);
- font-style: var(--wp--custom--quote--citation--typography--font-style);
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
- padding: var(--wp--custom--form--padding);
- border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
- border-radius: var(--wp--custom--form--border--radius);
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
- padding: 0;
- }
- .wp-block-search .wp-block-search__input {
- padding: var(--wp--custom--form--padding);
- border: var(--wp--custom--form--border--width) var(--wp--custom--form--border--style) var(--wp--custom--form--border--color);
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button,
- .wp-block-search .wp-block-search__button {
- border-width: 0;
- padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
- padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
- padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
- padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
- font-weight: var(--wp--custom--button--typography--font-weight);
- font-family: var(--wp--custom--button--typography--font-family);
- font-size: var(--wp--custom--button--typography--font-size);
- line-height: var(--wp--custom--button--typography--line-height);
- text-decoration: none;
- opacity: 1;
- color: var(--wp--custom--button--color--text);
- background-color: var(--wp--custom--button--color--background);
- border-color: currentColor;
- border-radius: var(--wp--custom--button--border--radius);
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button svg,
- .wp-block-search .wp-block-search__button svg {
- fill: var(--wp--custom--button--color--text);
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):hover, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):focus, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus,
- .wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):hover,
- .wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):focus,
- .wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus {
- --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
- --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
- --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
- opacity: 1;
- color: var(--wp--custom--button--color--text);
- background-color: var(--wp--custom--button--color--background);
- border-color: currentColor;
- border-color: var(--wp--custom--button--border--color);
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):hover svg, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color):focus svg, .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus svg,
- .wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):hover svg,
- .wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color):focus svg,
- .wp-block-search .wp-block-search__button:not(.has-background):not(.has-text-color).has-focus svg {
- fill: var(--wp--custom--button--color--text);
- }
- .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon,
- .wp-block-search .wp-block-search__button.has-icon {
- line-height: 0;
- }
- .wp-block-separator {
- margin: var(--wp--custom--separator--margin);
- opacity: var(--wp--custom--separator--opacity);
- }
- .wp-block-separator:not(.is-style-wide) {
- width: var(--wp--custom--separator--width);
- }
- .wp-block-file .wp-block-file__button {
- border-width: 0;
- padding-top: calc( var(--wp--custom--button--spacing--padding--top) + var(--wp--custom--button--border--width));
- padding-bottom: calc( var(--wp--custom--button--spacing--padding--bottom) + var(--wp--custom--button--border--width));
- padding-left: calc( var(--wp--custom--button--spacing--padding--left) + var(--wp--custom--button--border--width));
- padding-right: calc( var(--wp--custom--button--spacing--padding--right) + var(--wp--custom--button--border--width));
- font-weight: var(--wp--custom--button--typography--font-weight);
- font-family: var(--wp--custom--button--typography--font-family);
- font-size: var(--wp--custom--button--typography--font-size);
- line-height: var(--wp--custom--button--typography--line-height);
- text-decoration: none;
- opacity: 1;
- color: var(--wp--custom--button--color--text);
- background-color: var(--wp--custom--button--color--background);
- border-color: currentColor;
- border-radius: var(--wp--custom--button--border--radius);
- display: inline-block;
- }
- .wp-block-file .wp-block-file__button svg {
- fill: var(--wp--custom--button--color--text);
- }
- .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):hover, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):focus, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color).has-focus {
- --wp--custom--button--color--text: var(--wp--custom--button--hover--color--text);
- --wp--custom--button--color--background: var(--wp--custom--button--hover--color--background);
- --wp--custom--button--border--color: var(--wp--custom--button--hover--border--color);
- opacity: 1;
- color: var(--wp--custom--button--color--text);
- background-color: var(--wp--custom--button--color--background);
- border-color: currentColor;
- border-color: var(--wp--custom--button--border--color);
- }
- .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):hover svg, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color):focus svg, .wp-block-file .wp-block-file__button:not(.has-background):not(.has-text-color).has-focus svg {
- fill: var(--wp--custom--button--color--text);
- }
- .wp-block-table figcaption {
- font-size: var(--wp--custom--table--figcaption--typography--font-size);
- text-align: center;
- }
- .wp-block-table td, .wp-block-table th {
- border: 1px solid;
- padding: calc(0.5*var(--wp--custom--margin--vertical)) calc(0.5*var(--wp--custom--margin--horizontal));
- }
- .wp-block-video figcaption {
- margin: var(--wp--custom--video--caption--margin);
- text-align: var(--wp--custom--video--caption--text-align);
- }
- .wp-block-columns {
- margin-bottom: unset;
- }
- .post-meta {
- display: flex;
- }
- .post-meta .wp-block-post-author,
- .post-meta .wp-block-post-date,
- .post-meta .wp-block-post-tags,
- .post-meta .wp-block-post-hierarchical-terms {
- display: flex;
- margin-right: calc(2 * var(--wp--custom--margin--baseline));
- }
- .post-meta .wp-block-post-author:before,
- .post-meta .wp-block-post-date:before,
- .post-meta .wp-block-post-tags:before,
- .post-meta .wp-block-post-hierarchical-terms:before {
- align-self: center;
- content: '';
- display: inline-block;
- margin-right: calc(0.5 * var(--wp--custom--margin--baseline));
- height: 16px;
- width: 16px;
- }
- .post-meta .wp-block-post-author:before {
- background: url(svg/post-author.svg) no-repeat;
- }
- .post-meta .wp-block-post-date:before {
- background: url(svg/post-date.svg) no-repeat;
- }
- .post-meta .wp-block-post-hierarchical-terms:before {
- background: url(svg/post-category.svg) no-repeat;
- }
- /*# sourceMappingURL=ponyfill.css.map */
|