2018-11-06 14:59:31 +00:00
|
|
|
/*
|
|
|
|
Theme Name: Ixion
|
|
|
|
Description: Used to style Gutenberg Blocks.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
>>> 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
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
|
2018-11-07 00:58:11 +00:00
|
|
|
/* Alignments */
|
2018-11-06 14:59:31 +00:00
|
|
|
|
2018-11-07 00:58:11 +00:00
|
|
|
.no-sidebar #page {
|
|
|
|
overflow-x: hidden;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Full Width */
|
2018-11-07 00:58:11 +00:00
|
|
|
|
2020-06-08 14:30:05 +00:00
|
|
|
.no-sidebar .alignfull,
|
|
|
|
.no-sidebar .wp-block-group .alignfull {
|
2018-11-06 14:59:31 +00:00
|
|
|
position: relative;
|
2019-02-05 03:59:02 +00:00
|
|
|
min-width: 100vw;
|
|
|
|
margin-left: 50%;
|
|
|
|
left: -50vw;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
2018-11-06 18:00:19 +00:00
|
|
|
.no-sidebar .wp-block-columns.alignfull,
|
|
|
|
.no-sidebar .wp-block-latest-comments.alignfull,
|
|
|
|
.no-sidebar .wp-block-categories.alignfull,
|
|
|
|
.no-sidebar .wp-block-archives.alignfull,
|
2018-11-06 18:15:27 +00:00
|
|
|
.no-sidebar .wp-block-latest-posts.alignfull,
|
|
|
|
.no-sidebar .wp-block-file.alignfull {
|
2018-11-07 00:58:11 +00:00
|
|
|
padding-left: 2em;
|
|
|
|
padding-right: 2em;
|
2018-11-06 18:00:19 +00:00
|
|
|
}
|
|
|
|
|
2018-11-06 15:18:07 +00:00
|
|
|
.no-sidebar .wp-block-embed.is-type-video.alignfull iframe {
|
2018-11-06 14:59:31 +00:00
|
|
|
width: 100% !important;
|
|
|
|
height: 100% !important;
|
|
|
|
}
|
|
|
|
|
2018-11-06 18:00:19 +00:00
|
|
|
.rtl.no-sidebar .alignfull {
|
2018-11-06 14:59:31 +00:00
|
|
|
left: auto;
|
|
|
|
right: 50%;
|
|
|
|
transform: translateX(50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Wide Width */
|
|
|
|
|
|
|
|
@media (min-width: 1024px) {
|
2020-06-08 14:30:05 +00:00
|
|
|
.no-sidebar .alignwide,
|
|
|
|
.no-sidebar .wp-block-group .alignwide {
|
2018-11-06 14:59:31 +00:00
|
|
|
width: 120%;
|
|
|
|
max-width: 120%;
|
|
|
|
margin-left: -10%;
|
|
|
|
margin-right: -10%;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2018-11-06 15:18:07 +00:00
|
|
|
.no-sidebar .wp-block-embed.is-type-video.alignwide iframe {
|
2018-11-06 14:59:31 +00:00
|
|
|
width: 100% !important;
|
|
|
|
height: 100% !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-08 14:30:05 +00:00
|
|
|
/* Nested Blocks */
|
|
|
|
|
|
|
|
.no-sidebar *[class^="wp-block"] .alignwide,
|
|
|
|
.no-sidebar *[class^="wp-block"] .alignfull {
|
|
|
|
min-width: inherit;
|
|
|
|
max-width: inherit;
|
|
|
|
margin-left: inherit;
|
|
|
|
margin-right: inherit;
|
|
|
|
left: initial;
|
|
|
|
transform: none;
|
|
|
|
}
|
|
|
|
|
2018-11-07 00:58:11 +00:00
|
|
|
/* Captions */
|
|
|
|
|
|
|
|
[class^="wp-block-"] figcaption {
|
2018-11-21 21:23:40 +00:00
|
|
|
color: inherit;
|
|
|
|
font-size: inherit;
|
2018-11-07 00:58:11 +00:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
2.0 Blocks - Common Blocks
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* Paragraph */
|
|
|
|
|
|
|
|
p.has-drop-cap:not(:focus)::first-letter {
|
|
|
|
font-size: 110px;
|
|
|
|
line-height: 1.1;
|
|
|
|
margin-top: 0.1em;
|
|
|
|
}
|
|
|
|
|
2018-11-06 14:59:31 +00:00
|
|
|
/* Gallery */
|
|
|
|
|
|
|
|
.wp-block-gallery {
|
|
|
|
margin-bottom: 1.5em;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl .wp-block-gallery:not(.alignfull):not(.alignwide) {
|
|
|
|
margin-right: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Quote */
|
|
|
|
|
|
|
|
.wp-block-quote {
|
2018-11-06 15:29:22 +00:00
|
|
|
font-style: normal;
|
|
|
|
margin: 0 1.5em 1.5em;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-quote,
|
|
|
|
.wp-block-quote.is-large p,
|
|
|
|
.wp-block-quote.is-style-large p {
|
2018-11-06 15:29:22 +00:00
|
|
|
font-style: normal;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-quote.alignleft {
|
|
|
|
margin-right: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-quote.alignright {
|
|
|
|
margin-left: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-quote cite {
|
2018-11-06 15:29:22 +00:00
|
|
|
font-style: italic;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-quote.is-large cite,
|
|
|
|
.wp-block-quote.is-large footer,
|
|
|
|
.wp-block-quote.is-style-large cite,
|
|
|
|
.wp-block-quote.is-style-large footer {
|
|
|
|
font-size: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-quote.is-large,
|
|
|
|
.wp-block-quote.is-style-large {
|
2018-11-06 15:29:22 +00:00
|
|
|
margin: 0 .75em 1.5em;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-quote.is-large,
|
|
|
|
.wp-block-quote.is-style-large,
|
|
|
|
.wp-block-quote.is-large p,
|
|
|
|
.wp-block-quote.is-style-large p {
|
2018-11-06 15:29:22 +00:00
|
|
|
font-size: 24px;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-quote.is-large p,
|
|
|
|
.wp-block-quote.is-style-large p {
|
|
|
|
margin-bottom: .8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl .wp-block-quote {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Audio */
|
|
|
|
|
2018-11-07 00:58:11 +00:00
|
|
|
.wp-block-audio {
|
|
|
|
margin-bottom: 1.8em;
|
|
|
|
}
|
|
|
|
|
2018-11-06 14:59:31 +00:00
|
|
|
.wp-block-audio audio {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2018-11-07 00:58:11 +00:00
|
|
|
/* Cover */
|
|
|
|
|
|
|
|
.wp-block-cover,
|
|
|
|
.wp-block-cover.alignleft,
|
|
|
|
.wp-block-cover.alignright,
|
|
|
|
.wp-block-cover.aligncenter {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
2020-03-24 19:24:16 +00:00
|
|
|
.wp-block-cover.alignfull .wp-block-cover__inner-container {
|
|
|
|
max-width: 712px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2018-11-06 14:59:31 +00:00
|
|
|
/* File */
|
|
|
|
|
2018-11-06 18:15:27 +00:00
|
|
|
.wp-block-file {
|
|
|
|
margin: 1.5em 0;
|
|
|
|
}
|
|
|
|
|
2018-11-06 14:59:31 +00:00
|
|
|
.wp-block-file a.wp-block-file__button,
|
|
|
|
.wp-block-file a.wp-block-file__button:visited {
|
|
|
|
border: 0;
|
|
|
|
border-radius: 0;
|
|
|
|
background: #d7b221;
|
|
|
|
box-shadow: none;
|
|
|
|
color: white;
|
2018-12-29 14:04:32 +00:00
|
|
|
display: inline-block;
|
2018-11-06 14:59:31 +00:00
|
|
|
font-size: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
text-transform: uppercase;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
line-height: 1;
|
|
|
|
padding: 1.4em 1.6em 1.2em;
|
|
|
|
transition: 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-file a.wp-block-file__button:hover,
|
|
|
|
.wp-block-file a.wp-block-file__button:focus {
|
|
|
|
background: #c1a01e;
|
|
|
|
box-shadow: none;
|
|
|
|
color: #fff;
|
|
|
|
transition: 0.3s;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2018-11-21 21:23:40 +00:00
|
|
|
.rtl .wp-block-file * + .wp-block-file__button {
|
|
|
|
margin-left: 0.75em;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
2018-11-06 14:59:31 +00:00
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
3.0 Blocks - Formatting Blocks
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* Verse */
|
|
|
|
|
|
|
|
.wp-block-verse {
|
|
|
|
background: transparent;
|
|
|
|
color: inherit;
|
|
|
|
font-family: inherit;
|
|
|
|
font-size: inherit;
|
2018-11-07 00:58:11 +00:00
|
|
|
font-style: italic;
|
2018-11-06 14:59:31 +00:00
|
|
|
line-height: inherit;
|
|
|
|
margin-bottom: 1.5em;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Code */
|
|
|
|
|
|
|
|
.wp-block-code {
|
|
|
|
background: #eee;
|
|
|
|
font-family: "Courier 10 Pitch", Courier, monospace;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 1.6;
|
|
|
|
margin-bottom: 1.875em;
|
|
|
|
max-width: 100%;
|
|
|
|
overflow: auto;
|
|
|
|
padding: 1.875em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Pullquote */
|
|
|
|
|
|
|
|
.wp-block-pullquote {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2022-07-15 09:47:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-pullquote:not(.has-border-color) {
|
2018-11-06 14:59:31 +00:00
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-pullquote blockquote {
|
|
|
|
font-style: italic;
|
|
|
|
font-size: 24px;
|
|
|
|
margin: 0 0 1.5em;
|
|
|
|
padding: .8em 0;
|
|
|
|
}
|
|
|
|
|
2022-07-15 09:47:00 +00:00
|
|
|
.wp-block-pullquote:not(.has-border-color) blockquote {
|
|
|
|
border-top: 2px solid #d7b221;
|
|
|
|
border-bottom: 2px solid #d7b221;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-pullquote.has-border-color[style] {
|
|
|
|
border-bottom-width: 2px;
|
|
|
|
border-left: unset !important;
|
|
|
|
border-right: unset !important;
|
|
|
|
border-top-width: 2px;
|
|
|
|
padding: 0;
|
|
|
|
margin-bottom: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-pullquote.has-border-color blockquote {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
2018-11-06 15:31:28 +00:00
|
|
|
.wp-block-pullquote cite {
|
|
|
|
font-size: 18px;
|
|
|
|
font-style: normal;
|
|
|
|
}
|
|
|
|
|
2018-11-06 14:59:31 +00:00
|
|
|
.wp-block-pullquote.alignleft p,
|
|
|
|
.wp-block-pullquote.alignright p {
|
|
|
|
font-size: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-pullquote.alignleft {
|
|
|
|
margin-right: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-pullquote.alignright {
|
|
|
|
margin-left: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-pullquote.alignfull blockquote {
|
|
|
|
padding-left: 1.5em;
|
|
|
|
padding-right: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl .wp-block-pullquote {
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-pullquote p {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2018-11-07 00:58:11 +00:00
|
|
|
/* Table */
|
|
|
|
|
|
|
|
.wp-block-table th {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-sidebar .wp-block-table.alignfull {
|
|
|
|
width: 98vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 1024px) {
|
|
|
|
.no-sidebar .wp-block-table.alignwide {
|
|
|
|
width: 855px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.rtl .wp-block-table th {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
|
2018-11-06 14:59:31 +00:00
|
|
|
/*--------------------------------------------------------------
|
|
|
|
4.0 Blocks - Layout Elements
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
|
|
|
|
/* Buttons */
|
|
|
|
|
|
|
|
.wp-block-button .wp-block-button__link {
|
|
|
|
font-size: 16px;
|
|
|
|
font-weight: bold;
|
|
|
|
text-transform: uppercase;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
line-height: 1;
|
|
|
|
padding: 1.4em 1.6em 1.2em;
|
|
|
|
transition: 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-button .wp-block-button__link:active,
|
|
|
|
.wp-block-button .wp-block-button__link:hover,
|
|
|
|
.wp-block-button .wp-block-button__link:focus {
|
|
|
|
box-shadow: none;
|
|
|
|
transition: 0.3s;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2018-11-21 21:23:40 +00:00
|
|
|
.wp-block-button__link,
|
|
|
|
.wp-block-button__link:visited {
|
2018-11-06 14:59:31 +00:00
|
|
|
background: #d7b221;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2019-02-07 01:21:08 +00:00
|
|
|
.is-style-outline .wp-block-button__link {
|
|
|
|
background: transparent;
|
|
|
|
border-color: currentColor;
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-style-outline .wp-block-button__link:not(.has-text-color) {
|
|
|
|
color: #d7b221;
|
|
|
|
}
|
|
|
|
|
|
|
|
.entry-content .wp-block-button .wp-block-button__link:active,
|
|
|
|
.entry-content .wp-block-button .wp-block-button__link:focus,
|
|
|
|
.entry-content .wp-block-button .wp-block-button__link:hover {
|
2018-11-06 14:59:31 +00:00
|
|
|
background: #c1a01e;
|
2018-11-21 21:23:40 +00:00
|
|
|
color: #fff;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
2020-03-24 19:24:16 +00:00
|
|
|
/* Group */
|
|
|
|
|
|
|
|
.wp-block-group.alignfull .wp-block-group__inner-container {
|
|
|
|
max-width: 712px;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
2022-10-25 08:21:34 +00:00
|
|
|
.wp-block-group.has-background {
|
|
|
|
padding: 20px 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-group p.has-background {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2018-11-06 14:59:31 +00:00
|
|
|
/* Seperator */
|
|
|
|
|
|
|
|
hr.wp-block-separator {
|
|
|
|
border: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-separator {
|
|
|
|
background-color: #eeece8;
|
|
|
|
border: 0;
|
|
|
|
height: 1px;
|
|
|
|
margin-bottom: 1.5em;
|
2018-11-06 16:03:10 +00:00
|
|
|
max-width: 100px;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-separator.is-style-wide {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
5.0 Blocks - Widget Blocks
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
|
2018-12-04 19:17:55 +00:00
|
|
|
/* General Widget styles */
|
2018-11-21 21:23:40 +00:00
|
|
|
|
|
|
|
.wp-block-categories.aligncenter,
|
2018-12-04 19:17:55 +00:00
|
|
|
.wp-block-categories.aligncenter ul,
|
|
|
|
.wp-block-archives.aligncenter,
|
|
|
|
.wp-block-latest-posts.aligncenter,
|
|
|
|
.wp-block-latest-comments.aligncenter {
|
2018-11-21 21:23:40 +00:00
|
|
|
list-style-position: inside;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2018-11-06 14:59:31 +00:00
|
|
|
/* Categories */
|
|
|
|
|
|
|
|
.wp-block-categories.aligncenter {
|
|
|
|
margin-left: 1.5em;
|
|
|
|
margin-right: 1.5em;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-categories-list.alignleft {
|
|
|
|
margin-left: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Latest Comments */
|
|
|
|
|
|
|
|
.wp-block-latest-comments {
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
2018-11-21 21:23:40 +00:00
|
|
|
.wp-block-latest-comments__comment-meta a {
|
|
|
|
color: #192930;
|
2018-11-06 14:59:31 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2018-11-21 21:23:40 +00:00
|
|
|
.wp-block-latest-comments__comment-meta,
|
|
|
|
.wp-block-latest-comments__comment-excerpt p {
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
|
2018-11-06 14:59:31 +00:00
|
|
|
.wp-block-latest-comments__comment-date {
|
2018-11-21 21:23:40 +00:00
|
|
|
color: #a5a29d;
|
|
|
|
font-family: "Archivo Narrow", "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
|
|
font-size: 14px;
|
|
|
|
letter-spacing: 1px;
|
|
|
|
text-transform: uppercase;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-latest-comments .wp-block-latest-comments__comment {
|
|
|
|
border-top: 1px solid #eeece8;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding: .8em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-block-latest-comments__comment-excerpt p:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*--------------------------------------------------------------
|
|
|
|
6.0 Blocks - Colors
|
|
|
|
--------------------------------------------------------------*/
|
|
|
|
|
2018-11-06 19:05:42 +00:00
|
|
|
.has-medium-gray-color,
|
|
|
|
.has-medium-gray-color:hover,
|
|
|
|
.has-medium-gray-color:focus,
|
2018-11-21 21:23:40 +00:00
|
|
|
.has-medium-gray-color:active,
|
|
|
|
.has-medium-gray-color:visited {
|
2018-11-06 19:05:42 +00:00
|
|
|
color: #a5a29d;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
2018-11-06 19:05:42 +00:00
|
|
|
.has-medium-gray-background-color,
|
|
|
|
.has-medium-gray-background-color:hover,
|
|
|
|
.has-medium-gray-background-color:focus,
|
2019-02-21 16:05:31 +00:00
|
|
|
.has-medium-gray-background-color:active,
|
2018-11-21 21:23:40 +00:00
|
|
|
.has-medium-gray-background-color:visited {
|
2018-11-06 19:05:42 +00:00
|
|
|
background-color: #a5a29d;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.has-light-gray-color,
|
|
|
|
.has-light-gray-color:hover,
|
|
|
|
.has-light-gray-color:focus,
|
2018-11-21 21:23:40 +00:00
|
|
|
.has-light-gray-color:active,
|
|
|
|
.has-light-gray-color:visited {
|
2018-11-06 14:59:31 +00:00
|
|
|
color: #eeece8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-light-gray-background-color,
|
|
|
|
.has-light-gray-background-color:hover,
|
|
|
|
.has-light-gray-background-color:focus,
|
2018-11-21 21:23:40 +00:00
|
|
|
.has-light-gray-background-color:active,
|
|
|
|
.has-light-gray-background-color:visited {
|
2018-11-06 14:59:31 +00:00
|
|
|
background-color: #eeece8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-white-color,
|
|
|
|
.has-white-color:hover,
|
|
|
|
.has-white-color:focus,
|
2018-11-21 21:23:40 +00:00
|
|
|
.has-white-color:active,
|
|
|
|
.has-white-color:visited {
|
2018-11-06 14:59:31 +00:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-white-background-color,
|
|
|
|
.has-white-background-color:hover,
|
|
|
|
.has-white-background-color:focus,
|
2018-11-21 21:23:40 +00:00
|
|
|
.has-white-background-color:active,
|
|
|
|
.has-white-background-color:visited {
|
2018-11-06 14:59:31 +00:00
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-yellow-color,
|
|
|
|
.has-yellow-color:hover,
|
|
|
|
.has-yellow-color:focus,
|
2018-11-21 21:23:40 +00:00
|
|
|
.has-yellow-color:active,
|
|
|
|
.has-yellow-color:visited {
|
2018-11-06 15:29:22 +00:00
|
|
|
color: #d7b221;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.has-yellow-background-color,
|
|
|
|
.has-yellow-background-color:hover,
|
|
|
|
.has-yellow-background-color:focus,
|
2018-11-21 21:23:40 +00:00
|
|
|
.has-yellow-background-color:active,
|
|
|
|
.has-yellow-background-color:visited {
|
2018-11-06 15:29:22 +00:00
|
|
|
background-color: #d7b221;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.has-dark-yellow-color,
|
|
|
|
.has-dark-yellow-color:hover,
|
|
|
|
.has-dark-yellow-color:focus,
|
2018-11-21 21:23:40 +00:00
|
|
|
.has-dark-yellow-color:active,
|
|
|
|
.has-dark-yellow-color:visited {
|
2018-11-06 19:05:42 +00:00
|
|
|
color: #9c8012;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.has-dark-yellow-background-color,
|
|
|
|
.has-dark-yellow-background-color:hover,
|
|
|
|
.has-dark-yellow-background-color:focus,
|
2018-11-21 21:23:40 +00:00
|
|
|
.has-dark-yellow-background-color:active,
|
|
|
|
.has-dark-yellow-background-color:visited {
|
2018-11-06 19:05:42 +00:00
|
|
|
background-color: #9c8012;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-dark-gray-color,
|
|
|
|
.has-dark-gray-color:hover,
|
|
|
|
.has-dark-gray-color:focus,
|
2018-11-21 21:23:40 +00:00
|
|
|
.has-dark-gray-color:active,
|
|
|
|
.has-dark-gray-color:visited {
|
2018-11-06 19:05:42 +00:00
|
|
|
color: #474f53;
|
|
|
|
}
|
|
|
|
|
|
|
|
.has-dark-gray-background-color,
|
|
|
|
.has-dark-gray-background-color:hover,
|
|
|
|
.has-dark-gray-background-color:focus,
|
2018-11-21 21:23:40 +00:00
|
|
|
.has-dark-gray-background-color:active,
|
|
|
|
.has-dark-gray-background-color:visited {
|
2018-11-06 19:05:42 +00:00
|
|
|
background-color: #474f53;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.has-black-color,
|
|
|
|
.has-black-color:hover,
|
|
|
|
.has-black-color:focus,
|
2018-11-21 21:23:40 +00:00
|
|
|
.has-black-color:active,
|
|
|
|
.has-black-color:visited {
|
2018-11-06 15:29:22 +00:00
|
|
|
color: #192930;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.has-black-background-color,
|
|
|
|
.has-black-background-color:hover,
|
|
|
|
.has-black-background-color:focus,
|
2018-11-21 21:23:40 +00:00
|
|
|
.has-black-background-color:active,
|
|
|
|
.has-black-background-color:visited {
|
2018-11-06 15:29:22 +00:00
|
|
|
background-color: #192930;
|
2018-11-06 14:59:31 +00:00
|
|
|
}
|