Morden: Resyncing with upstream branch.

This commit is contained in:
Allan Cole 2019-10-30 17:35:01 -04:00
commit 917ecf65af
118 changed files with 23633 additions and 1305 deletions

View file

@ -100,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -0,0 +1,55 @@
/**
* Redefine Sass map values for child theme WooCommerce output.
*/
$config-woocommerce: (
/* Wrapper Width - accepts full, wide, or defuault */
"wrapper-width": wide,
/* Tables */
"table": (
/* Borders */
"border": (
"color": map-deep-get($config-global, "color", "border", "default"),
"radius": 0,
"width": 1px,
),
"padding": map-deep-get($config-global, "spacing", "unit"),
),
/* Tabs */
"tabs": (
/* Borders */
"border": (
"color": map-deep-get($config-global, "color", "border", "default"),
"radius": 10px,
"width": 1px,
),
"padding": map-deep-get($config-global, "spacing", "horizontal"),
),
/* Mini cart */
"mini-cart": (
/* Color */
"color": (
"background": map-deep-get($config-global, "color", "primary", "default"),
"border": map-deep-get($config-global, "color", "background", "default"),
"text": map-deep-get($config-global, "color", "background", "default"),
"subtotal": map-deep-get($config-global, "color", "foreground", "default"),
"count": map-deep-get($config-global, "color", "foreground", "light"),
),
/* Button */
"button": (
"color": map-deep-get($config-global, "color", "primary", "default"),
"background-color": map-deep-get($config-global, "color", "background", "default"),
),
"width": #{25 * map-deep-get($config-global, "spacing", "unit")},
),
/* Star Rating */
"star-rating": (
/* Color */
"color": map-deep-get($config-global, "color", "alert", "warning"),
),
);

View file

