2018-12-18 04:17:48 +01:00
|
|
|
/**
|
|
|
|
* Colors
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Breakpoints & Media Queries
|
|
|
|
*/
|
2020-01-22 23:06:21 +01:00
|
|
|
/**
|
|
|
|
* Colors
|
|
|
|
*/
|
2018-12-18 04:17:48 +01:00
|
|
|
/**
|
2020-06-26 15:33:47 +02:00
|
|
|
* Fonts & basic variables.
|
2018-12-18 04:17:48 +01:00
|
|
|
*/
|
2020-05-06 01:39:31 +02:00
|
|
|
/**
|
|
|
|
* Grid System.
|
|
|
|
* https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/
|
|
|
|
*/
|
2020-06-26 15:33:47 +02:00
|
|
|
/**
|
|
|
|
* Dimensions.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Shadows.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Editor widths.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Block UI.
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Border radii.
|
|
|
|
*/
|
2020-10-13 15:10:30 +02:00
|
|
|
/**
|
|
|
|
* Block paddings.
|
|
|
|
*/
|
2018-12-18 04:17:48 +01:00
|
|
|
/**
|
|
|
|
* Breakpoint mixins
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Long content fade mixin
|
|
|
|
*
|
|
|
|
* Creates a fading overlay to signify that the content is longer
|
|
|
|
* than the space allows.
|
|
|
|
*/
|
|
|
|
/**
|
2020-06-26 15:33:47 +02:00
|
|
|
* Focus styles.
|
2018-12-18 04:17:48 +01:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Applies editor left position to the selector passed as argument
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Styles that are reused verbatim in a few places
|
|
|
|
*/
|
2019-03-21 13:48:00 +01:00
|
|
|
/**
|
|
|
|
* Allows users to opt-out of animations via OS-level preferences.
|
|
|
|
*/
|
2019-09-19 17:19:18 +02:00
|
|
|
/**
|
|
|
|
* 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.
|
|
|
|
*/
|
2020-06-26 15:33:47 +02:00
|
|
|
:root {
|
|
|
|
--wp-admin-theme-color: #007cba;
|
|
|
|
--wp-admin-theme-color-darker-10: #006ba1;
|
|
|
|
--wp-admin-theme-color-darker-20: #005a87; }
|
|
|
|
|
|
|
|
#start-resizable-editor-section {
|
|
|
|
display: none; }
|
|
|
|
|
2019-09-19 17:19:18 +02:00
|
|
|
.wp-block-audio figcaption {
|
2020-10-13 15:10:30 +02:00
|
|
|
color: #555;
|
2019-09-19 17:19:18 +02:00
|
|
|
font-size: 13px;
|
|
|
|
text-align: center; }
|
|
|
|
|
2018-12-18 04:17:48 +01:00
|
|
|
.wp-block-code {
|
|
|
|
font-family: Menlo, Consolas, monaco, monospace;
|
2020-10-13 15:10:30 +02:00
|
|
|
font-size: 0.9em;
|
2020-07-07 16:43:35 +02:00
|
|
|
color: #1e1e1e;
|
2018-12-18 04:17:48 +01:00
|
|
|
padding: 0.8em 1em;
|
2020-07-07 16:43:35 +02:00
|
|
|
border: 1px solid #ddd;
|
2018-12-18 04:17:48 +01:00
|
|
|
border-radius: 4px; }
|
|
|
|
|
2019-09-19 17:19:18 +02:00
|
|
|
.wp-block-embed figcaption {
|
2020-10-13 15:10:30 +02:00
|
|
|
color: #555;
|
2019-09-19 17:19:18 +02:00
|
|
|
font-size: 13px;
|
|
|
|
text-align: center; }
|
|
|
|
|
|
|
|
.blocks-gallery-caption {
|
2020-10-13 15:10:30 +02:00
|
|
|
color: #555;
|
2019-09-19 17:19:18 +02:00
|
|
|
font-size: 13px;
|
|
|
|
text-align: center; }
|
|
|
|
|
|
|
|
.wp-block-image figcaption {
|
2020-10-13 15:10:30 +02:00
|
|
|
color: #555;
|
2019-09-19 17:19:18 +02:00
|
|
|
font-size: 13px;
|
|
|
|
text-align: center; }
|
|
|
|
|
2018-12-18 04:17:48 +01:00
|
|
|
.wp-block-pullquote {
|
2020-10-13 15:10:30 +02:00
|
|
|
border-top: 4px solid #555;
|
|
|
|
border-bottom: 4px solid #555;
|
|
|
|
margin-bottom: 1.75em;
|
|
|
|
color: #555; }
|
2018-12-18 04:17:48 +01:00
|
|
|
.wp-block-pullquote cite,
|
|
|
|
.wp-block-pullquote footer, .wp-block-pullquote__citation {
|
2020-10-13 15:10:30 +02:00
|
|
|
color: #555;
|
2018-12-18 04:17:48 +01:00
|
|
|
text-transform: uppercase;
|
2020-10-13 15:10:30 +02:00
|
|
|
font-size: 0.8125em;
|
2018-12-18 04:17:48 +01:00
|
|
|
font-style: normal; }
|
|
|
|
|
2020-01-08 12:57:23 +01:00
|
|
|
.wp-block-navigation ul,
|
|
|
|
.wp-block-navigation ul li {
|
|
|
|
list-style: none; }
|
|
|
|
|
2020-06-26 15:33:47 +02:00
|
|
|
.wp-block-navigation-link.wp-block-navigation-link {
|
|
|
|
margin: 0; }
|
|
|
|
|
2018-12-18 04:17:48 +01:00
|
|
|
.wp-block-quote {
|
2020-10-13 15:10:30 +02:00
|
|
|
border-left: 0.25em solid #000;
|
|
|
|
margin: 0 0 1.75em 0;
|
2019-03-07 10:09:59 +01:00
|
|
|
padding-left: 1em; }
|
2018-12-18 04:17:48 +01:00
|
|
|
.wp-block-quote cite,
|
|
|
|
.wp-block-quote footer, .wp-block-quote__citation {
|
2020-10-13 15:10:30 +02:00
|
|
|
color: #555;
|
|
|
|
font-size: 0.8125em;
|
2018-12-18 04:17:48 +01:00
|
|
|
margin-top: 1em;
|
|
|
|
position: relative;
|
|
|
|
font-style: normal; }
|
2020-10-13 15:10:30 +02:00
|
|
|
.wp-block-quote.has-text-align-right {
|
2019-03-07 10:09:59 +01:00
|
|
|
border-left: none;
|
2020-10-13 15:10:30 +02:00
|
|
|
border-right: 0.25em solid #000;
|
2019-03-07 10:09:59 +01:00
|
|
|
padding-left: 0;
|
|
|
|
padding-right: 1em; }
|
2020-10-13 15:10:30 +02:00
|
|
|
.wp-block-quote.has-text-align-center {
|
2019-03-07 10:09:59 +01:00
|
|
|
border: none;
|
|
|
|
padding-left: 0; }
|
|
|
|
.wp-block-quote.is-style-large, .wp-block-quote.is-large {
|
|
|
|
border: none; }
|
2018-12-18 04:17:48 +01:00
|
|
|
|
2019-03-07 10:09:59 +01:00
|
|
|
.wp-block-search .wp-block-search__label {
|
|
|
|
font-weight: bold; }
|
2018-12-18 04:17:48 +01:00
|
|
|
|
2019-09-19 17:19:18 +02:00
|
|
|
.wp-block-group.has-background {
|
|
|
|
padding: 20px 30px;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0; }
|
|
|
|
|
2018-12-18 04:17:48 +01:00
|
|
|
.wp-block-separator {
|
|
|
|
border: none;
|
2020-10-13 15:10:30 +02:00
|
|
|
border-bottom: 2px solid currentColor;
|
2019-09-19 17:19:18 +02:00
|
|
|
margin-left: auto;
|
2020-10-13 15:10:30 +02:00
|
|
|
margin-right: auto;
|
|
|
|
opacity: 0.4; }
|
2018-12-18 04:17:48 +01:00
|
|
|
.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
|
|
|
|
max-width: 100px; }
|
2019-09-19 17:19:18 +02:00
|
|
|
.wp-block-separator.has-background:not(.is-style-dots) {
|
|
|
|
border-bottom: none;
|
|
|
|
height: 1px; }
|
|
|
|
.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots) {
|
|
|
|
height: 2px; }
|
2018-12-18 04:17:48 +01:00
|
|
|
|
|
|
|
.wp-block-table {
|
|
|
|
border-collapse: collapse; }
|
2020-02-06 22:03:31 +01:00
|
|
|
.wp-block-table thead {
|
|
|
|
border-bottom: 3px solid; }
|
|
|
|
.wp-block-table tfoot {
|
|
|
|
border-top: 3px solid; }
|
2018-12-18 04:17:48 +01:00
|
|
|
.wp-block-table td,
|
|
|
|
.wp-block-table th {
|
|
|
|
padding: 0.5em;
|
2019-09-19 17:19:18 +02:00
|
|
|
border: 1px solid;
|
|
|
|
word-break: normal; }
|
2020-01-08 12:57:23 +01:00
|
|
|
.wp-block-table figcaption {
|
2020-10-13 15:10:30 +02:00
|
|
|
color: #555;
|
2020-01-08 12:57:23 +01:00
|
|
|
font-size: 13px;
|
|
|
|
text-align: center; }
|
2019-09-19 17:19:18 +02:00
|
|
|
|
|
|
|
.wp-block-video figcaption {
|
2020-10-13 15:10:30 +02:00
|
|
|
color: #555;
|
2019-09-19 17:19:18 +02:00
|
|
|
font-size: 13px;
|
|
|
|
text-align: center; }
|
2020-06-26 15:33:47 +02:00
|
|
|
|
2020-10-13 15:10:30 +02:00
|
|
|
.wp-block-template-part.has-background {
|
|
|
|
padding: 20px 30px;
|
|
|
|
margin-top: 0;
|
|
|
|
margin-bottom: 0; }
|
|
|
|
|
2020-06-26 15:33:47 +02:00
|
|
|
#end-resizable-editor-section {
|
|
|
|
display: none; }
|