Merge branch 'master' into enhancement/add-wc-support
This commit is contained in:
commit
60e354e5b8
51 changed files with 1454 additions and 544 deletions
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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.
|
||||
|
@ -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: #303030;
|
||||
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,
|
||||
|
|
|
@ -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.
|
||||
|
@ -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: #303030;
|
||||
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,
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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.
|
||||
*
|
||||
|
|
|
@ -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.
|
||||
),
|
||||
|
|
|
@ -16,6 +16,11 @@
|
|||
.more-link {
|
||||
display: block;
|
||||
color: inherit;
|
||||
margin-top: #{map-deep-get($config-global, "spacing", "unit")};
|
||||
|
||||
@include media(mobile) {
|
||||
margin-top: #{map-deep-get($config-global, "spacing", "vertical")};
|
||||
}
|
||||
|
||||
&:after {
|
||||
content: "\02192";
|
||||
|
|
|
@ -2867,6 +2867,13 @@ body:not(.fse-enabled) .footer-menu a {
|
|||
.entry-content .more-link {
|
||||
display: block;
|
||||
color: inherit;
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 560px) {
|
||||
.entry-content .more-link {
|
||||
margin-top: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
.entry-content .more-link:after {
|
||||
|
|
|
@ -2884,6 +2884,13 @@ body:not(.fse-enabled) .footer-menu a {
|
|||
.entry-content .more-link {
|
||||
display: block;
|
||||
color: inherit;
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 560px) {
|
||||
.entry-content .more-link {
|
||||
margin-top: 32px;
|
||||
}
|
||||
}
|
||||
|
||||
.entry-content .more-link:after {
|
||||
|
|
|
@ -29,20 +29,7 @@
|
|||
|
||||
<div class="entry-content">
|
||||
<?php
|
||||
the_content(
|
||||
sprintf(
|
||||
wp_kses(
|
||||
/* translators: %s: Name of current post. Only visible to screen readers */
|
||||
__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'varia' ),
|
||||
array(
|
||||
'span' => array(
|
||||
'class' => array(),
|
||||
),
|
||||
)
|
||||
),
|
||||
get_the_title()
|
||||
)
|
||||
);
|
||||
the_content();
|
||||
|
||||
wp_link_pages(
|
||||
array(
|
||||
|
|
Loading…
Reference in a new issue