123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349 |
- /**
- * Extra Child Theme Styles
- */
- // @import "";
- $spacing_unit: map-deep-get($config-global, "spacing", "unit");
- $spacing_horizontal: map-deep-get($config-global, "spacing", "horizontal");
- $spacing_vertical: map-deep-get($config-global, "spacing", "vertical");
- $header-css-grid-width: calc( 0.5 * (100vw - #{$content-width-lg} - #{8 * $spacing_unit}) );
- $primary_color: map-deep-get($config-global, "color", "primary", "default");
- a {
- text-decoration: none;
- }
- /**
- * Wide Header & Footer
- */
- #masthead {
- margin-left: auto;
- margin-right: auto;
- padding-bottom: 0;
- position: relative;
- width: $content-width-flex;
- @include media(mobile) {
- width: $content-width-sm;
- }
- @include media(tablet) {
- width: $content-width-md;
- }
- @include media(laptop) {
- width: $content-width-lg;
- }
- @include media(desktop) {
- width: calc(#{$content-width-flex} - #{2 * $spacing_vertical});
- }
- }
- /**
- * CSS-grid Desktop Menu
- */
- @include media(mobile) {
- .site-header {
- align-items: center;
- display: grid;
- grid-template-columns: 66% auto;
- grid-template-rows: auto;
- grid-auto-flow: row;
- grid-column-gap: $spacing_unit;
- grid-template-areas:
- "site-branding site-branding"
- "site-description site-description"
- "main-navigation social-navigation";
- &:before,
- &:after {
- content: none;
- display: none;
- }
- & > * {
- margin-top: 0;
- margin-bottom: 0;
- }
- .site-branding {
- align-self: baseline;
- grid-area: site-branding;
- flex: 0 1 25%;
- }
- .site-logo {
- margin-bottom: $spacing_unit;
- }
- .site-title {
- & + .site-description {
- margin-top: 0;
- }
- }
- .site-description {
- align-self: baseline;
- grid-area: site-description;
- }
- .main-navigation {
- align-self: flex-start;
- margin-bottom: (2 * $spacing_unit);
- grid-area: main-navigation;
- justify-self: flex-start;
- & > div > ul {
- justify-content: flex-start;
- margin-left: -#{0.5 * $spacing_horizontal};
- margin-right: -#{0.5 * $spacing_horizontal};
- & > li {
- & > a {
- padding: #{0.5 * map-deep-get($config-header, "main-nav", "link-padding")};
- }
- }
- & > .menu-item-has-children > a::after {
- font-size: #{0.5 * map-deep-get($config-global, "font", "size", "base")};
- }
- }
- & > div > ul > li:hover,
- & > div > ul > li.focus,
- & > div > ul > li.current-menu-item {
- & > ul {
- box-shadow: none;
- overflow: hidden;
- &:before {
- border-bottom: #{0.5 * $spacing_unit} solid #{map-deep-get($config-global, "color", "primary", "default")};
- border-left: #{0.5 * $spacing_unit} solid transparent;
- border-right: #{0.5 * $spacing_unit} solid transparent;
- content: "";
- display: block;
- margin-left: #{$spacing_unit};
- width: #{$spacing_unit};
- }
- }
- & li {
- & > a {
- background: #{map-deep-get($config-global, "color", "primary", "default")};
- color: #{map-deep-get($config-global, "color", "background", "default")};
- }
- &:hover > a,
- &.focus > a,
- &.current-menu-item > a {
- background: #{map-deep-get($config-global, "color", "primary", "hover")};
- }
- }
- }
- }
- .social-navigation {
- line-height: 1;
- align-self: flex-start;
- grid-area: social-navigation;
- justify-self: flex-end;
- }
- }
- }
- @include media(mobile) {
- .site-header {
- .site-title {
- margin-top: 0;
- margin-bottom: #{map-deep-get($config-global, "spacing", "vertical")};
- }
- .site-description {
- margin-bottom: #{map-deep-get($config-global, "spacing", "vertical")};
- }
- &[class*="navigation"] {
- margin-bottom: 0;
- }
- }
- }
- @include media(desktop) {
- .site-header {
- grid-template-columns: $header-css-grid-width auto $header-css-grid-width;
- grid-template-rows: auto;
- grid-auto-flow: row;
- grid-column-gap: #{2 * $spacing_unit};
- grid-template-areas:
- ". main-navigation social-navigation"
- "site-branding site-description social-navigation";
- }
- }
- // Social Menu
- .social-navigation {
- & > div > ul {
- flex-wrap: wrap;
- }
- }
- /**
- * Site Title
- */
- .site-title {
- font-weight: bold;
- word-wrap: break-word;
- }
- .site-description {
- color: #{map-deep-get($config-header, "branding", "color", "text")};
- line-height: #{map-deep-get($config-global, "font", "line-height", "heading")};
- @include font-family( map-deep-get($config-header, "branding", "description", "font", "family") );
- }
- .site-title + .site-description {
- margin-top: -#{map-deep-get($config-global, "spacing", "unit")};
- }
- /**
- * Content
- */
- .site-main > article > .entry-header {
- margin: #{3 * $spacing_unit} 0 $spacing_unit;
- position: relative;
- .hide-homepage-header & {
- margin: $spacing_unit 0 $spacing_unit;
- }
- }
- @include media(mobile) {
- .site-main > article > .entry-header {
- margin: #{3 * $spacing_vertical} auto #{2 * $spacing_unit};
- .hide-homepage-header & {
- margin: #{2 * $spacing_unit} auto #{2 * $spacing_unit};
- }
- }
- }
- .site-main .page-header {
- margin-top: #{3 * $spacing_unit};
- }
- @include media(mobile) {
- .site-main .page-header {
- margin-top: #{3 * $spacing_vertical};
- }
- }
- .a8c-posts-list-item__featured span,
- .sticky-post {
- color: $primary_color;
- border: 1px solid currentColor;
- background: transparent;
- padding-bottom: 3px;
- text-transform: uppercase;
- }
- .entry-title {
- font-size: map-deep-get($config-global, "font", "size", "xxxxl");
- font-weight: 600;
- }
- /**
- * Blocks
- */
- .entry .entry-content .wp-block-media-text {
- background: #{map-deep-get($config-global, "color", "secondary", "default")};
- color: #{map-deep-get($config-global, "color", "background", "default")};
- &.is-style-inset-borders:before {
- border-color: #{map-deep-get($config-global, "color", "background", "default")};
- }
- }
- .entry-content [class*="__inner-container"] a:not(.wp-block-button__link) {
- text-decoration: underline;
- &:hover {
- text-decoration: none;
- }
- }
- .wp-block-newspack-blocks-homepage-articles {
- article {
- .cat-links a,
- .entry-title a:hover,
- .entry-meta a {
- text-decoration: none;
- }
- }
- &.image-alignbehind article {
- .cat-links a:hover,
- .entry-title a:hover,
- .more-link:hover,
- .entry-meta a:hover {
- text-decoration: underline;
- }
- }
- }
- .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,
- .more-link {
- text-decoration: none;
- }
- .cat-links a:hover,
- .entry-title a:hover,
- .entry-meta a:hover {
- text-decoration: underline;
- }
- }
- }
- /**
- * Footer
- */
- #colophon {
- }
- .footer-navigation .footer-menu a {
- font-size: map-deep-get($config-global, "font", "size", "xs");
- }
- // Updates the Mobile Navigation to be next to the site title.
- @import "../../varia/sass/components/header/_site-mobile-nav-side";
- @include media(mobile-only) {
- .mobile-nav-side {
- .site-header.has-menu {
- .site-branding {
- display: contents;
- }
- }
- .main-navigation {
- .dropdown-icon {
- /* This is fixed the issue when the button changes widths */
- font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma;
- }
- }
- .site-description.site-description {
- font-size: map-deep-get($config-global, "font", "size", "root" );
- }
- }
- }
|