|
@@ -20,9 +20,6 @@ img {
|
|
|
box-sizing: border-box;
|
|
|
}
|
|
|
|
|
|
-/**
|
|
|
- * Required Variables
|
|
|
- */
|
|
|
.screen-reader-text {
|
|
|
/* Text meant only for screen readers. */
|
|
|
border: 0;
|
|
@@ -64,6 +61,40 @@ img {
|
|
|
outline: 0;
|
|
|
}
|
|
|
|
|
|
+/**
|
|
|
+ * 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.
|
|
|
+ */
|
|
|
.wp-block-post-content > .alignfull {
|
|
|
margin-left: calc(-1 * var(--wp--custom--margin--horizontal));
|
|
|
margin-right: calc(-1 * var(--wp--custom--margin--horizontal));
|
|
@@ -267,14 +298,14 @@ ol {
|
|
|
padding: var(--wp--custom--navigation--submenu--padding);
|
|
|
}
|
|
|
|
|
|
-@media only screen and (min-width: 482px) {
|
|
|
+@media (min-width: 480px) {
|
|
|
header .wp-block-navigation .wp-block-navigation__mobile-menu-open-button,
|
|
|
header .wp-block-navigation .wp-block-navigation__mobile-menu-close-button {
|
|
|
display: none;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
-@media only screen and (max-width: 481px) {
|
|
|
+@media (max-width: 479px) {
|
|
|
header .wp-block-navigation:not(.show) {
|
|
|
text-align: right;
|
|
|
padding-left: var(--wp--custom--margin--horizontal);
|