@ -0,0 +1,41 @@
/**
* WooCommerce Styles
* - These styles should only be loaded when WooCommerce is active
*/
/**
* Abstracts
* - Functions and config
*/
@import "../../varia/sass/abstracts/functions";
@import "../../varia/sass/abstracts/config-global";
/**
* Child Theme Name Config
*/
@import "config-child-theme-deep";
/**
* WooCommerce Config
*/
@import "config-child-theme-woocommerce";
/**
* Varia Mixins
*/
@import "../../varia/sass/abstracts/mixins";
/**
* Varia Responsive logic
*/
@import "../../varia/sass/abstracts/responsive-logic";
/**
* Varia Extends
*/
@import "../../varia/sass/base/extends";
/**
* WooCommerce Styles
*/
@import "../../varia/sass/vendors/woocommerce/style";

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: alves
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: alves
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -1967,6 +1965,10 @@ hr.wp-block-separator {
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #3E7D98;
font-size: 2.16rem;
@ -2056,7 +2058,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3002,36 +3007,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #394d55;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3044,10 +3056,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

File diff suppressed because it is too large Load diff

2145
alves/style-woocommerce.css Normal file

File diff suppressed because it is too large Load diff

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: alves
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -1967,6 +1965,10 @@ hr.wp-block-separator {
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #3E7D98;
font-size: 2.16rem;
@ -2059,7 +2061,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3019,36 +3024,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #394d55;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3061,10 +3073,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -100,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -0,0 +1,55 @@
/**
* Redefine Sass map values for child theme WooCommerce output.
*/
$config-woocommerce: (
/* Wrapper Width - accepts full, wide, or defuault */
"wrapper-width": wide,
/* Tables */
"table": (
/* Borders */
"border": (
"color": map-deep-get($config-global, "color", "border", "default"),
"radius": 0,
"width": 1px,
),
"padding": map-deep-get($config-global, "spacing", "unit"),
),
/* Tabs */
"tabs": (
/* Borders */
"border": (
"color": map-deep-get($config-global, "color", "border", "default"),
"radius": 10px,
"width": 1px,
),
"padding": map-deep-get($config-global, "spacing", "horizontal"),
),
/* Mini cart */
"mini-cart": (
/* Color */
"color": (
"background": map-deep-get($config-global, "color", "background", "default"),
"border": map-deep-get($config-global, "color", "border", "dark"),
"text": map-deep-get($config-global, "color", "foreground", "default"),
"subtotal": map-deep-get($config-global, "color", "foreground", "default"),
"count": map-deep-get($config-global, "color", "foreground", "light"),
),
/* Button */
"button": (
"color": map-deep-get($config-button, "color", "text"),
"background-color": map-deep-get($config-button, "color", "background"),
),
"width": #{25 * map-deep-get($config-global, "spacing", "unit")},
),
/* Star Rating */
"star-rating": (
/* Color */
"color": map-deep-get($config-global, "color", "alert", "warning"),
),
);

View file

@ -39,23 +39,3 @@
* WooCommerce Styles
*/
@import "../../varia/sass/vendors/woocommerce/style";
/**
* Remove grid-products flexbox layout
*/
@include media(mobile) {
body[class*="woocommerce"] #page .widget.woocommerce ul.product_list_widget:not(.woocommerce-mini-cart) {
display: inherit;
& > li {
width: inherit;
&:nth-child(3n+2):last-child {
margin-left: inherit;
margin-right: inherit;
}
}
}
}

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: balasana
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: balasana
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -1967,6 +1965,10 @@ hr.wp-block-separator {
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #D0D0D0;
font-size: 1.728rem;
@ -2056,7 +2058,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3002,36 +3007,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #303030;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3044,10 +3056,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -256,14 +256,14 @@ body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a {
line-height: 1;
color: white;
cursor: pointer;
font-weight: bold;
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1rem;
background-color: #CD2220;
border-radius: 5px;
font-weight: 700;
font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 0.83333rem;
background-color: #19744C;
border-radius: 4px;
border-width: 0;
padding: 16px 24px;
padding: 16px 16px;
}
body[class*="woocommerce"] #page #respond input#submit:before,
@ -364,7 +364,7 @@ body[class*="woocommerce"] #page a.has-focus.added_to_cart,
body[class*="woocommerce"] #page .woocommerce .widget_shopping_cart .buttons a.has-focus,
body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a.has-focus {
color: white;
background-color: #303030;
background-color: #145f3e;
}
/**
@ -375,12 +375,12 @@ body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a.ha
*/
body[class*="woocommerce"] #page span.onsale, #content .wc-block-grid .wc-block-grid__product-onsale {
border-radius: 100%;
background-color: #ffc107;
background-color: #e8a600;
color: #101010;
font-size: 0.86957rem;
font-size: 0.83333rem;
font-weight: 700;
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
min-height: 3.236rem;
min-width: 3.236rem;
padding: 0.202rem;
@ -410,9 +410,9 @@ body[class*="woocommerce"] #page span.onsale, #content .wc-block-grid .wc-block-
body[class*="woocommerce"] #page .woocommerce-breadcrumb {
margin-bottom: 32px;
font-size: 1rem;
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
color: #757575;
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
color: #505050;
}
body[class*="woocommerce"] #page .woocommerce-breadcrumb a {
@ -429,60 +429,60 @@ body[class*="woocommerce"] #page .woocommerce-error,
body[class*="woocommerce"] #page .woocommerce-warning {
padding: 16px 64px 16px 32px;
margin-bottom: 32px;
background-color: #F8F8F8;
background-color: #F0F0F0;
color: #101010;
border-top-color: #CD2220;
border-top-color: #19744C;
}
body[class*="woocommerce"] #page .woocommerce-notice--message,
body[class*="woocommerce"] #page .woocommerce-notice--info {
color: #2196f3;
color: #3e8bff;
}
body[class*="woocommerce"] #page .woocommerce-notice--success {
color: #4caf50;
color: #19744C;
}
body[class*="woocommerce"] #page .woocommerce-notice--error {
color: #CD2220;
color: #d20000;
}
body[class*="woocommerce"] #page .woocommerce-notice--warning {
color: #ffc107;
color: #e8a600;
}
body[class*="woocommerce"] #page .woocommerce-message,
body[class*="woocommerce"] #page .woocommerce-info {
border-top-color: #2196f3;
border-top-color: #3e8bff;
}
body[class*="woocommerce"] #page .woocommerce-message:before,
body[class*="woocommerce"] #page .woocommerce-info:before {
color: #2196f3;
color: #3e8bff;
}
body[class*="woocommerce"] #page .woocommerce-success {
border-top-color: #4caf50;
border-top-color: #19744C;
}
body[class*="woocommerce"] #page .woocommerce-success:before {
color: #4caf50;
color: #19744C;
}
body[class*="woocommerce"] #page .woocommerce-error {
border-top-color: #CD2220;
border-top-color: #d20000;
}
body[class*="woocommerce"] #page .woocommerce-error:before {
color: #CD2220;
color: #d20000;
}
body[class*="woocommerce"] #page .woocommerce-warning {
border-top-color: #ffc107;
border-top-color: #e8a600;
}
body[class*="woocommerce"] #page .woocommerce-warning:before {
color: #ffc107;
color: #e8a600;
}
/**
@ -495,41 +495,41 @@ body[class*="woocommerce"] #page .woocommerce-password-strength {
text-align: center;
font-weight: 600;
padding: 0.5 * 16px;
font-size: 0.86957rem;
font-size: 0.83333rem;
}
body[class*="woocommerce"] #page .woocommerce-password-strength.strong {
background-color: #4caf50;
background-color: #19744C;
border-color: none;
}
body[class*="woocommerce"] #page .woocommerce-password-strength.good {
background-color: #ffc107;
background-color: #e8a600;
border-color: none;
}
body[class*="woocommerce"] #page .woocommerce-password-strength.short {
background-color: #CD2220;
background-color: #d20000;
border-color: none;
}
body[class*="woocommerce"] #page .woocommerce-password-strength.bad {
background-color: #CD2220;
background-color: #d20000;
border-color: none;
}
body[class*="woocommerce"] #page .woocommerce-password-hint {
font-size: 0.75614rem;
font-size: 0.69444rem;
}
/**
* Remove Icon
*/
body[class*="woocommerce"] #page a.remove {
font-size: 1.3225rem;
font-size: 1.44rem;
font-family: sans-serif !important;
height: 1.3225rem;
width: 1.3225rem;
height: 1.44rem;
width: 1.44rem;
color: red !important;
}
@ -542,8 +542,8 @@ body[class*="woocommerce"] #page a.remove:hover {
* Small Note
*/
body[class*="woocommerce"] #page small.note {
color: #757575;
font-size: 0.86957rem;
color: #505050;
font-size: 0.83333rem;
margin-top: 16px;
}
@ -551,17 +551,17 @@ body[class*="woocommerce"] #page small.note {
* Star ratings
*/
body[class*="woocommerce"] #page .star-rating::before {
color: #ffc107;
color: #e8a600;
content: "\53\53\53\53\53";
opacity: 0.4;
}
body[class*="woocommerce"] #page .star-rating span {
color: #ffc107;
color: #e8a600;
}
body[class*="woocommerce"] #page p.stars a {
color: #ffc107;
color: #e8a600;
}
/**
@ -569,7 +569,7 @@ body[class*="woocommerce"] #page p.stars a {
*/
body[class*="woocommerce"] #page table.shop_table {
border-collapse: collapse;
border: 1px solid #C5C5C5;
border: 1px solid #D0D0D0;
border-radius: 0;
margin-bottom: 32px;
}
@ -586,32 +586,32 @@ body[class*="woocommerce"] #page table.shop_table td {
}
body[class*="woocommerce"] #page table.shop_table tr {
border-bottom: 1px solid #C5C5C5;
border-bottom: 1px solid #D0D0D0;
}
body[class*="woocommerce"] #page table.shop_table tfoot td,
body[class*="woocommerce"] #page table.shop_table tfoot th,
body[class*="woocommerce"] #page table.shop_table tbody th {
border-top-color: #C5C5C5;
border-top-color: #D0D0D0;
}
body[class*="woocommerce"] #page table.shop_attributes {
border-top-color: #C5C5C5;
border-top-color: #D0D0D0;
border-top-style: solid;
margin-bottom: 32px;
border-bottom: 1px solid #C5C5C5;
border-bottom: 1px solid #D0D0D0;
}
body[class*="woocommerce"] #page table.shop_attributes th {
padding: 8px;
border-bottom-color: #C5C5C5;
border-bottom-color: #D0D0D0;
border-bottom-style: solid;
line-height: 1.6;
}
body[class*="woocommerce"] #page table.shop_attributes td {
font-style: inherit;
border-bottom-color: #C5C5C5;
border-bottom-color: #D0D0D0;
border-bottom-style: solid;
line-height: 1.6;
padding: 8px;
@ -625,11 +625,11 @@ body[class*="woocommerce"] #page table.shop_attributes td p {
body[class*="woocommerce"] #page table.shop_attributes tr:nth-child(even) td,
body[class*="woocommerce"] #page table.shop_attributes tr:nth-child(even) th {
background: #F8F8F8;
background: #F0F0F0;
}
body[class*="woocommerce"] #page table.my_account_orders {
font-size: 0.86957rem;
font-size: 0.83333rem;
}
body[class*="woocommerce"] #page table.my_account_orders th,
@ -675,7 +675,7 @@ body[class*="woocommerce"] #page .woocommerce button.button:disabled[disabled]:h
body[class*="woocommerce"] #page .woocommerce input.button.disabled:hover,
body[class*="woocommerce"] #page .woocommerce input.button:disabled:hover,
body[class*="woocommerce"] #page .woocommerce input.button:disabled[disabled]:hover {
background-color: #CD2220;
background-color: #19744C;
}
/**
@ -714,23 +714,23 @@ body[class*="woocommerce"] #page .woocommerce input.button:disabled[disabled]:ho
}
#content .wc-block-grid .wc-block-grid__product-title {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1rem;
}
#content .wc-block-grid .wc-block-grid__product-rating .star-rating span:before {
color: #007AB7;
color: #BC2213;
}
#content .wc-block-grid .wc-block-grid__product-price {
color: #101010;
font-size: 1.15rem;
font-size: 1.2rem;
line-height: 1.125;
}
#content .wc-block-grid .wc-block-grid__product-price ins {
color: #4caf50;
color: #19744C;
font-weight: bold;
text-decoration: none;
}
@ -752,7 +752,7 @@ body[class*="woocommerce"] #page .woocommerce input.button:disabled[disabled]:ho
}
#content .wc-block-featured-product .wc-block-featured-product__price {
font-size: 1.52087rem;
font-size: 1.728rem;
}
#content .wc-block-featured-product .wc-block-featured-product__price ins {
@ -773,20 +773,20 @@ body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_tot
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals tr th,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells tr td,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells tr th {
border-top-color: #C5C5C5;
border-top-color: #D0D0D0;
}
body[class*="woocommerce"] #page .cart-collaterals .cart_totals > h2,
body[class*="woocommerce"] #page .cart-collaterals .cross-sells > h2,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals > h2,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells > h2 {
font-size: 1.3225rem;
font-size: 1.44rem;
}
body[class*="woocommerce"] #page .cart-collaterals .cart_totals p small,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals p small {
color: #757575;
font-size: 0.86957rem;
color: #505050;
font-size: 0.83333rem;
}
body[class*="woocommerce"] #page .cart-collaterals .cart_totals table,
@ -803,12 +803,12 @@ body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_tot
body[class*="woocommerce"] #page .cart-collaterals .cart_totals table small,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals table small {
color: #757575;
color: #505050;
}
body[class*="woocommerce"] #page .cart-collaterals .cart_totals .discount td,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals .discount td {
color: #ffc107;
color: #e8a600;
}
body[class*="woocommerce"] #page .cart-collaterals .shipping-calculator-button,
@ -836,11 +836,11 @@ body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-link > *:not
}
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-link .woocommerce-cart-subtotal {
color: white;
color: #303030;
}
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-link .woocommerce-cart-count {
color: white;
color: #505050;
font-weight: normal;
}
@ -851,7 +851,7 @@ body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-link .svg-ic
}
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-link + .sub-menu {
padding: 0 8px;
padding: 0 16px;
}
@media only screen and (min-width: 560px) {
@ -861,25 +861,25 @@ body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-link + .sub-
}
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-widget {
background-color: #303030;
color: white;
background-color: white;
color: #303030;
max-width: 100%;
padding: 4px 0;
padding: 8px 0;
}
@media only screen and (min-width: 560px) {
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-widget {
max-width: 320px;
padding: 8px;
padding: 16px;
}
}
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-widget .woocommerce.widget_shopping_cart .cart_list {
border-bottom: 1px solid #A5A5A5;
border-bottom: 1px solid #B0B0B0;
}
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-widget .woocommerce.widget_shopping_cart .cart_list li {
border-top: 1px solid #A5A5A5;
border-top: 1px solid #B0B0B0;
}
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-widget .woocommerce.widget_shopping_cart .cart_list a.remove:hover,
@ -898,7 +898,7 @@ body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-widget .wooc
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-widget .woocommerce-mini-cart__buttons a {
clear: left;
color: white;
background-color: #CD2220;
background-color: #19744C;
margin: 0;
float: left;
}
@ -937,8 +937,8 @@ body[class*="woocommerce"] #page .main-navigation ul.product_list_widget li .qua
body[class*="woocommerce"] #page .main-navigation ul.cart_list li a:not(.remove),
body[class*="woocommerce"] #page .main-navigation ul.product_list_widget li a:not(.remove),
body[class*="woocommerce"] #page .main-navigation .woocommerce-mini-cart__total {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1rem;
}
@ -979,9 +979,9 @@ body[class*="woocommerce"] #page .woocommerce-pagination .page-numbers {
body[class*="woocommerce"] #page .woocommerce-pagination .page-numbers li > * {
display: block;
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.15rem;
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.2rem;
font-weight: 600;
padding-right: calc(0.66 * 16px);
padding-left: calc(0.66 * 16px);
@ -1034,7 +1034,7 @@ body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.p
#woocommerce-wrapper ul.products li.product .star-rating,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .star-rating,
body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .star-rating {
font-size: 0.86957rem;
font-size: 0.83333rem;
margin-right: auto;
margin-left: auto;
}
@ -1061,7 +1061,7 @@ body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.p
#woocommerce-wrapper ul.products li.product .woocommerce-placeholder,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .woocommerce-placeholder,
body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .woocommerce-placeholder {
border-color: #C5C5C5;
border-color: #D0D0D0;
}
#woocommerce-wrapper ul.products li.product .button,
@ -1080,7 +1080,7 @@ body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.p
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .price,
body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .price {
color: #101010;
font-size: 1.15rem;
font-size: 1.2rem;
line-height: 1.125;
}
@ -1103,14 +1103,14 @@ body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.p
#woocommerce-wrapper ul.products li.product .price .from,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .price .from,
body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .price .from {
font-size: 0.75614rem;
color: #ffc107;
font-size: 0.69444rem;
color: #e8a600;
}
#woocommerce-wrapper ul.products li.product.sale a > .price ins,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product.sale a > .price ins,
body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product.sale a > .price ins {
color: #4caf50;
color: #19744C;
}
/**
@ -1128,8 +1128,8 @@ body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs {
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li {
background-color: #F8F8F8;
border-color: #C5C5C5;
background-color: #F0F0F0;
border-color: #D0D0D0;
border-top-right-radius: 10px;
border-top-left-radius: 10px;
padding-right: 0;
@ -1137,7 +1137,7 @@ body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li {
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li a {
color: #757575;
color: #505050;
padding-right: 16px;
padding-left: 16px;
padding-top: 8px;
@ -1145,12 +1145,12 @@ body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li a {
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li a:hover {
color: #303030;
color: #145f3e;
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li.active {
background-color: white;
border-color: #C5C5C5;
border-color: #D0D0D0;
border-bottom-color: white;
}
@ -1168,19 +1168,19 @@ body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li.active::after {
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li::before, body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li::after {
border-color: #C5C5C5;
border-color: #D0D0D0;
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li::before {
box-shadow: -2px 2px 0 #F8F8F8;
box-shadow: -2px 2px 0 #F0F0F0;
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li::after {
box-shadow: 2px 2px 0 #F8F8F8;
box-shadow: 2px 2px 0 #F0F0F0;
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs::before {
border-bottom-color: #C5C5C5;
border-bottom-color: #D0D0D0;
}
body[class*="woocommerce"] #page .woocommerce-tabs .panel {
@ -1189,9 +1189,9 @@ body[class*="woocommerce"] #page .woocommerce-tabs .panel {
body[class*="woocommerce"] #page .woocommerce-tabs .panel h2,
body[class*="woocommerce"] #page .woocommerce-tabs .panel .comment-reply-title {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.3225rem;
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.44rem;
font-weight: bold;
}
@ -1205,8 +1205,8 @@ body[class*="woocommerce"] #page {
}
body[class*="woocommerce"] #page #reviews h2 small {
color: #757575;
font-size: 0.86957rem;
color: #505050;
font-size: 0.83333rem;
margin: inherit;
}
@ -1223,8 +1223,8 @@ body[class*="woocommerce"] #page #reviews #comments ol.commentlist li {
}
body[class*="woocommerce"] #page #reviews #comments ol.commentlist li .meta {
color: #757575;
font-size: 0.86957rem;
color: #505050;
font-size: 0.83333rem;
}
body[class*="woocommerce"] #page #reviews #comments ol.commentlist li img.avatar {
@ -1232,19 +1232,19 @@ body[class*="woocommerce"] #page #reviews #comments ol.commentlist li img.avatar
width: 48px;
height: auto;
background: transparent;
border-color: #C5C5C5;
border-color: #D0D0D0;
margin: 0;
box-shadow: none;
}
body[class*="woocommerce"] #page #reviews #comments ol.commentlist li .woocommerce-review__author {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
}
body[class*="woocommerce"] #page #reviews #comments ol.commentlist li .comment-text {
margin-right: 64px;
border: 1px solid #C5C5C5;
border: 1px solid #D0D0D0;
border-radius: 4px;
padding: 1em 1em 0;
}
@ -1267,7 +1267,7 @@ body[class*="woocommerce"] #page #reviews #comments ol.commentlist ul.children .
}
body[class*="woocommerce"] #page #reviews #comments ol.commentlist #respond {
border: 1px solid #C5C5C5;
border: 1px solid #D0D0D0;
border-radius: 4px;
padding: 1em 1em 0;
margin: 20px 50px 0 0;
@ -1511,8 +1511,8 @@ body[class*="woocommerce"] #page table.shop_table td.product-remove {
@media only screen and (min-width: 1024px) {
body[class*="woocommerce"] #page table.shop_table td.product-remove {
height: 1.3225rem;
width: 1.3225rem;
height: 1.44rem;
width: 1.44rem;
}
}
@ -1525,8 +1525,8 @@ body[class*="woocommerce"] #page td.product-thumbnail img {
}
body[class*="woocommerce"] #page td.product-name {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-weight: 700;
}
@ -1542,7 +1542,7 @@ body[class*="woocommerce"] #page td.product-name .wc-item-meta .wc-item-meta-lab
}
body[class*="woocommerce"] #page td.product-name p.backorder_notification {
font-size: 0.86957rem;
font-size: 0.83333rem;
}
body[class*="woocommerce"] #page td.product-quantity {
@ -1559,9 +1559,9 @@ body[class*="woocommerce"] #page table.cart td.actions .input-text {
* Checkout page
*/
body[class*="woocommerce"] #page .woocommerce-order h2 {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.3225rem;
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.44rem;
font-weight: bold;
}
@ -1570,14 +1570,14 @@ body[class*="woocommerce"] #page .woocommerce-order-overview.order_details {
justify-content: space-between;
align-content: flex-start;
align-items: stretch;
border: 1px solid #C5C5C5;
border: 1px solid #D0D0D0;
}
body[class*="woocommerce"] #page .woocommerce-order-overview.order_details li {
border: none;
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 0.86957rem;
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 0.83333rem;
margin-left: 0;
padding: 16px;
text-transform: none;
@ -1588,13 +1588,13 @@ body[class*="woocommerce"] #page .woocommerce-order-overview.order_details li.em
}
body[class*="woocommerce"] #page .woocommerce-order-overview.order_details li:not(:last-child) {
border-left: 1px solid #C5C5C5;
border-left: 1px solid #D0D0D0;
}
body[class*="woocommerce"] #page .woocommerce-order-overview.order_details li strong {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.15rem;
font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.2rem;
line-height: 1.125;
}
@ -1610,7 +1610,7 @@ body[class*="woocommerce"] #page .woocommerce-form-coupon-toggle + .checkout_cou
body[class*="woocommerce"] #page form.checkout_coupon,
body[class*="woocommerce"] #page form.login,
body[class*="woocommerce"] #page form.register {
border-color: #C5C5C5;
border-color: #D0D0D0;
padding: 16px;
margin-top: inherit;
margin-bottom: inherit;
@ -1624,7 +1624,7 @@ body[class*="woocommerce"] #page ul.order_details {
body[class*="woocommerce"] #page .woocommerce-customer-details address {
border-radius: 0;
border-color: #C5C5C5;
border-color: #D0D0D0;
border-left-width: 1px;
border-bottom-width: 1px;
}
@ -1638,7 +1638,7 @@ body[class*="woocommerce"] #page #add_payment_method table.cart img {
}
body[class*="woocommerce"] #page #add_payment_method table.cart td.actions .coupon .input-text {
border-color: #C5C5C5;
border-color: #D0D0D0;
padding: 8px;
margin: 0 0 0 16px;
}
@ -1649,7 +1649,7 @@ body[class*="woocommerce"] #page .wc-proceed-to-checkout {
body[class*="woocommerce"] #page .wc-proceed-to-checkout a.checkout-button {
margin-bottom: 16px;
font-size: 1.15rem;
font-size: 1.2rem;
padding: 16px;
}
@ -1658,19 +1658,19 @@ body[class*="woocommerce"] #page .wc-proceed-to-checkout a.wcppec-checkout-butto
}
body[class*="woocommerce"] #page .checkout .create-account small {
font-size: 0.75614rem;
color: #757575;
font-size: 0.69444rem;
color: #505050;
}
body[class*="woocommerce"] #page #payment {
background: transparent;
border: 1px solid #C5C5C5;
border: 1px solid #D0D0D0;
border-radius: 0;
}
body[class*="woocommerce"] #page #payment ul.payment_methods {
padding: 16px;
border-bottom-color: #C5C5C5;
border-bottom-color: #D0D0D0;
}
body[class*="woocommerce"] #page #payment ul.payment_methods li {
@ -1690,30 +1690,30 @@ body[class*="woocommerce"] #page #payment div.payment_box {
padding: 8px;
margin-bottom: 8px;
margin-top: 8px;
font-size: 0.86957rem;
font-size: 0.83333rem;
font-weight: bold;
border-radius: 0;
line-height: 1.6;
background-color: #E1DFDF;
background-color: #D0D0D0;
color: #101010;
}
body[class*="woocommerce"] #page #payment div.payment_box input.input-text,
body[class*="woocommerce"] #page #payment div.payment_box textarea {
border-color: #C5C5C5;
border-top-color: #C5C5C5;
border-color: #D0D0D0;
border-top-color: #D0D0D0;
}
body[class*="woocommerce"] #page #payment div.payment_box ::-webkit-input-placeholder {
color: #757575;
color: #505050;
}
body[class*="woocommerce"] #page #payment div.payment_box :-moz-placeholder {
color: #757575;
color: #505050;
}
body[class*="woocommerce"] #page #payment div.payment_box :-ms-input-placeholder {
color: #757575;
color: #505050;
}
body[class*="woocommerce"] #page #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput {
@ -1727,13 +1727,13 @@ body[class*="woocommerce"] #page #payment div.payment_box .wc-credit-card-form {
body[class*="woocommerce"] #page #payment div.payment_box .wc-credit-card-form-card-number,
body[class*="woocommerce"] #page #payment div.payment_box .wc-credit-card-form-card-expiry,
body[class*="woocommerce"] #page #payment div.payment_box .wc-credit-card-form-card-cvc {
font-size: 1.3225rem;
font-size: 1.44rem;
padding: 8px;
}
body[class*="woocommerce"] #page #payment div.payment_box span.help {
font-size: 0.86957rem;
color: #757575;
font-size: 0.83333rem;
color: #505050;
}
body[class*="woocommerce"] #page #payment div.payment_box .form-row {
@ -1745,14 +1745,14 @@ body[class*="woocommerce"] #page #payment div.payment_box p:last-child {
}
body[class*="woocommerce"] #page #payment div.payment_box::before {
border-bottom-color: #E1DFDF;
border-bottom-color: #D0D0D0;
/* arrow size / color */
}
body[class*="woocommerce"] #page #payment .payment_method_paypal .about_paypal {
float: left;
line-height: 52px;
font-size: 0.86957rem;
font-size: 0.83333rem;
}
body[class*="woocommerce"] #page #payment .payment_method_paypal img {
@ -1761,26 +1761,26 @@ body[class*="woocommerce"] #page #payment .payment_method_paypal img {
}
body[class*="woocommerce"] #page .woocommerce-terms-and-conditions {
border-color: #C5C5C5;
border-color: #D0D0D0;
}
body[class*="woocommerce"] #page .woocommerce-invalid #terms {
outline-color: #CD2220;
outline-color: #d20000;
}
body[class*="woocommerce"] #page .checkout h3 {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.3225rem;
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.44rem;
font-weight: bold;
}
body[class*="woocommerce"] #page .woocommerce-terms-and-conditions {
border-color: #C5C5C5;
border-color: #D0D0D0;
}
body[class*="woocommerce"] #page .woocommerce-invalid #terms {
outline-color: #CD2220;
outline-color: #d20000;
}
/**
@ -1804,7 +1804,7 @@ body[class*="woocommerce"] #page .woocommerce-MyAccount-content .woocommerce-not
}
body[class*="woocommerce"] #page .woocommerce-MyAccount-content fieldset {
border: 1px solid #C5C5C5;
border: 1px solid #D0D0D0;
padding: 16px;
border-radius: 3px;
}
@ -1818,7 +1818,7 @@ body[class*="woocommerce"] #page .addresses .title .edit {
}
.woocommerce-account .entry-content .woocommerce > h2 {
font-size: 1.3225rem;
font-size: 1.44rem;
}
/**
@ -1867,20 +1867,20 @@ body[class*="woocommerce"] #page .woocommerce-ordering select {
}
.single-product #page #woocommerce-wrapper div.product div.images .woocommerce-product-gallery__image--placeholder {
border-color: #F8F8F8;
border-color: #F0F0F0;
}
.single-product #page #woocommerce-wrapper div.product div.images .woocommerce-product-gallery__trigger {
font-size: 1.15rem;
font-size: 1.2rem;
background: white;
}
.single-product #page #woocommerce-wrapper div.product div.images .woocommerce-product-gallery__trigger::before {
border-color: #A5A5A5;
border-color: #B0B0B0;
}
.single-product #page #woocommerce-wrapper div.product div.images .woocommerce-product-gallery__trigger::after {
background-color: #A5A5A5;
background-color: #B0B0B0;
}
.single-product #page #woocommerce-wrapper div.product div.summary {
@ -1890,7 +1890,7 @@ body[class*="woocommerce"] #page .woocommerce-ordering select {
.single-product #page #woocommerce-wrapper div.product div.summary span.price,
.single-product #page #woocommerce-wrapper div.product div.summary p.price {
color: #101010;
font-size: 1.52087rem;
font-size: 1.728rem;
}
.single-product #page #woocommerce-wrapper div.product div.summary p.stock {
@ -1898,7 +1898,7 @@ body[class*="woocommerce"] #page .woocommerce-ordering select {
}
.single-product #page #woocommerce-wrapper div.product div.summary .stock {
color: #CD2220;
color: #19744C;
}
.single-product #page #woocommerce-wrapper div.product div.summary .out-of-stock {
@ -1918,7 +1918,7 @@ body[class*="woocommerce"] #page .woocommerce-ordering select {
}
.single-product #page #woocommerce-wrapper div.product .up-sells > h2 {
font-size: 1.3225rem;
font-size: 1.44rem;
}
.single-product #page #woocommerce-wrapper div.product p.cart {
@ -1947,7 +1947,7 @@ body[class*="woocommerce"] #page .woocommerce-ordering select {
}
.single-product #page #woocommerce-wrapper div.product form.cart .reset_variations {
font-size: 0.86957rem;
font-size: 0.83333rem;
}
.single-product #page #woocommerce-wrapper div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label {
@ -1993,8 +1993,8 @@ body[class*="woocommerce"] #page {
body[class*="woocommerce"] #page ul.cart_list li a:not(.remove),
body[class*="woocommerce"] #page ul.product_list_widget li a:not(.remove) {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
line-height: 1.125;
}
@ -2006,7 +2006,7 @@ body[class*="woocommerce"] #page ul.product_list_widget li img {
body[class*="woocommerce"] #page ul.cart_list li dl,
body[class*="woocommerce"] #page ul.product_list_widget li dl {
border-right-color: #C5C5C5;
border-right-color: #D0D0D0;
}
body[class*="woocommerce"] #page ul.cart_list li dl dt,
@ -2022,11 +2022,11 @@ body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .total {
}
body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .cart_list {
border-bottom: 1px solid #C5C5C5;
border-bottom: 1px solid #D0D0D0;
}
body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .cart_list li {
border-top: 1px solid #C5C5C5;
border-top: 1px solid #D0D0D0;
padding: 16px 32px 16px 0;
}
@ -2043,11 +2043,11 @@ body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a#wo
*/
body[class*="woocommerce"] #page .widget_price_filter .ui-slider .ui-slider-range,
body[class*="woocommerce"] #page .widget_price_filter .ui-slider .ui-slider-handle {
background-color: #CD2220;
background-color: #19744C;
}
body[class*="woocommerce"] #page .widget_price_filter .price_slider_wrapper .ui-widget-content {
background-color: #757575;
background-color: #505050;
}
/**
@ -2070,19 +2070,3 @@ body[class*="woocommerce"] #page .widget_price_filter .price_slider_wrapper .ui-
margin-left: auto;
}
}
/**
* Remove grid-products flexbox layout
*/
@media only screen and (min-width: 560px) {
body[class*="woocommerce"] #page .widget.woocommerce ul.product_list_widget:not(.woocommerce-mini-cart) {
display: inherit;
}
body[class*="woocommerce"] #page .widget.woocommerce ul.product_list_widget:not(.woocommerce-mini-cart) > li {
width: inherit;
}
body[class*="woocommerce"] #page .widget.woocommerce ul.product_list_widget:not(.woocommerce-mini-cart) > li:nth-child(3n+2):last-child {
margin-right: inherit;
margin-left: inherit;
}
}

