2018-12-13 21:18:37 -05:00
|
|
|
/*
|
|
|
|
Theme Name: Twenty Sixteen
|
2018-12-18 22:30:41 -05:00
|
|
|
Description: Used to style blocks.
|
2018-12-13 21:18:37 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
>>> TABLE OF CONTENTS:
|
|
|
|
----------------------------------------------------------------
|
|
|
|
1.0 General Block Styles
|
|
|
|
2.0 Blocks - Common Blocks
|
|
|
|
3.0 Blocks - Formatting
|
|
|
|
4.0 Blocks - Layout Elements
|
|
|
|
5.0 Blocks - Widgets
|
|
|
|
6.0 Blocks - Colors
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
1.0 General Block Styles
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* Captions */
|
|
|
|
|
|
|
|
[class^="wp-block-"] figcaption {
|
|
|
|
color: #686868;
|
|
|
|
font-style: italic;
|
|
|
|
line-height: 1.6153846154;
|
|
|
|
padding-top: 0.5384615385em;
|
2018-12-17 10:46:52 -05:00
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl [class^="wp-block-"] figcaption {
|
|
|
|
text-align: right;
|
2018-12-13 21:18:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
2.0 Blocks - Common Blocks
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* Paragraph */
|
|
|
|
|
|
|
|
p.has-drop-cap:not(:focus)::first-letter {
|
|
|
|
font-size: 5em;
|
|
|
|
}
|
|
|
|
|
2018-12-17 10:46:52 -05:00
|
|
|
/* Image */
|
|
|
|
|
|
|
|
@media screen and (min-width: 61.5625em) {
|
|
|
|
body:not(.search-results) article:not(.type-page) .wp-block-image figcaption.below-entry-meta {
|
|
|
|
clear: both;
|
|
|
|
display: block;
|
|
|
|
float: none;
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: -40%;
|
|
|
|
max-width: 140%;
|
|
|
|
}
|
|
|
|
|
|
|
|
body.rtl:not(.search-results) article:not(.type-page) .wp-block-image figcaption.below-entry-meta {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: -40%;
|
|
|
|
}
|
2023-02-06 03:26:21 -05:00
|
|
|
|
|
|
|
body:not(.search-results) article:not(.type-page) .wp-block-gallery .wp-block-image img.below-entry-meta,
|
|
|
|
body:not(.search-results) article:not(.type-page) .wp-block-gallery .wp-block-image figcaption.below-entry-meta {
|
|
|
|
margin: 0;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2018-12-17 10:46:52 -05:00
|
|
|
}
|
|
|
|
|
2018-12-13 21:18:37 -05:00
|
|
|
/* Gallery */
|
|
|
|
|
|
|
|
.wp-block-gallery {
|
|
|
|
margin-bottom: 1.75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Quote */
|
|
|
|
|
|
|
|
.wp-block-quote:not(.is-large):not(.is-style-large).alignleft,
|
|
|
|
.wp-block-quote:not(.is-large):not(.is-style-large).alignright {
|
|
|
|
border-left: none;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl .wp-block-quote:not(.is-large):not(.is-style-large).alignleft,
|
|
|
|
.rtl .wp-block-quote:not(.is-large):not(.is-style-large).alignright {
|
|
|
|
border-right: none;
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-quote cite {
|
|
|
|
color: #1a1a1a;
|
|
|
|
display: block;
|
|
|
|
font-size: 16px;
|
|
|
|
font-size: 1rem;
|
|
|
|
line-height: 1.75;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-quote cite:before {
|
|
|
|
content: "\2014\00a0";
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Audio */
|
|
|
|
|
|
|
|
.wp-block-audio audio {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
Bundled Themes: Expand initial block editor support.
A handful of items were missed when adding initial support for the new block editor to bundled themes in [43793]-[43800]. This adds support for those missed items.
Props pento, davidakennedy, laurelfulford.
Merges [43869], [43870], [43871], [43872], [43873], [43874], [43875], [43876] to trunk.
Fixes #45238, #45239, #45240, #45242, #45243, #45244, #45245, #45246.
Built from https://develop.svn.wordpress.org/trunk@44152
git-svn-id: http://core.svn.wordpress.org/trunk@43982 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-13 21:55:39 -05:00
|
|
|
/* Cover */
|
|
|
|
|
|
|
|
.wp-block-cover-image.aligncenter,
|
|
|
|
.wp-block-cover.aligncenter {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2018-12-13 21:18:37 -05:00
|
|
|
/* File */
|
|
|
|
|
|
|
|
.wp-block-file .wp-block-file__button {
|
|
|
|
background: #1a1a1a;
|
|
|
|
border: 0;
|
|
|
|
border-radius: 2px;
|
|
|
|
color: #fff;
|
|
|
|
font-family: Montserrat, "Helvetica Neue", sans-serif;
|
|
|
|
font-weight: 700;
|
|
|
|
letter-spacing: 0.046875em;
|
|
|
|
line-height: 1;
|
|
|
|
padding: 0.84375em 0.875em 0.78125em;
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-file .wp-block-file__button:hover,
|
|
|
|
.wp-block-file .wp-block-file__button:focus {
|
|
|
|
background: #007acc;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-file .wp-block-file__button:focus {
|
|
|
|
outline: thin dotted;
|
|
|
|
outline-offset: -4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl .wp-block-file * + .wp-block-file__button {
|
|
|
|
margin-left: 0.75em;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
3.0 Blocks - Formatting Blocks
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* Code */
|
|
|
|
|
|
|
|
.wp-block-code {
|
|
|
|
border: 0;
|
|
|
|
font-family: Inconsolata, monospace;
|
|
|
|
line-height: 1.75;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2021-02-15 13:56:04 -05:00
|
|
|
.wp-block-code code {
|
|
|
|
font-size: inherit;
|
|
|
|
}
|
|
|
|
|
2018-12-13 21:18:37 -05:00
|
|
|
/* Pullquote */
|
|
|
|
|
|
|
|
.wp-block-pullquote {
|
|
|
|
border-width: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-pullquote blockquote {
|
2020-02-11 14:38:05 -05:00
|
|
|
color: #686868;
|
|
|
|
border-left: 4px solid #1a1a1a;
|
2018-12-13 21:18:37 -05:00
|
|
|
margin: 0;
|
2020-02-11 14:38:05 -05:00
|
|
|
padding: 0 0 0 24px;
|
2018-12-13 21:18:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.rtl .wp-block-pullquote blockquote {
|
2020-02-11 14:38:05 -05:00
|
|
|
border-left: none;
|
|
|
|
border-right: 4px solid #1a1a1a;
|
|
|
|
padding: 0 24px 0 0;
|
2018-12-13 21:18:37 -05:00
|
|
|
}
|
|
|
|
|
2022-10-04 04:22:10 -04:00
|
|
|
.wp-block-pullquote.has-text-color blockquote,
|
|
|
|
.wp-block-pullquote.has-background blockquote,
|
|
|
|
.has-background .wp-block-pullquote blockquote,
|
|
|
|
.wp-block-pullquote.has-text-color cite {
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2018-12-13 21:18:37 -05:00
|
|
|
.wp-block-pullquote p {
|
|
|
|
font-size: 19px;
|
|
|
|
font-size: 1.1875rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-pullquote cite {
|
|
|
|
color: #1a1a1a;
|
|
|
|
display: block;
|
|
|
|
font-size: 16px;
|
|
|
|
font-size: 1rem;
|
2021-11-03 13:01:57 -04:00
|
|
|
font-style: normal;
|
2018-12-13 21:18:37 -05:00
|
|
|
line-height: 1.75;
|
|
|
|
text-transform: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-pullquote cite:before {
|
|
|
|
content: "\2014\00a0";
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Table */
|
|
|
|
|
|
|
|
.wp-block-table,
|
|
|
|
.wp-block-table th,
|
|
|
|
.wp-block-table td {
|
|
|
|
border: 1px solid #d1d1d1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-table {
|
|
|
|
border-collapse: separate;
|
|
|
|
border-spacing: 0;
|
2020-06-17 13:27:09 -04:00
|
|
|
border-width: 0;
|
2018-12-13 21:18:37 -05:00
|
|
|
margin: 0 0 1.75em;
|
|
|
|
table-layout: fixed;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-table th,
|
|
|
|
.wp-block-table td {
|
|
|
|
font-weight: normal;
|
|
|
|
padding: 0.4375em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-table th {
|
|
|
|
border-width: 0 1px 1px 0;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-table td {
|
|
|
|
border-width: 0 1px 1px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
4.0 Blocks - Layout Elements
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* Buttons */
|
|
|
|
|
|
|
|
.wp-block-button .wp-block-button__link {
|
2019-01-01 22:53:53 -05:00
|
|
|
box-shadow: none;
|
2018-12-13 21:18:37 -05:00
|
|
|
font-family: Montserrat, "Helvetica Neue", sans-serif;
|
|
|
|
font-weight: 700;
|
|
|
|
letter-spacing: 0.046875em;
|
|
|
|
line-height: 1;
|
2019-01-01 22:53:53 -05:00
|
|
|
padding: 0.84375em 1.3125em 0.78125em;
|
2018-12-13 21:18:37 -05:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.wp-block-button__link {
|
2018-12-18 22:24:59 -05:00
|
|
|
background: #1a1a1a;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.is-style-outline .wp-block-button__link:not(.has-background) {
|
2019-01-01 22:53:53 -05:00
|
|
|
background: transparent;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.is-style-outline .wp-block-button__link:not(.has-text-color) {
|
2019-01-01 22:53:53 -05:00
|
|
|
color: #1a1a1a;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.wp-block-button .wp-block-button__link:active,
|
|
|
|
.wp-block-button .wp-block-button__link:focus,
|
|
|
|
.wp-block-button .wp-block-button__link:hover,
|
|
|
|
.is-style-outline .wp-block-button__link:not(.has-background):active,
|
|
|
|
.is-style-outline .wp-block-button__link:not(.has-background):hover,
|
|
|
|
.is-style-outline .wp-block-button__link:not(.has-background):focus,
|
|
|
|
.is-style-outline .wp-block-button__link:not(.has-text-color):active,
|
|
|
|
.is-style-outline .wp-block-button__link:not(.has-text-color):hover,
|
|
|
|
.is-style-outline .wp-block-button__link:not(.has-text-color):focus {
|
2018-12-13 21:18:37 -05:00
|
|
|
background: #007acc;
|
2018-12-18 22:24:59 -05:00
|
|
|
color: #fff;
|
2018-12-13 21:18:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-button .wp-block-button__link:focus {
|
|
|
|
outline: thin dotted;
|
|
|
|
outline-offset: -4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Seperator */
|
|
|
|
|
|
|
|
hr.wp-block-separator {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-separator {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
max-width: 100px;
|
|
|
|
}
|
|
|
|
|
2023-01-22 15:07:12 -05:00
|
|
|
.wp-block-separator.is-style-wide,
|
|
|
|
.wp-block-separator.is-style-dots {
|
2018-12-13 21:18:37 -05:00
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
Bundled Themes: Expand initial block editor support.
A handful of items were missed when adding initial support for the new block editor to bundled themes in [43793]-[43800]. This adds support for those missed items.
Props pento, davidakennedy, laurelfulford.
Merges [43869], [43870], [43871], [43872], [43873], [43874], [43875], [43876] to trunk.
Fixes #45238, #45239, #45240, #45242, #45243, #45244, #45245, #45246.
Built from https://develop.svn.wordpress.org/trunk@44152
git-svn-id: http://core.svn.wordpress.org/trunk@43982 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-13 21:55:39 -05:00
|
|
|
/* Media & Text */
|
|
|
|
|
|
|
|
.wp-block-media-text {
|
|
|
|
margin-bottom: 1.75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-media-text *:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2018-12-13 21:18:37 -05:00
|
|
|
/*--------------------------------------------------------------
|
|
|
|
5.0 Blocks - Widget Blocks
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
|
Bundled Themes: Expand initial block editor support.
A handful of items were missed when adding initial support for the new block editor to bundled themes in [43793]-[43800]. This adds support for those missed items.
Props pento, davidakennedy, laurelfulford.
Merges [43869], [43870], [43871], [43872], [43873], [43874], [43875], [43876] to trunk.
Fixes #45238, #45239, #45240, #45242, #45243, #45244, #45245, #45246.
Built from https://develop.svn.wordpress.org/trunk@44152
git-svn-id: http://core.svn.wordpress.org/trunk@43982 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-13 21:55:39 -05:00
|
|
|
/* Archives, Categories & Latest Posts */
|
|
|
|
|
|
|
|
.wp-block-archives.aligncenter,
|
|
|
|
.wp-block-categories.aligncenter,
|
|
|
|
.wp-block-latest-posts.aligncenter {
|
|
|
|
list-style-position: inside;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2018-12-13 21:18:37 -05:00
|
|
|
/* Latest Comments */
|
|
|
|
|
|
|
|
.wp-block-latest-comments__comment-meta a {
|
|
|
|
box-shadow: none;
|
|
|
|
font-weight: 700;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-latest-comments__comment-date {
|
|
|
|
color: #686868;
|
|
|
|
font-family: Montserrat, "Helvetica Neue", sans-serif;
|
|
|
|
font-size: 13px;
|
|
|
|
font-size: 0.8125rem;
|
|
|
|
line-height: 1.6153846154;
|
|
|
|
}
|
|
|
|
|
Bundled Themes: Improve display of blocks in widget areas.
Fixes minor styling issues, mostly font size and spacing, in blocks used in widget areas. Changes made to Twenty Ten, Twenty Thirteen, Twenty Fourteen, Twenty Sixteen, Twenty Seventeen, and Twenty Twenty-One.
Props noisysocks, sumaiyasiddika, danieldudzic, scruffian, jffng.
Fixes #53422.
Built from https://develop.svn.wordpress.org/trunk@51205
git-svn-id: http://core.svn.wordpress.org/trunk@50814 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-06-22 16:14:59 -04:00
|
|
|
.wp-block-latest-comments .wp-block-latest-comments__comment:not(:first-child) {
|
2018-12-13 21:18:37 -05:00
|
|
|
border-top: 1px solid #d1d1d1;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding: 1.75em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-latest-comments__comment-excerpt p:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
Bundled Themes: Improve display of blocks in widget areas.
Fixes minor styling issues, mostly font size and spacing, in blocks used in widget areas. Changes made to Twenty Ten, Twenty Thirteen, Twenty Fourteen, Twenty Sixteen, Twenty Seventeen, and Twenty Twenty-One.
Props noisysocks, sumaiyasiddika, danieldudzic, scruffian, jffng.
Fixes #53422.
Built from https://develop.svn.wordpress.org/trunk@51205
git-svn-id: http://core.svn.wordpress.org/trunk@50814 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2021-06-22 16:14:59 -04:00
|
|
|
/* Query Loop & Post Template */
|
|
|
|
|
|
|
|
.wp-block-query .wp-block-post-template {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-query .wp-block-post-template li {
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding: 1.5em 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-query .wp-block-post-template li:not(:first-child) {
|
|
|
|
border-top: 1px solid #d1d1d1;
|
|
|
|
}
|
|
|
|
|
2018-12-13 21:18:37 -05:00
|
|
|
/*--------------------------------------------------------------
|
|
|
|
6.0 Blocks - Colors
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-dark-gray-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
color: #1a1a1a;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-dark-gray-background-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
background-color: #1a1a1a;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-medium-gray-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
color: #686868;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-medium-gray-background-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
background-color: #686868;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-light-gray-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
color: #e5e5e5;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-light-gray-background-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
background-color: #e5e5e5;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-white-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-white-background-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-blue-gray-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
color: #4d545c;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-blue-gray-background-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
background-color: #4d545c;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-bright-blue-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
color: #007acc;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-bright-blue-background-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
background-color: #007acc;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-light-blue-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
color: #9adffd;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-light-blue-background-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
background-color: #9adffd;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-dark-brown-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
color: #402b30;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-dark-brown-background-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
background-color: #402b30;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-medium-brown-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
color: #774e24;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-medium-brown-background-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
background-color: #774e24;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-dark-red-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
color: #640c1f;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-dark-red-background-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
background-color: #640c1f;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-bright-red-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
color: #ff675f;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-bright-red-background-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
background-color: #ff675f;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-yellow-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
color: #ffef8e;
|
|
|
|
}
|
|
|
|
|
2022-03-12 16:55:08 -05:00
|
|
|
.has-yellow-background-color {
|
2018-12-13 21:18:37 -05:00
|
|
|
background-color: #ffef8e;
|
|
|
|
}
|