123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537 |
- /**
- * Extra Child Theme Styles
- *
- * 1. General Helper Styles
- * 2. Header
- * 3. Main Wrapper and Content
- * 4. Navigation Menu
- * 5. Archive Pagination and Post Navigation
- * 6. Block Specific Styles
- * 6.1. Column Block
- * 6.2. Quote Block
- * 6.3. Hero Block and Cover Block
- * 6.4. File Block
- * 6.5. Latest Comments Block
- * 6.6. Button Block
- * 6.7. Posts List Block
- * 6.8. Search Block
- * 7. Widgets
- * 8. AMP Support
- */
- $color_background: #{map-deep-get($config-global, "color", "background", "default")};
- $color_background_light: #{map-deep-get($config-global, "color", "background", "light")};
- $color_foreground: #{map-deep-get($config-global, "color", "foreground", "default")};
- $color_primary: #{map-deep-get($config-global, "color", "primary", "default")};
- $color_secondary: #{map-deep-get($config-global, "color", "secondary", "default")};
- $color_primary_hover: #{map-deep-get($config-global, "color", "primary", "hover")};
- $spacing_horizontal: #{map-deep-get($config-global, "spacing", "horizontal")};
- $spacing_vertical: #{map-deep-get($config-global, "spacing", "vertical")};
- $font_size_xs: #{map-deep-get($config-global, "font", "size", "xs")};
- $font_size_md: #{map-deep-get($config-global, "font", "size", "md")};
- $font_size_base: #{map-deep-get($config-global, "font", "size", "base")};
- $font_size_lg: #{map-deep-get($config-global, "font", "size", "lg")};
- $font_size_xl: #{map-deep-get($config-global, "font", "size", "xl")};
- $font_family_code: #{map-deep-get($config-global, "font", "family", "code")};
- $font_line_height_body: #{map-deep-get($config-global, "font", "line-height", "body")};
- $button_line_height: #{map-deep-get($config-button, "font", "line-height")};
- $button_font_weight: #{map-deep-get($config-button, "font", "weight")};
- $button_font_size: #{map-deep-get($config-button, "font", "size")};
- $button_spacing_vertical: #{map-deep-get($config-button, "padding", "vertical")};
- $button_spacing_horizontal: #{map-deep-get($config-button, "padding", "horizontal")};
- $button_color_hover: #{map-deep-get($config-button, "color", "text-hover")};
- $button_background_hover: #{map-deep-get($config-button, "color", "background-hover")};
- $font_size_widget_title: #{map-deep-get($config-heading, "font", "size", "h4")};
- /**
- * 1. General Styles
- */
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- color: $color_primary;
- }
- a {
- text-decoration: none;
- .wp-block-group &,
- .wp-block-cover &,
- .wp-block-cover-image &,
- .wp-block-media-text &,
- p:not(.site-title) & {
- text-decoration: underline;
- &.wp-block-button__link,
- &:hover {
- text-decoration: none;
- }
- }
- }
- /**
- * 2. Header
- */
- #masthead {
- border-bottom: 1px solid $color_background_light;
- background: $color_background;
- -webkit-transition: all .25s ease-in-out;
- -moz-transition: all .25s ease-in-out;
- transition: all .25s ease-in-out;
- width: 100%;
- .site-header-wrapper {
- display: flex;
- flex-wrap: wrap;
- position: relative;
- z-index: 1;
- -webkit-align-items: center;
- -ms-flex-align: center;
- align-items: center;
- .site-branding {
- -webkit-transition: margin-top .25s ease-in-out;
- -moz-transition: margin-top .25s ease-in-out;
- transition: margin-top .25s ease-in-out;
- margin-right: auto;
- .site-description {
- display: none;
- }
- .site-title {
- a {
- text-decoration: none;
- }
- }
- .site-logo {
- margin-bottom: $spacing_horizontal;
- }
- }
- .site-menu {
- display: block;
- -webkit-flex: 0 1 auto;
- -ms-flex: 0 1 auto;
- flex: 0 1 auto;
- @include media(mobile-only) {
- width: 100%;
- }
- }
- .main-navigation {
- > ul {
- > li {
- &.current-menu-item {
- a {
- border-color: $color_secondary;
- border-style: solid;
- border-width: 0 0 .125em;
- color: $color_primary_hover;
- }
- }
- }
- }
- ul {
- li {
- &.current-menu-item {
- > a {
- border-color: $color_secondary;
- border-style: solid;
- border-width: 0 0 .125em;
- color: $color_primary_hover;
- }
- }
- a {
- &::after {
- color: $color_primary_hover;
- }
- }
- ul {
- color: $color_background_light;
- li {
- border-bottom: 1px solid;
- margin: 0;
- &:first-child {
- border-top: 1px solid;
- }
- &.current-menu-item {
- a {
- border: none;
- }
- }
- }
- }
- }
- }
- }
- @include media(mobile) {
- .main-navigation {
- > ul {
- > li {
- &:first-child {
- margin-left: 0;
- }
- }
- }
- ul {
- li {
- margin: 0 .75em;
- &:first-child {
- margin-left: 0;
- }
- &:hover {
- ul {
- left: auto;
- right: 0;
- }
- }
- a {
- padding: .25em 0;
- }
- ul {
- li {
- a {
- padding: .75em;
- }
- }
- }
- }
- }
- }
- }
- }
- }
- @include media(mobile) {
- .site-header {
- padding-right: $spacing_vertical;
- padding-left: $spacing_vertical;
- position: fixed;
- z-index: 9999;
- }
- }
- @include media(mobile-only) {
- .site-title,
- .site-description {
- font-size: $font_size_xl;
- hyphens: auto;
- }
- }
- /**
- * 4. Navigation
- */
- /**
- * 4.1 Main Navigation
- */
- @include media(mobile-only) {
- #toggle-menu {
- position: absolute;
- top: 0;
- right: 0;
- }
- }
- /**
- * 4.2 Social Navigation
- */
- .social-links-menu {
- display: flex;
- flex-wrap: wrap;
- justify-content: flex-end;
- }
- @include media(mobile-only) {
- .social-links-menu {
- justify-content: center;
- }
- }
- .site-footer {
- > .social-navigation {
- order: 2;
- margin-bottom: 0;
- }
- }
- /**
- * 5. Archive Pagination and Post Navigation
- */
- /**
- * 6. Block Specific Styles
- */
- /**
- * 6.1. Column Block
- */
- /**
- * 6.2. Quote Block
- */
- .wp-block-quote,
- .wp-block-quote[style*="text-align:center"],
- .wp-block-quote[style*="text-align:right"] {
- border: 1px solid $color_background_light;
- padding: $spacing_horizontal;
- &.is-style-large {
- p {
- line-height: $font_line_height_body;
- }
- }
- p {
- @include font-family( map-deep-get($config-global, "font", "family", "secondary") );
- font-size: $font_size_md;
- line-height: $font_line_height_body;
- }
- cite {
- color: inherit;
- font-size: $font_size_md;
- }
- }
- /**
- * 6.3. Hero Block and Cover Block
- */
- /**
- * 6.4. File Block
- */
- .wp-block-file {
- a {
- &.wp-block-file__button {
- line-height: $button_line_height;
- cursor: pointer;
- font-weight: $button_font_weight;
- @include font-family( map-deep-get($config-button, "font", "family") );
- // font-size: $button_font_size;
- padding: $button_spacing_vertical $button_spacing_horizontal;
- display: inline-block;
- &:focus,
- &:hover {
- color: $button_color_hover;
- background-color: $button_background_hover;
- opacity: 1;
- }
- }
- }
- }
- /**
- * 6.5. Latest Comments Block
- */
- .wp-block-latest-comments {
- .wp-block-latest-comments__comment-meta {
- @include font-family( map-deep-get($config-global, "font", "family", "secondary") );
- }
- }
- /**
- * 6.6. Button Block
- * 6.7. Posts List Block
- * 6.8. Search Block
- */
- .wp-block-button, .a8c-posts-list {
- &.minimal {
- a {
- background: 0 0;
- border: 2px solid;
- }
- }
- }
- button,
- .button,
- input[type="submit"],
- .wp-block-button__link,
- .wp-block-file__button,
- .a8c-posts-list__view-all,
- button[data-load-more-btn] {
- border: 0;
- border-radius: 5em;
- text-transform: uppercase;
- &.has-background {
- &:focus,
- &:hover,
- &:visited {
- opacity: .8;
- }
- }
- }
- .wp-block-coblocks-hero__box,
- .wp-block-cover__inner-container,
- .wp-block-columns,
- .wp-block-group {
- .wp-block-latest-posts {
- border-bottom: 1px solid $color_background_light;
- > li {
- border-top: 1px solid $color_background_light;
- margin: 0;
- padding-top: $spacing_horizontal;
- padding-bottom: $spacing_horizontal;
- > a {
- font-size: $font_size_base;
- font-weight: normal;
- @include font-family( map-deep-get($config-global, "font", "family", "secondary") );
- line-height: $font_line_height_body;
- }
- > time {
- &.wp-block-latest-posts__post-date {
- font-size: $font_size_base;
- }
- }
- }
- }
- }
- .wp-block-newspack-blocks-homepage-articles {
- article {
- .entry-title a {
- &:active,
- &:focus,
- &:hover {
- text-decoration: none;
- }
- }
- .more-link {
- &:active,
- &:focus,
- &:hover {
- color: #{map-deep-get($config-global, "color", "primary", "hover")};
- }
- }
- .cat-links a,
- .more-link,
- .entry-meta a {
- text-decoration: none;
- &:active,
- &:focus,
- &:hover {
- text-decoration: underline;
- }
- }
- }
- &.image-alignbehind article {
- .entry-title a {
- &:active,
- &:focus,
- &:hover {
- color: #fff;
- text-decoration: underline;
- }
- }
- .more-link {
- &:active,
- &:focus,
- &:hover {
- color: inherit;
- }
- }
- }
- }
- .has-background:not(.has-background-background-color),
- [class*="background-color"]:not(.has-background-background-color),
- [style*="background-color"] {
- .wp-block-newspack-blocks-homepage-articles article {
- .entry-title a{
- &:active,
- &:focus,
- &:hover {
- text-decoration: underline;
- }
- }
- .more-link {
- &:active,
- &:focus,
- &:hover {
- color: inherit;
- }
- }
- }
- }
- /**
- * 7. Widgets
- */
- .site-footer {
- .widget-area {
- .widget-title {
- font-size: $font_size_widget_title;
- margin-bottom: .857em;
- }
- }
- }
- /**
- * 6.9. Code, Pre Blocks
- */
- .wp-block-code {
- code {
- font-family: $font_family_code;
- font-size: $font_size_base;
- }
- }
- .wp-block-preformatted,
- .wp-block-verse {
- font-family: $font_family_code;
- font-size: $font_size_base;
- }
- /**
- * 8. AMP Support
- */
- html[amp] {
- @include media( mobile ) {
- .site-header {
- position: sticky;
- top: 0;
- }
- .logged-in .site-header {
- top: 32px;
- }
- }
- @media screen and ( max-width: 782px ) {
- .logged-in .site-header {
- top: 46px;
- }
- }
- }
- /**
- * Search block
- */
- .wp-block-search {
- &.wp-block-search__button-inside {
- .wp-block-search__inside-wrapper{
- border-radius: #{map-deep-get($config-button, "border-radius")};
- }
- .wp-block-search__input {
- background: transparent;
- }
- }
- .wp-block-search__input {
- margin-right: calc( .1 * #{map-deep-get($config-button, "padding", "horizontal")} );
- border-radius: #{map-deep-get($config-button, "border-radius")};
- }
- .wp-block-search__button {
- background-color: #{map-deep-get($config-global, "color", "primary", "default")};
- }
- }
|