View file

@ -256,14 +256,14 @@ body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a {
line-height: 1;
color: white;
cursor: pointer;
font-weight: bold;
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1rem;
background-color: #CD2220;
border-radius: 5px;
font-weight: 700;
font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 0.83333rem;
background-color: #19744C;
border-radius: 4px;
border-width: 0;
padding: 16px 24px;
padding: 16px 16px;
}
body[class*="woocommerce"] #page #respond input#submit:before,
@ -364,7 +364,7 @@ body[class*="woocommerce"] #page a.has-focus.added_to_cart,
body[class*="woocommerce"] #page .woocommerce .widget_shopping_cart .buttons a.has-focus,
body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a.has-focus {
color: white;
background-color: #303030;
background-color: #145f3e;
}
/**
@ -375,12 +375,12 @@ body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a.ha
*/
body[class*="woocommerce"] #page span.onsale, #content .wc-block-grid .wc-block-grid__product-onsale {
border-radius: 100%;
background-color: #ffc107;
background-color: #e8a600;
color: #101010;
font-size: 0.86957rem;
font-size: 0.83333rem;
font-weight: 700;
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
min-height: 3.236rem;
min-width: 3.236rem;
padding: 0.202rem;
@ -410,9 +410,9 @@ body[class*="woocommerce"] #page span.onsale, #content .wc-block-grid .wc-block-
body[class*="woocommerce"] #page .woocommerce-breadcrumb {
margin-bottom: 32px;
font-size: 1rem;
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
color: #757575;
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
color: #505050;
}
body[class*="woocommerce"] #page .woocommerce-breadcrumb a {
@ -429,60 +429,60 @@ body[class*="woocommerce"] #page .woocommerce-error,
body[class*="woocommerce"] #page .woocommerce-warning {
padding: 16px 32px 16px 64px;
margin-bottom: 32px;
background-color: #F8F8F8;
background-color: #F0F0F0;
color: #101010;
border-top-color: #CD2220;
border-top-color: #19744C;
}
body[class*="woocommerce"] #page .woocommerce-notice--message,
body[class*="woocommerce"] #page .woocommerce-notice--info {
color: #2196f3;
color: #3e8bff;
}
body[class*="woocommerce"] #page .woocommerce-notice--success {
color: #4caf50;
color: #19744C;
}
body[class*="woocommerce"] #page .woocommerce-notice--error {
color: #CD2220;
color: #d20000;
}
body[class*="woocommerce"] #page .woocommerce-notice--warning {
color: #ffc107;
color: #e8a600;
}
body[class*="woocommerce"] #page .woocommerce-message,
body[class*="woocommerce"] #page .woocommerce-info {
border-top-color: #2196f3;
border-top-color: #3e8bff;
}
body[class*="woocommerce"] #page .woocommerce-message:before,
body[class*="woocommerce"] #page .woocommerce-info:before {
color: #2196f3;
color: #3e8bff;
}
body[class*="woocommerce"] #page .woocommerce-success {
border-top-color: #4caf50;
border-top-color: #19744C;
}
body[class*="woocommerce"] #page .woocommerce-success:before {
color: #4caf50;
color: #19744C;
}
body[class*="woocommerce"] #page .woocommerce-error {
border-top-color: #CD2220;
border-top-color: #d20000;
}
body[class*="woocommerce"] #page .woocommerce-error:before {
color: #CD2220;
color: #d20000;
}
body[class*="woocommerce"] #page .woocommerce-warning {
border-top-color: #ffc107;
border-top-color: #e8a600;
}
body[class*="woocommerce"] #page .woocommerce-warning:before {
color: #ffc107;
color: #e8a600;
}
/**
@ -495,41 +495,41 @@ body[class*="woocommerce"] #page .woocommerce-password-strength {
text-align: center;
font-weight: 600;
padding: 0.5 * 16px;
font-size: 0.86957rem;
font-size: 0.83333rem;
}
body[class*="woocommerce"] #page .woocommerce-password-strength.strong {
background-color: #4caf50;
background-color: #19744C;
border-color: none;
}
body[class*="woocommerce"] #page .woocommerce-password-strength.good {
background-color: #ffc107;
background-color: #e8a600;
border-color: none;
}
body[class*="woocommerce"] #page .woocommerce-password-strength.short {
background-color: #CD2220;
background-color: #d20000;
border-color: none;
}
body[class*="woocommerce"] #page .woocommerce-password-strength.bad {
background-color: #CD2220;
background-color: #d20000;
border-color: none;
}
body[class*="woocommerce"] #page .woocommerce-password-hint {
font-size: 0.75614rem;
font-size: 0.69444rem;
}
/**
* Remove Icon
*/
body[class*="woocommerce"] #page a.remove {
font-size: 1.3225rem;
font-size: 1.44rem;
font-family: sans-serif !important;
height: 1.3225rem;
width: 1.3225rem;
height: 1.44rem;
width: 1.44rem;
color: red !important;
}
@ -542,8 +542,8 @@ body[class*="woocommerce"] #page a.remove:hover {
* Small Note
*/
body[class*="woocommerce"] #page small.note {
color: #757575;
font-size: 0.86957rem;
color: #505050;
font-size: 0.83333rem;
margin-top: 16px;
}
@ -551,17 +551,17 @@ body[class*="woocommerce"] #page small.note {
* Star ratings
*/
body[class*="woocommerce"] #page .star-rating::before {
color: #ffc107;
color: #e8a600;
content: "\53\53\53\53\53";
opacity: 0.4;
}
body[class*="woocommerce"] #page .star-rating span {
color: #ffc107;
color: #e8a600;
}
body[class*="woocommerce"] #page p.stars a {
color: #ffc107;
color: #e8a600;
}
/**
@ -569,7 +569,7 @@ body[class*="woocommerce"] #page p.stars a {
*/
body[class*="woocommerce"] #page table.shop_table {
border-collapse: collapse;
border: 1px solid #C5C5C5;
border: 1px solid #D0D0D0;
border-radius: 0;
margin-bottom: 32px;
}
@ -586,32 +586,32 @@ body[class*="woocommerce"] #page table.shop_table td {
}
body[class*="woocommerce"] #page table.shop_table tr {
border-bottom: 1px solid #C5C5C5;
border-bottom: 1px solid #D0D0D0;
}
body[class*="woocommerce"] #page table.shop_table tfoot td,
body[class*="woocommerce"] #page table.shop_table tfoot th,
body[class*="woocommerce"] #page table.shop_table tbody th {
border-top-color: #C5C5C5;
border-top-color: #D0D0D0;
}
body[class*="woocommerce"] #page table.shop_attributes {
border-top-color: #C5C5C5;
border-top-color: #D0D0D0;
border-top-style: solid;
margin-bottom: 32px;
border-bottom: 1px solid #C5C5C5;
border-bottom: 1px solid #D0D0D0;
}
body[class*="woocommerce"] #page table.shop_attributes th {
padding: 8px;
border-bottom-color: #C5C5C5;
border-bottom-color: #D0D0D0;
border-bottom-style: solid;
line-height: 1.6;
}
body[class*="woocommerce"] #page table.shop_attributes td {
font-style: inherit;
border-bottom-color: #C5C5C5;
border-bottom-color: #D0D0D0;
border-bottom-style: solid;
line-height: 1.6;
padding: 8px;
@ -625,11 +625,11 @@ body[class*="woocommerce"] #page table.shop_attributes td p {
body[class*="woocommerce"] #page table.shop_attributes tr:nth-child(even) td,
body[class*="woocommerce"] #page table.shop_attributes tr:nth-child(even) th {
background: #F8F8F8;
background: #F0F0F0;
}
body[class*="woocommerce"] #page table.my_account_orders {
font-size: 0.86957rem;
font-size: 0.83333rem;
}
body[class*="woocommerce"] #page table.my_account_orders th,
@ -675,7 +675,7 @@ body[class*="woocommerce"] #page .woocommerce button.button:disabled[disabled]:h
body[class*="woocommerce"] #page .woocommerce input.button.disabled:hover,
body[class*="woocommerce"] #page .woocommerce input.button:disabled:hover,
body[class*="woocommerce"] #page .woocommerce input.button:disabled[disabled]:hover {
background-color: #CD2220;
background-color: #19744C;
}
/**
@ -714,23 +714,23 @@ body[class*="woocommerce"] #page .woocommerce input.button:disabled[disabled]:ho
}
#content .wc-block-grid .wc-block-grid__product-title {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1rem;
}
#content .wc-block-grid .wc-block-grid__product-rating .star-rating span:before {
color: #007AB7;
color: #BC2213;
}
#content .wc-block-grid .wc-block-grid__product-price {
color: #101010;
font-size: 1.15rem;
font-size: 1.2rem;
line-height: 1.125;
}
#content .wc-block-grid .wc-block-grid__product-price ins {
color: #4caf50;
color: #19744C;
font-weight: bold;
text-decoration: none;
}
@ -752,7 +752,7 @@ body[class*="woocommerce"] #page .woocommerce input.button:disabled[disabled]:ho
}
#content .wc-block-featured-product .wc-block-featured-product__price {
font-size: 1.52087rem;
font-size: 1.728rem;
}
#content .wc-block-featured-product .wc-block-featured-product__price ins {
@ -773,20 +773,20 @@ body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_tot
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals tr th,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells tr td,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells tr th {
border-top-color: #C5C5C5;
border-top-color: #D0D0D0;
}
body[class*="woocommerce"] #page .cart-collaterals .cart_totals > h2,
body[class*="woocommerce"] #page .cart-collaterals .cross-sells > h2,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals > h2,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells > h2 {
font-size: 1.3225rem;
font-size: 1.44rem;
}
body[class*="woocommerce"] #page .cart-collaterals .cart_totals p small,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals p small {
color: #757575;
font-size: 0.86957rem;
color: #505050;
font-size: 0.83333rem;
}
body[class*="woocommerce"] #page .cart-collaterals .cart_totals table,
@ -803,12 +803,12 @@ body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_tot
body[class*="woocommerce"] #page .cart-collaterals .cart_totals table small,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals table small {
color: #757575;
color: #505050;
}
body[class*="woocommerce"] #page .cart-collaterals .cart_totals .discount td,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cart_totals .discount td {
color: #ffc107;
color: #e8a600;
}
body[class*="woocommerce"] #page .cart-collaterals .shipping-calculator-button,
@ -836,11 +836,11 @@ body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-link > *:not
}
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-link .woocommerce-cart-subtotal {
color: white;
color: #303030;
}
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-link .woocommerce-cart-count {
color: white;
color: #505050;
font-weight: normal;
}
@ -851,7 +851,7 @@ body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-link .svg-ic
}
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-link + .sub-menu {
padding: 0 8px;
padding: 0 16px;
}
@media only screen and (min-width: 560px) {
@ -861,25 +861,25 @@ body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-link + .sub-
}
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-widget {
background-color: #303030;
color: white;
background-color: white;
color: #303030;
max-width: 100%;
padding: 4px 0;
padding: 8px 0;
}
@media only screen and (min-width: 560px) {
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-widget {
max-width: 320px;
padding: 8px;
padding: 16px;
}
}
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-widget .woocommerce.widget_shopping_cart .cart_list {
border-bottom: 1px solid #A5A5A5;
border-bottom: 1px solid #B0B0B0;
}
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-widget .woocommerce.widget_shopping_cart .cart_list li {
border-top: 1px solid #A5A5A5;
border-top: 1px solid #B0B0B0;
}
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-widget .woocommerce.widget_shopping_cart .cart_list a.remove:hover,
@ -898,7 +898,7 @@ body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-widget .wooc
body[class*="woocommerce"] #page .main-navigation .woocommerce-cart-widget .woocommerce-mini-cart__buttons a {
clear: right;
color: white;
background-color: #CD2220;
background-color: #19744C;
margin: 0;
float: right;
}
@ -937,8 +937,8 @@ body[class*="woocommerce"] #page .main-navigation ul.product_list_widget li .qua
body[class*="woocommerce"] #page .main-navigation ul.cart_list li a:not(.remove),
body[class*="woocommerce"] #page .main-navigation ul.product_list_widget li a:not(.remove),
body[class*="woocommerce"] #page .main-navigation .woocommerce-mini-cart__total {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1rem;
}
@ -979,9 +979,9 @@ body[class*="woocommerce"] #page .woocommerce-pagination .page-numbers {
body[class*="woocommerce"] #page .woocommerce-pagination .page-numbers li > * {
display: block;
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.15rem;
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.2rem;
font-weight: 600;
padding-left: calc(0.66 * 16px);
padding-right: calc(0.66 * 16px);
@ -1034,7 +1034,7 @@ body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.p
#woocommerce-wrapper ul.products li.product .star-rating,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .star-rating,
body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .star-rating {
font-size: 0.86957rem;
font-size: 0.83333rem;
margin-left: auto;
margin-right: auto;
}
@ -1061,7 +1061,7 @@ body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.p
#woocommerce-wrapper ul.products li.product .woocommerce-placeholder,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .woocommerce-placeholder,
body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .woocommerce-placeholder {
border-color: #C5C5C5;
border-color: #D0D0D0;
}
#woocommerce-wrapper ul.products li.product .button,
@ -1080,7 +1080,7 @@ body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.p
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .price,
body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .price {
color: #101010;
font-size: 1.15rem;
font-size: 1.2rem;
line-height: 1.125;
}
@ -1103,14 +1103,14 @@ body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.p
#woocommerce-wrapper ul.products li.product .price .from,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product .price .from,
body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product .price .from {
font-size: 0.75614rem;
color: #ffc107;
font-size: 0.69444rem;
color: #e8a600;
}
#woocommerce-wrapper ul.products li.product.sale a > .price ins,
body[class*="woocommerce"] #page #add_payment_method .cart-collaterals .cross-sells ul.products li.product.sale a > .price ins,
body[class*="woocommerce"] #page .cart-collaterals .cross-sells ul.products li.product.sale a > .price ins {
color: #4caf50;
color: #19744C;
}
/**
@ -1128,8 +1128,8 @@ body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs {
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li {
background-color: #F8F8F8;
border-color: #C5C5C5;
background-color: #F0F0F0;
border-color: #D0D0D0;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
padding-left: 0;
@ -1137,7 +1137,7 @@ body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li {
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li a {
color: #757575;
color: #505050;
padding-left: 16px;
padding-right: 16px;
padding-top: 8px;
@ -1145,12 +1145,12 @@ body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li a {
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li a:hover {
color: #303030;
color: #145f3e;
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li.active {
background-color: white;
border-color: #C5C5C5;
border-color: #D0D0D0;
border-bottom-color: white;
}
@ -1168,19 +1168,19 @@ body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li.active::after {
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li::before, body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li::after {
border-color: #C5C5C5;
border-color: #D0D0D0;
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li::before {
box-shadow: 2px 2px 0 #F8F8F8;
box-shadow: 2px 2px 0 #F0F0F0;
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs li::after {
box-shadow: -2px 2px 0 #F8F8F8;
box-shadow: -2px 2px 0 #F0F0F0;
}
body[class*="woocommerce"] #page .woocommerce-tabs ul.tabs::before {
border-bottom-color: #C5C5C5;
border-bottom-color: #D0D0D0;
}
body[class*="woocommerce"] #page .woocommerce-tabs .panel {
@ -1189,9 +1189,9 @@ body[class*="woocommerce"] #page .woocommerce-tabs .panel {
body[class*="woocommerce"] #page .woocommerce-tabs .panel h2,
body[class*="woocommerce"] #page .woocommerce-tabs .panel .comment-reply-title {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.3225rem;
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.44rem;
font-weight: bold;
}
@ -1205,8 +1205,8 @@ body[class*="woocommerce"] #page {
}
body[class*="woocommerce"] #page #reviews h2 small {
color: #757575;
font-size: 0.86957rem;
color: #505050;
font-size: 0.83333rem;
margin: inherit;
}
@ -1223,8 +1223,8 @@ body[class*="woocommerce"] #page #reviews #comments ol.commentlist li {
}
body[class*="woocommerce"] #page #reviews #comments ol.commentlist li .meta {
color: #757575;
font-size: 0.86957rem;
color: #505050;
font-size: 0.83333rem;
}
body[class*="woocommerce"] #page #reviews #comments ol.commentlist li img.avatar {
@ -1232,19 +1232,19 @@ body[class*="woocommerce"] #page #reviews #comments ol.commentlist li img.avatar
width: 48px;
height: auto;
background: transparent;
border-color: #C5C5C5;
border-color: #D0D0D0;
margin: 0;
box-shadow: none;
}
body[class*="woocommerce"] #page #reviews #comments ol.commentlist li .woocommerce-review__author {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
}
body[class*="woocommerce"] #page #reviews #comments ol.commentlist li .comment-text {
margin-left: 64px;
border: 1px solid #C5C5C5;
border: 1px solid #D0D0D0;
border-radius: 4px;
padding: 1em 1em 0;
}
@ -1267,7 +1267,7 @@ body[class*="woocommerce"] #page #reviews #comments ol.commentlist ul.children .
}
body[class*="woocommerce"] #page #reviews #comments ol.commentlist #respond {
border: 1px solid #C5C5C5;
border: 1px solid #D0D0D0;
border-radius: 4px;
padding: 1em 1em 0;
margin: 20px 0 0 50px;
@ -1511,8 +1511,8 @@ body[class*="woocommerce"] #page table.shop_table td.product-remove {
@media only screen and (min-width: 1024px) {
body[class*="woocommerce"] #page table.shop_table td.product-remove {
height: 1.3225rem;
width: 1.3225rem;
height: 1.44rem;
width: 1.44rem;
}
}
@ -1525,8 +1525,8 @@ body[class*="woocommerce"] #page td.product-thumbnail img {
}
body[class*="woocommerce"] #page td.product-name {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-weight: 700;
}
@ -1542,7 +1542,7 @@ body[class*="woocommerce"] #page td.product-name .wc-item-meta .wc-item-meta-lab
}
body[class*="woocommerce"] #page td.product-name p.backorder_notification {
font-size: 0.86957rem;
font-size: 0.83333rem;
}
body[class*="woocommerce"] #page td.product-quantity {
@ -1559,9 +1559,9 @@ body[class*="woocommerce"] #page table.cart td.actions .input-text {
* Checkout page
*/
body[class*="woocommerce"] #page .woocommerce-order h2 {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.3225rem;
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.44rem;
font-weight: bold;
}
@ -1570,14 +1570,14 @@ body[class*="woocommerce"] #page .woocommerce-order-overview.order_details {
justify-content: space-between;
align-content: flex-start;
align-items: stretch;
border: 1px solid #C5C5C5;
border: 1px solid #D0D0D0;
}
body[class*="woocommerce"] #page .woocommerce-order-overview.order_details li {
border: none;
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 0.86957rem;
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 0.83333rem;
margin-right: 0;
padding: 16px;
text-transform: none;
@ -1588,13 +1588,13 @@ body[class*="woocommerce"] #page .woocommerce-order-overview.order_details li.em
}
body[class*="woocommerce"] #page .woocommerce-order-overview.order_details li:not(:last-child) {
border-right: 1px solid #C5C5C5;
border-right: 1px solid #D0D0D0;
}
body[class*="woocommerce"] #page .woocommerce-order-overview.order_details li strong {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.15rem;
font-family: Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.2rem;
line-height: 1.125;
}
@ -1610,7 +1610,7 @@ body[class*="woocommerce"] #page .woocommerce-form-coupon-toggle + .checkout_cou
body[class*="woocommerce"] #page form.checkout_coupon,
body[class*="woocommerce"] #page form.login,
body[class*="woocommerce"] #page form.register {
border-color: #C5C5C5;
border-color: #D0D0D0;
padding: 16px;
margin-top: inherit;
margin-bottom: inherit;
@ -1624,7 +1624,7 @@ body[class*="woocommerce"] #page ul.order_details {
body[class*="woocommerce"] #page .woocommerce-customer-details address {
border-radius: 0;
border-color: #C5C5C5;
border-color: #D0D0D0;
border-right-width: 1px;
border-bottom-width: 1px;
}
@ -1638,7 +1638,7 @@ body[class*="woocommerce"] #page #add_payment_method table.cart img {
}
body[class*="woocommerce"] #page #add_payment_method table.cart td.actions .coupon .input-text {
border-color: #C5C5C5;
border-color: #D0D0D0;
padding: 8px;
margin: 0 16px 0 0;
}
@ -1649,7 +1649,7 @@ body[class*="woocommerce"] #page .wc-proceed-to-checkout {
body[class*="woocommerce"] #page .wc-proceed-to-checkout a.checkout-button {
margin-bottom: 16px;
font-size: 1.15rem;
font-size: 1.2rem;
padding: 16px;
}
@ -1658,19 +1658,19 @@ body[class*="woocommerce"] #page .wc-proceed-to-checkout a.wcppec-checkout-butto
}
body[class*="woocommerce"] #page .checkout .create-account small {
font-size: 0.75614rem;
color: #757575;
font-size: 0.69444rem;
color: #505050;
}
body[class*="woocommerce"] #page #payment {
background: transparent;
border: 1px solid #C5C5C5;
border: 1px solid #D0D0D0;
border-radius: 0;
}
body[class*="woocommerce"] #page #payment ul.payment_methods {
padding: 16px;
border-bottom-color: #C5C5C5;
border-bottom-color: #D0D0D0;
}
body[class*="woocommerce"] #page #payment ul.payment_methods li {
@ -1690,30 +1690,30 @@ body[class*="woocommerce"] #page #payment div.payment_box {
padding: 8px;
margin-bottom: 8px;
margin-top: 8px;
font-size: 0.86957rem;
font-size: 0.83333rem;
font-weight: bold;
border-radius: 0;
line-height: 1.6;
background-color: #E1DFDF;
background-color: #D0D0D0;
color: #101010;
}
body[class*="woocommerce"] #page #payment div.payment_box input.input-text,
body[class*="woocommerce"] #page #payment div.payment_box textarea {
border-color: #C5C5C5;
border-top-color: #C5C5C5;
border-color: #D0D0D0;
border-top-color: #D0D0D0;
}
body[class*="woocommerce"] #page #payment div.payment_box ::-webkit-input-placeholder {
color: #757575;
color: #505050;
}
body[class*="woocommerce"] #page #payment div.payment_box :-moz-placeholder {
color: #757575;
color: #505050;
}
body[class*="woocommerce"] #page #payment div.payment_box :-ms-input-placeholder {
color: #757575;
color: #505050;
}
body[class*="woocommerce"] #page #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput {
@ -1727,13 +1727,13 @@ body[class*="woocommerce"] #page #payment div.payment_box .wc-credit-card-form {
body[class*="woocommerce"] #page #payment div.payment_box .wc-credit-card-form-card-number,
body[class*="woocommerce"] #page #payment div.payment_box .wc-credit-card-form-card-expiry,
body[class*="woocommerce"] #page #payment div.payment_box .wc-credit-card-form-card-cvc {
font-size: 1.3225rem;
font-size: 1.44rem;
padding: 8px;
}
body[class*="woocommerce"] #page #payment div.payment_box span.help {
font-size: 0.86957rem;
color: #757575;
font-size: 0.83333rem;
color: #505050;
}
body[class*="woocommerce"] #page #payment div.payment_box .form-row {
@ -1745,14 +1745,14 @@ body[class*="woocommerce"] #page #payment div.payment_box p:last-child {
}
body[class*="woocommerce"] #page #payment div.payment_box::before {
border-bottom-color: #E1DFDF;
border-bottom-color: #D0D0D0;
/* arrow size / color */
}
body[class*="woocommerce"] #page #payment .payment_method_paypal .about_paypal {
float: right;
line-height: 52px;
font-size: 0.86957rem;
font-size: 0.83333rem;
}
body[class*="woocommerce"] #page #payment .payment_method_paypal img {
@ -1761,26 +1761,26 @@ body[class*="woocommerce"] #page #payment .payment_method_paypal img {
}
body[class*="woocommerce"] #page .woocommerce-terms-and-conditions {
border-color: #C5C5C5;
border-color: #D0D0D0;
}
body[class*="woocommerce"] #page .woocommerce-invalid #terms {
outline-color: #CD2220;
outline-color: #d20000;
}
body[class*="woocommerce"] #page .checkout h3 {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.3225rem;
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1.44rem;
font-weight: bold;
}
body[class*="woocommerce"] #page .woocommerce-terms-and-conditions {
border-color: #C5C5C5;
border-color: #D0D0D0;
}
body[class*="woocommerce"] #page .woocommerce-invalid #terms {
outline-color: #CD2220;
outline-color: #d20000;
}
/**
@ -1804,7 +1804,7 @@ body[class*="woocommerce"] #page .woocommerce-MyAccount-content .woocommerce-not
}
body[class*="woocommerce"] #page .woocommerce-MyAccount-content fieldset {
border: 1px solid #C5C5C5;
border: 1px solid #D0D0D0;
padding: 16px;
border-radius: 3px;
}
@ -1818,7 +1818,7 @@ body[class*="woocommerce"] #page .addresses .title .edit {
}
.woocommerce-account .entry-content .woocommerce > h2 {
font-size: 1.3225rem;
font-size: 1.44rem;
}
/**
@ -1867,20 +1867,20 @@ body[class*="woocommerce"] #page .woocommerce-ordering select {
}
.single-product #page #woocommerce-wrapper div.product div.images .woocommerce-product-gallery__image--placeholder {
border-color: #F8F8F8;
border-color: #F0F0F0;
}
.single-product #page #woocommerce-wrapper div.product div.images .woocommerce-product-gallery__trigger {
font-size: 1.15rem;
font-size: 1.2rem;
background: white;
}
.single-product #page #woocommerce-wrapper div.product div.images .woocommerce-product-gallery__trigger::before {
border-color: #A5A5A5;
border-color: #B0B0B0;
}
.single-product #page #woocommerce-wrapper div.product div.images .woocommerce-product-gallery__trigger::after {
background-color: #A5A5A5;
background-color: #B0B0B0;
}
.single-product #page #woocommerce-wrapper div.product div.summary {
@ -1890,7 +1890,7 @@ body[class*="woocommerce"] #page .woocommerce-ordering select {
.single-product #page #woocommerce-wrapper div.product div.summary span.price,
.single-product #page #woocommerce-wrapper div.product div.summary p.price {
color: #101010;
font-size: 1.52087rem;
font-size: 1.728rem;
}
.single-product #page #woocommerce-wrapper div.product div.summary p.stock {
@ -1898,7 +1898,7 @@ body[class*="woocommerce"] #page .woocommerce-ordering select {
}
.single-product #page #woocommerce-wrapper div.product div.summary .stock {
color: #CD2220;
color: #19744C;
}
.single-product #page #woocommerce-wrapper div.product div.summary .out-of-stock {
@ -1918,7 +1918,7 @@ body[class*="woocommerce"] #page .woocommerce-ordering select {
}
.single-product #page #woocommerce-wrapper div.product .up-sells > h2 {
font-size: 1.3225rem;
font-size: 1.44rem;
}
.single-product #page #woocommerce-wrapper div.product p.cart {
@ -1947,7 +1947,7 @@ body[class*="woocommerce"] #page .woocommerce-ordering select {
}
.single-product #page #woocommerce-wrapper div.product form.cart .reset_variations {
font-size: 0.86957rem;
font-size: 0.83333rem;
}
.single-product #page #woocommerce-wrapper div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label {
@ -1993,8 +1993,8 @@ body[class*="woocommerce"] #page {
body[class*="woocommerce"] #page ul.cart_list li a:not(.remove),
body[class*="woocommerce"] #page ul.product_list_widget li a:not(.remove) {
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-family: "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-headings, "Roboto Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
line-height: 1.125;
}
@ -2006,7 +2006,7 @@ body[class*="woocommerce"] #page ul.product_list_widget li img {
body[class*="woocommerce"] #page ul.cart_list li dl,
body[class*="woocommerce"] #page ul.product_list_widget li dl {
border-left-color: #C5C5C5;
border-left-color: #D0D0D0;
}
body[class*="woocommerce"] #page ul.cart_list li dl dt,
@ -2022,11 +2022,11 @@ body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .total {
}
body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .cart_list {
border-bottom: 1px solid #C5C5C5;
border-bottom: 1px solid #D0D0D0;
}
body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .cart_list li {
border-top: 1px solid #C5C5C5;
border-top: 1px solid #D0D0D0;
padding: 16px 0 16px 32px;
}
@ -2043,11 +2043,11 @@ body[class*="woocommerce"] #page .woocommerce.widget_shopping_cart .buttons a#wo
*/
body[class*="woocommerce"] #page .widget_price_filter .ui-slider .ui-slider-range,
body[class*="woocommerce"] #page .widget_price_filter .ui-slider .ui-slider-handle {
background-color: #CD2220;
background-color: #19744C;
}
body[class*="woocommerce"] #page .widget_price_filter .price_slider_wrapper .ui-widget-content {
background-color: #757575;
background-color: #505050;
}
/**
@ -2070,19 +2070,3 @@ body[class*="woocommerce"] #page .widget_price_filter .price_slider_wrapper .ui-
margin-right: auto;
}
}
/**
* Remove grid-products flexbox layout
*/
@media only screen and (min-width: 560px) {
body[class*="woocommerce"] #page .widget.woocommerce ul.product_list_widget:not(.woocommerce-mini-cart) {
display: inherit;
}
body[class*="woocommerce"] #page .widget.woocommerce ul.product_list_widget:not(.woocommerce-mini-cart) > li {
width: inherit;
}
body[class*="woocommerce"] #page .widget.woocommerce ul.product_list_widget:not(.woocommerce-mini-cart) > li:nth-child(3n+2):last-child {
margin-left: inherit;
margin-right: inherit;
}
}

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: balasana
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -1967,6 +1965,10 @@ hr.wp-block-separator {
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #D0D0D0;
font-size: 1.728rem;
@ -2059,7 +2061,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3019,36 +3024,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #303030;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3061,10 +3073,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -100,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: barnsbury
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: barnsbury
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -1967,6 +1965,10 @@ hr.wp-block-separator {
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #3C2323;
font-size: 1.64303rem;
@ -2056,7 +2058,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3002,36 +3007,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.15;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #3C2323;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3044,10 +3056,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: barnsbury
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -1967,6 +1965,10 @@ hr.wp-block-separator {
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #3C2323;
font-size: 1.64303rem;
@ -2059,7 +2061,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3019,36 +3024,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.15;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #3C2323;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3061,10 +3073,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -100,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -0,0 +1,55 @@
/**
* Redefine Sass map values for child theme WooCommerce output.
*/
$config-woocommerce: (
/* Wrapper Width - accepts full, wide, or defuault */
"wrapper-width": wide,
/* Tables */
"table": (
/* Borders */
"border": (
"color": map-deep-get($config-global, "color", "border", "default"),
"radius": 0,
"width": 1px,
),
"padding": map-deep-get($config-global, "spacing", "unit"),
),
/* Tabs */
"tabs": (
/* Borders */
"border": (
"color": map-deep-get($config-global, "color", "border", "default"),
"radius": 10px,
"width": 1px,
),
"padding": map-deep-get($config-global, "spacing", "horizontal"),
),
/* Mini cart */
"mini-cart": (
/* Color */
"color": (
"background": map-deep-get($config-global, "color", "foreground", "default"),
"border": map-deep-get($config-global, "color", "secondary", "hover"),
"text": map-deep-get($config-global, "color", "secondary", "default"),
"subtotal": map-deep-get($config-global, "color", "secondary", "default"),
"count": map-deep-get($config-global, "color", "secondary", "default"),
),
/* Button */
"button": (
"color": map-deep-get($config-button, "color", "text-hover"),
"background-color": map-deep-get($config-button, "color", "background-hover"),
),
"width": #{25 * map-deep-get($config-global, "spacing", "unit")},
),
/* Star Rating */
"star-rating": (
/* Color */
"color": map-deep-get($config-global, "color", "alert", "warning"),
),
);

View file

@ -0,0 +1,56 @@
/**
* WooCommerce Styles
* - These styles should only be loaded when WooCommerce is active
*/
/**
* Abstracts
* - Functions and config
*/
@import "../../varia/sass/abstracts/functions";
@import "../../varia/sass/abstracts/config-global";
/**
* Child Theme Name Config
*/
@import "config-child-theme-deep";
/**
* WooCommerce Config
*/
@import "config-child-theme-woocommerce";
/**
* Varia Mixins
*/
@import "../../varia/sass/abstracts/mixins";
/**
* Varia Responsive Logic
*/
@import "../../varia/sass/abstracts/responsive-logic";
/**
* Varia Extends
*/
@import "../../varia/sass/base/extends";
/**
* WooCommerce Styles
*/
@import "../../varia/sass/vendors/woocommerce/style";
body[class*="woocommerce"] #page {
.main-navigation > div > ul > li:hover ul.cart_list li > a,
.main-navigation > div > ul > li.focus ul.cart_list li > a,
.main-navigation > div > ul > li.current-menu-item ul.cart_list li > a {
border-top: none;
}
}
@include media(mobile) {
body[class*="woocommerce"] #page .main-navigation > div > ul > li.woocommerce-menu-item > .sub-menu {
right: auto;
left: 0;
}
}

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: brompton
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: brompton
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -2060,7 +2058,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3006,36 +3007,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #252E36;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3048,10 +3056,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: brompton
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -2063,7 +2061,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3023,36 +3024,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #252E36;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3065,10 +3073,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -0,0 +1,55 @@
/**
* Redefine Sass map values for child theme WooCommerce output.
*/
$config-woocommerce: (
/* Wrapper Width - accepts full, wide, or defuault */
"wrapper-width": default,
/* Tables */
"table": (
/* Borders */
"border": (
"color": map-deep-get($config-global, "color", "border", "default"),
"radius": 0,
"width": 1px,
),
"padding": map-deep-get($config-global, "spacing", "unit"),
),
/* Tabs */
"tabs": (
/* Borders */
"border": (
"color": map-deep-get($config-global, "color", "border", "default"),
"radius": 10px,
"width": 1px,
),
"padding": map-deep-get($config-global, "spacing", "horizontal"),
),
/* Mini cart */
"mini-cart": (
/* Color */
"color": (
"background": map-deep-get($config-global, "color", "background", "default"),
"border": map-deep-get($config-global, "color", "border", "dark"),
"text": map-deep-get($config-global, "color", "foreground", "default"),
"subtotal": map-deep-get($config-global, "color", "foreground", "default"),
"count": map-deep-get($config-global, "color", "foreground", "light"),
),
/* Button */
"button": (
"color": map-deep-get($config-button, "color", "text"),
"background-color": map-deep-get($config-button, "color", "background"),
),
"width": #{25 * map-deep-get($config-global, "spacing", "unit")},
),
/* Star Rating */
"star-rating": (
/* Color */
"color": map-deep-get($config-global, "color", "alert", "warning"),
),
);

View file

@ -0,0 +1,41 @@
/**
* WooCommerce Styles
* - These styles should only be loaded when WooCommerce is active
*/
/**
* Abstracts
* - Functions and config
*/
@import "../../varia/sass/abstracts/functions";
@import "../../varia/sass/abstracts/config-global";
/**
* Child Theme Name Config
*/
@import "config-child-theme-deep";
/**
* WooCommerce Config
*/
@import "config-child-theme-woocommerce";
/**
* Varia Mixins
*/
@import "../../varia/sass/abstracts/mixins";
/**
* Varia Responsive Logic
*/
@import "../../varia/sass/abstracts/responsive-logic";
/**
* Varia Extends
*/
@import "../../varia/sass/base/extends";
/**
* WooCommerce Styles
*/
@import "../../varia/sass/vendors/woocommerce/style";

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: coutoire
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -100,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: dalston
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: dalston
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -1967,6 +1965,10 @@ hr.wp-block-separator {
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #CCCCCC;
font-size: 1.52087rem;
@ -2056,7 +2058,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3002,36 +3007,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.2;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #1e1e1e;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3044,10 +3056,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: dalston
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -1967,6 +1965,10 @@ hr.wp-block-separator {
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #CCCCCC;
font-size: 1.52087rem;
@ -2059,7 +2061,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3019,36 +3024,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.2;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #1e1e1e;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3061,10 +3073,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -100,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: exford
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: exford
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -694,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -2058,7 +2058,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3004,36 +3007,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #111111;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3046,10 +3056,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: exford
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -694,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -2061,7 +2061,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3021,36 +3024,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #111111;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3063,10 +3073,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -100,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: hever
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: hever
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -2060,7 +2058,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3006,36 +3007,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #303030;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3048,10 +3056,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: hever
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -2063,7 +2061,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3023,36 +3024,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #303030;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3065,10 +3073,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: leven
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -100,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: mayland
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: mayland
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -1966,6 +1964,10 @@ hr.wp-block-separator {
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #e6e6e6;
font-size: 1.728rem;
@ -2055,7 +2057,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3001,36 +3006,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: black;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3043,10 +3055,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: mayland
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -1966,6 +1964,10 @@ hr.wp-block-separator {
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #e6e6e6;
font-size: 1.728rem;
@ -2058,7 +2060,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3018,36 +3023,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: black;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3060,10 +3072,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -100,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: maywood
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, full-site-editing, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, full-site-editing, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: maywood
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, full-site-editing, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, full-site-editing, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -1967,6 +1965,10 @@ hr.wp-block-separator {
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #CCCCCC;
font-size: 1.728rem;
@ -2056,7 +2058,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3002,36 +3007,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #181818;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3044,10 +3056,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: maywood
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, full-site-editing, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, full-site-editing, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -1967,6 +1965,10 @@ hr.wp-block-separator {
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #CCCCCC;
font-size: 1.728rem;
@ -2059,7 +2061,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3019,36 +3024,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #181818;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3061,10 +3073,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -37,8 +37,6 @@
"build:style": "node-sass sass/style-child-theme.scss style.css --output-style expanded --indent-type tab --indent-width 1 && postcss -r style.css",
"build:style-editor": "node-sass sass/style-child-theme-editor.scss style-editor.css --output-style expanded --indent-type tab --indent-width 1 && postcss -r style-editor.css",
"build:rtl": "rtlcss style.css style-rtl.css",
"build:woocommerce": "node-sass sass/style-child-theme-woocommerce.scss style-woocommerce.css --output-style expanded --indent-type tab --indent-width 1 && postcss -r style-woocommerce.css",
"build:woocommerce-rtl": "rtlcss style-woocommerce.css style-woocommerce-rtl.css",
"build:print": "node-sass sass/print.scss print.css --output-style expanded --indent-type tab --indent-width 1 && postcss -r print.css",
"build": "run-p \"build:*\"",
"watch": "chokidar \"**/*.scss\" -c \"npm run build\" --initial"

View file

@ -92,12 +92,6 @@ $config-global: (
"light": #F8F8F8,
"dark": #A5A5A5,
),
"alert": (
"success": #4caf50,
"info": #2196f3,
"warning": #ffc107,
"error": #CD2220,
),
"text-selection": #FDE2D4,
"black": black,
"white": white,
@ -106,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: morden
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: morden
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -188,84 +188,6 @@ $grid-configuration: map-extend($grid-configuration-default, $grid-configuration
* Base
* - Reset the browser
*/
/**
* Button Placeholder style
* - Since buttons appear in various blocks,
* lets use a placeholder to keep them all
* in-sync
*/
button,
.button,
input[type="submit"],
.wp-block-button__link,
.wp-block-file__button, .a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
line-height: 1;
color: white;
cursor: pointer;
font-weight: bold;
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1rem;
background-color: #CD2220;
border-radius: 5px;
border-width: 0;
padding: 16px 24px;
}
button:before,
.button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button:after,
.button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
content: '';
display: block;
height: 0;
width: 0;
}
button:before,
.button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
margin-bottom: -0.12em;
}
button:after,
.button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
margin-top: -0.11em;
}
button:hover,
.button:hover,
input:hover[type="submit"],
.wp-block-button__link:hover,
.wp-block-file__button:hover, .a8c-posts-list__view-all:hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:hover, button:focus,
.button:focus,
input:focus[type="submit"],
.wp-block-button__link:focus,
.wp-block-file__button:focus, .a8c-posts-list__view-all:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, button.has-focus,
.has-focus.button,
input.has-focus[type="submit"],
.has-focus.wp-block-button__link,
.has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
color: white;
background-color: #303030;
}
/**
* Onsale Placeholder style
* - Since buttons appear in various blocks,
* lets use a placeholder to keep them all
* in-sync
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
========================================================================== */
@ -772,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -937,8 +859,7 @@ footer {
.post-thumbnail > *,
.page-content > *,
.comment-content > *,
.author-bio > *,
.widget-area > .widget > * {
.author-bio > * {
margin-top: 16px;
margin-bottom: 16px;
}
@ -948,8 +869,7 @@ footer {
.post-thumbnail > *:first-child,
.page-content > *:first-child,
.comment-content > *:first-child,
.author-bio > *:first-child,
.widget-area > .widget > *:first-child {
.author-bio > *:first-child {
margin-top: 0;
}
@ -958,8 +878,7 @@ footer {
.post-thumbnail > *:last-child,
.page-content > *:last-child,
.comment-content > *:last-child,
.author-bio > *:last-child,
.widget-area > .widget > *:last-child {
.author-bio > *:last-child {
margin-bottom: 0;
}
@ -1150,8 +1069,77 @@ object {
}
/**
* Button
* Placeholder button style
* - Since buttons appear in various blocks,
* lets use a placeholder to keep them all
* in-sync
*/
button,
.button,
input[type="submit"],
.wp-block-button__link,
.wp-block-file__button, .a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
line-height: 1;
color: white;
cursor: pointer;
font-weight: bold;
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1rem;
background-color: #CD2220;
border-radius: 5px;
border-width: 0;
padding: 16px 24px;
}
button:before,
.button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button:after,
.button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
content: '';
display: block;
height: 0;
width: 0;
}
button:before,
.button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
margin-bottom: -0.12em;
}
button:after,
.button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
margin-top: -0.11em;
}
button:hover,
.button:hover,
input:hover[type="submit"],
.wp-block-button__link:hover,
.wp-block-file__button:hover, .a8c-posts-list__view-all:hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:hover, button:focus,
.button:focus,
input:focus[type="submit"],
.wp-block-button__link:focus,
.wp-block-file__button:focus, .a8c-posts-list__view-all:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, button.has-focus,
.has-focus.button,
input.has-focus[type="submit"],
.has-focus.wp-block-button__link,
.has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
color: white;
background-color: #303030;
}
/**
* Block Options
*/
@ -3019,10 +3007,11 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
.comment-meta .comment-author {
@ -3040,21 +3029,18 @@ body:not(.fse-enabled) .footer-menu a {
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #303030;
padding-left: 40px;
@ -3076,10 +3062,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: morden
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -188,84 +188,6 @@ $grid-configuration: map-extend($grid-configuration-default, $grid-configuration
* Base
* - Reset the browser
*/
/**
* Button Placeholder style
* - Since buttons appear in various blocks,
* lets use a placeholder to keep them all
* in-sync
*/
button,
.button,
input[type="submit"],
.wp-block-button__link,
.wp-block-file__button, .a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
line-height: 1;
color: white;
cursor: pointer;
font-weight: bold;
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1rem;
background-color: #CD2220;
border-radius: 5px;
border-width: 0;
padding: 16px 24px;
}
button:before,
.button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button:after,
.button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
content: '';
display: block;
height: 0;
width: 0;
}
button:before,
.button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
margin-bottom: -0.12em;
}
button:after,
.button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
margin-top: -0.11em;
}
button:hover,
.button:hover,
input:hover[type="submit"],
.wp-block-button__link:hover,
.wp-block-file__button:hover, .a8c-posts-list__view-all:hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:hover, button:focus,
.button:focus,
input:focus[type="submit"],
.wp-block-button__link:focus,
.wp-block-file__button:focus, .a8c-posts-list__view-all:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, button.has-focus,
.has-focus.button,
input.has-focus[type="submit"],
.has-focus.wp-block-button__link,
.has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
color: white;
background-color: #303030;
}
/**
* Onsale Placeholder style
* - Since buttons appear in various blocks,
* lets use a placeholder to keep them all
* in-sync
*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
========================================================================== */
@ -772,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -937,8 +859,7 @@ footer {
.post-thumbnail > *,
.page-content > *,
.comment-content > *,
.author-bio > *,
.widget-area > .widget > * {
.author-bio > * {
margin-top: 16px;
margin-bottom: 16px;
}
@ -948,8 +869,7 @@ footer {
.post-thumbnail > *:first-child,
.page-content > *:first-child,
.comment-content > *:first-child,
.author-bio > *:first-child,
.widget-area > .widget > *:first-child {
.author-bio > *:first-child {
margin-top: 0;
}
@ -958,8 +878,7 @@ footer {
.post-thumbnail > *:last-child,
.page-content > *:last-child,
.comment-content > *:last-child,
.author-bio > *:last-child,
.widget-area > .widget > *:last-child {
.author-bio > *:last-child {
margin-bottom: 0;
}
@ -1150,8 +1069,77 @@ object {
}
/**
* Button
* Placeholder button style
* - Since buttons appear in various blocks,
* lets use a placeholder to keep them all
* in-sync
*/
button,
.button,
input[type="submit"],
.wp-block-button__link,
.wp-block-file__button, .a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept {
line-height: 1;
color: white;
cursor: pointer;
font-weight: bold;
font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-family: var(--font-base, "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif);
font-size: 1rem;
background-color: #CD2220;
border-radius: 5px;
border-width: 0;
padding: 16px 24px;
}
button:before,
.button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before, button:after,
.button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
content: '';
display: block;
height: 0;
width: 0;
}
button:before,
.button:before,
input[type="submit"]:before,
.wp-block-button__link:before,
.wp-block-file__button:before, .a8c-posts-list__view-all:before, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:before {
margin-bottom: -0.12em;
}
button:after,
.button:after,
input[type="submit"]:after,
.wp-block-button__link:after,
.wp-block-file__button:after, .a8c-posts-list__view-all:after, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:after {
margin-top: -0.11em;
}
button:hover,
.button:hover,
input:hover[type="submit"],
.wp-block-button__link:hover,
.wp-block-file__button:hover, .a8c-posts-list__view-all:hover, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:hover, button:focus,
.button:focus,
input:focus[type="submit"],
.wp-block-button__link:focus,
.wp-block-file__button:focus, .a8c-posts-list__view-all:focus, body .widget_eu_cookie_law_widget #eu-cookie-law input.accept:focus, button.has-focus,
.has-focus.button,
input.has-focus[type="submit"],
.has-focus.wp-block-button__link,
.has-focus.wp-block-file__button, .has-focus.a8c-posts-list__view-all, body .widget_eu_cookie_law_widget #eu-cookie-law input.has-focus.accept {
color: white;
background-color: #303030;
}
/**
* Block Options
*/
@ -3036,10 +3024,11 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
.comment-meta .comment-author {
@ -3057,21 +3046,18 @@ body:not(.fse-enabled) .footer-menu a {
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #303030;
padding-right: 40px;
@ -3093,10 +3079,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -100,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -5,7 +5,7 @@
$config-woocommerce: (
/* Wrapper Width - accepts full, wide, or defuault */
"wrapper-width": wide,
"wrapper-width": default,
/* Tables */
"table": (
@ -36,8 +36,8 @@ $config-woocommerce: (
"background": map-deep-get($config-global, "color", "foreground", "default"),
"border": map-deep-get($config-global, "color", "border", "dark"),
"text": map-deep-get($config-global, "color", "background", "default"),
"subtotal": map-deep-get($config-global, "color", "background", "default"),
"count": map-deep-get($config-global, "color", "background", "default"),
"subtotal": map-deep-get($config-global, "color", "foreground", "default"),
"count": map-deep-get($config-global, "color", "foreground", "light"),
),
/* Button */
"button": (

View file

@ -0,0 +1,74 @@
/**
* WooCommerce Styles
* - These styles should only be loaded when WooCommerce is active
*/
/**
* Abstracts
* - Functions and config
*/
@import "../../varia/sass/abstracts/functions";
@import "../../varia/sass/abstracts/config-global";
/**
* Child Theme Name Config
*/
@import "config-child-theme-deep";
/**
* WooCommerce Config
*/
@import "config-child-theme-woocommerce";
/**
* Varia Mixins
*/
@import "../../varia/sass/abstracts/mixins";
/**
* Varia Responsive Logic
*/
@import "../../varia/sass/abstracts/responsive-logic";
/**
* Varia Extends
*/
@import "../../varia/sass/base/extends";
/**
* WooCommerce Styles
*/
@import "../../varia/sass/vendors/woocommerce/style";
/**
* Remove grid-products flexbox layout
*/
body[class*="woocommerce"] #page {
.main-navigation > div > ul > li:hover > a.woocommerce-cart-link,
.main-navigation > div > ul > li.focus > a.woocommerce-cart-link,
.main-navigation > div > ul > li.current-menu-item > a.woocommerce-cart-link {
.woocommerce-cart-subtotal,
.woocommerce-cart-count {
color: currentColor;
}
}
@include media(mobile) {
.widget.woocommerce ul.product_list_widget:not(.woocommerce-mini-cart) {
display: inherit;
& > li {
width: inherit;
&:nth-child(3n+2):last-child {
margin-left: inherit;
margin-right: inherit;
}
}
}
}
}

View file

@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -2060,7 +2058,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3006,36 +3007,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #222222;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3048,10 +3056,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -2063,7 +2061,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3023,36 +3024,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #222222;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3065,10 +3073,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -100,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: rivington
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: rivington
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -1967,6 +1965,10 @@ hr.wp-block-separator {
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #353a46;
font-size: 1.95312rem;
@ -2056,7 +2058,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3002,36 +3007,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #f2f2f2;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3044,10 +3056,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: rivington
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -1967,6 +1965,10 @@ hr.wp-block-separator {
*/
}
hr.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
max-width: 96px;
}
hr.wp-block-separator.is-style-dots:before {
color: #353a46;
font-size: 1.95312rem;
@ -2059,7 +2061,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3019,36 +3024,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #f2f2f2;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3061,10 +3073,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -1,6 +1,6 @@
{
"name": "rockfield",
"version": "1.2.1",
"version": "1.2.2",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View file

@ -1,6 +1,6 @@
{
"name": "rockfield",
"version": "1.2.1",
"version": "1.2.2",
"description": "Rockfield",
"bugs": {
"url": "https://github.com/Automattic/themes/issues"

View file

@ -5,12 +5,12 @@ Author: Automattic
Author URI: https://automattic.com/
Description: Rockfield is a refined theme designed for restaurants and food-related businesses seeking a classic, elegant look.
Requires at least: WordPress 4.9.6
Version: 1.2.1
Version: 1.2.2
License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: rockfield
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -6,7 +6,7 @@ Author: Automattic
Author URI: https://automattic.com/
Description: Rockfield is a refined theme designed for restaurants and food-related businesses seeking a classic, elegant look.
Requires at least: WordPress 4.9.6
Version: 1.2.1
Version: 1.2.2
License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
@ -2058,7 +2058,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3004,36 +3007,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #444444;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3046,10 +3056,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -6,7 +6,7 @@ Author: Automattic
Author URI: https://automattic.com/
Description: Rockfield is a refined theme designed for restaurants and food-related businesses seeking a classic, elegant look.
Requires at least: WordPress 4.9.6
Version: 1.2.1
Version: 1.2.2
License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
@ -2061,7 +2061,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3021,36 +3024,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #444444;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3063,10 +3073,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -100,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -0,0 +1,48 @@
/**
* Redefine Sass map values for child theme WooCommerce output.
*/
$config-woocommerce: (
/* Tables */
"table": (
/* Borders */
"border": (
"color": map-deep-get($config-global, "color", "border", "default"),
"radius": 0,
"width": 1px,
),
"padding": map-deep-get($config-global, "spacing", "unit"),
),
/* Tabs */
"tabs": (
/* Borders */
"border": (
"color": map-deep-get($config-global, "color", "border", "default"),
"radius": 10px,
"width": 1px,
),
"padding": map-deep-get($config-global, "spacing", "horizontal"),
),
/* Mini cart */
"mini-cart": (
/* Color */
"color": (
"subtotal": map-deep-get($config-global, "color", "white"),
"count": map-deep-get($config-global, "color", "white"),
),
/* Button */
"button": (
"color": map-deep-get($config-global, "color", "primary", "default"),
"background-color": map-deep-get($config-global, "color", "white"),
),
),
/* Star Rating */
"star-rating": (
/* Color */
"color": map-deep-get($config-global, "color", "alert", "warning"),
),
);

View file

@ -0,0 +1,35 @@
/**
* WooCommerce Styles
* - These styles should be loaded when WooCommerce is active
*/
/**
* Abstracts
* - Functions and config
*/
@import "../../varia/sass/abstracts/functions";
/**
* Shawburn Config
*/
@import "config-child-theme-deep";
/**
* WooCommerce Config
*/
@import "config-child-theme-woocommerce";
/**
* Varia Mixins
*/
@import "../../varia/sass/abstracts/mixins";
/**
* Varia Extends
*/
@import "../../varia/sass/base/extends";
/**
* WooCommerce Styles
*/
@import "../../varia/sass/vendors/woocommerce/style";

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: shawburn
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: shawburn
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -2060,7 +2058,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3005,36 +3006,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #444444;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3047,10 +3055,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: shawburn
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -684,9 +684,7 @@ a {
.site-header:after,
.site-content:after,
.site-footer:after {
content: "";
display: table;
table-layout: fixed;
clear: both;
}
/**
@ -696,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -2063,7 +2061,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3022,36 +3023,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #444444;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3064,10 +3072,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -100,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: stow
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: stow
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -694,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -2058,7 +2058,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3004,36 +3007,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #444444;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3046,10 +3056,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: stow
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -694,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -2061,7 +2061,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3021,36 +3024,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #444444;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3063,10 +3073,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -100,7 +100,7 @@ $config-global: (
/* Spacing */
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: stratford
Tags: one-column, fixed-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, fixed-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: stratford
Tags: one-column, fixed-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, fixed-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -694,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -2058,7 +2058,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-left: auto;
margin-right: auto;
text-align: center;
}
@ -3004,36 +3007,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-left: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-left: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-left: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
left: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
}
.comment-meta .comment-metadata {
color: #74767e;
padding-left: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-left: 0;
}
}
.comment-meta .comment-metadata a {
@ -3046,10 +3056,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-left: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-left: 16px;
}
.comment-meta .comment-author .avatar {
margin-left: 16px;
display: inherit;
position: inherit;
left: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -11,7 +11,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: stratford
Tags: one-column, fixed-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, a8c-global-styles
Tags: one-column, fixed-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
@ -694,7 +694,7 @@ a {
header *,
main *,
footer * {
max-width: inherit;
max-width: unset;
}
html,
@ -2061,7 +2061,10 @@ table th,
*/
.aligncenter {
clear: both;
display: block;
float: none;
margin-right: auto;
margin-left: auto;
text-align: center;
}
@ -3021,36 +3024,43 @@ body:not(.fse-enabled) .footer-menu a {
margin-right: calc( $avatar-size + (0.5 * 16px));
}
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
}
.comment-meta .comment-author {
line-height: 1.125;
margin-bottom: 4px;
padding-right: 40px;
max-width: calc(100% - 48px);
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author {
display: flex;
align-items: center;
margin-bottom: 0;
padding-right: 0;
}
}
.comment-meta .comment-author .fn {
word-wrap: break-word;
word-break: break-word;
hyphens: auto;
}
.comment-meta .comment-author .avatar {
display: block;
position: absolute;
right: 0;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
}
.comment-meta .comment-metadata {
color: #74767e;
padding-right: 40px;
}
@media only screen and (min-width: 560px) {
.comment-meta .comment-metadata {
padding-right: 0;
}
}
.comment-meta .comment-metadata a {
@ -3063,10 +3073,29 @@ body:not(.fse-enabled) .footer-menu a {
@media only screen and (min-width: 560px) {
.comment-meta {
margin-right: inherit;
align-items: center;
display: flex;
justify-content: space-between;
}
.comment-meta .comment-author {
display: flex;
align-items: center;
max-width: inherit;
flex: 0 1 auto;
}
.comment-meta .comment-author .fn {
padding-right: 16px;
}
.comment-meta .comment-author .avatar {
margin-right: 16px;
display: inherit;
position: inherit;
right: inherit;
}
.comment-meta .comment-metadata {
flex: 0 1 auto;
}
}
.comment-metadata,

View file

@ -195,9 +195,9 @@ if ( ! function_exists( 'varia_setup' ) ) :
// Add support for responsive embedded content.
add_theme_support( 'responsive-embeds' );
// Add support for Global Styles as defined by the a8c plugin.
// Add support for Global Styles.
add_theme_support(
'a8c-global-styles',
'jetpack-global-styles',
[
'enable_theme_default' => true,
]

View file

@ -165,6 +165,28 @@ function varia_nav_menu_link_attributes( $atts, $item, $args, $depth ) {
}
add_filter( 'nav_menu_link_attributes', 'varia_nav_menu_link_attributes', 10, 4 );
/*
* Create the continue reading link
*/
function varia_continue_reading_link() {
if ( ! is_admin() ) {
$continue_reading = sprintf(
/* translators: %s: Name of current post. */
wp_kses( __( 'Continue reading %s', 'varia' ), array( 'span' => array( 'class' => array() ) ) ),
the_title( '<span class="screen-reader-text">"', '"</span>', false )
);
return '<a class="more-link" href="' . esc_url( get_permalink() ) . '">' . $continue_reading . '</a>';
}
}
// Filter the excerpt more link
add_filter( 'excerpt_more', 'varia_continue_reading_link' );
// Filter the content more link
add_filter( 'the_content_more_link', 'varia_continue_reading_link' );
/**
* Add a dropdown icon to top-level menu items.
*

View file

@ -185,15 +185,29 @@ function varia_add_cart_menu( $nav, $args ) {
if ( $args->theme_location == 'menu-1' ) {
return sprintf(
'%1$s
<li class="menu-item woocommerce-menu-item %6$s" title="%2$s">
%4$s
</ul></div>
<input type="checkbox" role="button" aria-haspopup="true" id="woocommerce-toggle" class="hide-visually">
<label for="woocommerce-toggle" id="toggle-cart" class="button">%2$s %3$s
<span class="dropdown-icon open">+</span>
<span class="dropdown-icon close">×</span>
<span class="hide-visually expanded-text">%4$s</span>
<span class="hide-visually collapsed-text">%5$s</span>
</label>
<div class="woocommerce-menu-container">
<ul id="woocommerce-menu" class="main-menu" aria-label="submenu">
<li class="menu-item woocommerce-menu-item %10$s" title="%6$s">
%8$s
<ul class="sub-menu">
<li class="woocommerce-cart-widget" title="%3$s">
%5$s
<li class="woocommerce-cart-widget" title="%7$s">
%9$s
</li>
</ul>
</li>',
$nav,
varia_get_icon_svg( 'shopping_cart', 16 ),
esc_html__( 'Cart', 'varia' ),
esc_html__( 'expanded', 'varia' ),
esc_html__( 'collapsed', 'varia' ),
esc_attr__( 'View your shopping cart', 'varia' ),
esc_attr__( 'View your shopping list', 'varia' ),
varia_cart_link(),

View file

@ -1,6 +1,6 @@
{
"name": "varia",
"version": "1.3.0",
"version": "1.3.1",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View file

@ -1,6 +1,6 @@
{
"name": "varia",
"version": "1.3.0",
"version": "1.3.1",
"description": "A variable-based design system for WordPress sites built with Gutenberg.",
"bugs": {
"url": "https://github.com/Automattic/themes/issues?q=is%3Aopen+is%3Aissue+label%3Avaria"

View file

@ -1,6 +1,6 @@
=== Varia ===
Contributors: the WordPress team
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, jetpack-global-styles
Requires at least: 4.9.6
Tested up to: WordPress 5.0
Stable tag: 1.1.0

View file

@ -105,7 +105,7 @@ $config-global: (
// Spacing
"spacing": (
"unit": (2 * $baseline-unit), // 16px
"measure": inherit, // Use ch units here. ie: 60ch = 60 character max-width
"measure": unset, // Use ch units here. ie: 60ch = 60 character max-width
"horizontal": (2 * $baseline-unit), // 16px
"vertical": (4 * $baseline-unit), // 32px matches default spacing in the editor.
),

View file

@ -34,7 +34,7 @@ $config-woocommerce: (
/* Color */
"color": (
"background": map-deep-get($config-global, "color", "background", "default"),
"border": map-deep-get($config-global, "color", "border", "dark"),
"border": map-deep-get($config-global, "color", "border", "default"),
"text": map-deep-get($config-global, "color", "foreground", "default"),
"subtotal": map-deep-get($config-global, "color", "foreground", "default"),
"count": map-deep-get($config-global, "color", "foreground", "light"),

View file

@ -10,7 +10,7 @@ License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
Text Domain: varia-child-theme
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, full-site-editing, a8c-global-styles
Tags: one-column, flexible-header, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, rtl-language-support, sticky-post, threaded-comments, translation-ready, auto-loading-homepage, full-site-editing, jetpack-global-styles
This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Some files were not shown because too many files have changed in this diff Show more