You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.3 KiB
71 lines
1.3 KiB
/* |
|
* DO NOT EDIT THIS FILE. |
|
* See the following change record for more information, |
|
* https://www.drupal.org/node/3084859 |
|
* @preserve |
|
*/ |
|
|
|
/** |
|
* @file |
|
* Footer regions. |
|
*/ |
|
|
|
/* |
|
* Media query breakpoints. |
|
* Processed by postcss/postcss-custom-media. |
|
*/ |
|
|
|
/* Navigation related breakpoints */ |
|
|
|
/* Grid related breakpoints */ |
|
|
|
/* Grid shifts from 6 to 14 columns. */ |
|
|
|
/* Width of the entire grid maxes out. */ |
|
|
|
.site-footer { |
|
position: relative; /* stack above left social bar */ |
|
color: var(--color--gray-65); |
|
background: linear-gradient(180deg, var(--color--gray-5) 0%, var(--color--gray-10) 100%) |
|
} |
|
|
|
[dir="ltr"] .site-footer .menu { |
|
margin-left: 0 |
|
} |
|
|
|
[dir="rtl"] .site-footer .menu { |
|
margin-right: 0 |
|
} |
|
|
|
.site-footer .menu { |
|
list-style: none |
|
} |
|
|
|
[dir="ltr"] .site-footer .menu ul { |
|
margin-left: var(--sp) |
|
} |
|
|
|
[dir="rtl"] .site-footer .menu ul { |
|
margin-right: var(--sp) |
|
} |
|
|
|
.site-footer .menu li { |
|
margin-bottom: var(--sp0-5); |
|
} |
|
|
|
.site-footer a { |
|
color: inherit |
|
} |
|
|
|
.site-footer a:hover { |
|
text-decoration: none; |
|
} |
|
|
|
@media (min-width: 75rem) { |
|
[dir="ltr"] body:not(.is-always-mobile-nav) .site-footer { |
|
border-left: solid var(--content-left) var(--color--black) |
|
} |
|
[dir="rtl"] body:not(.is-always-mobile-nav) .site-footer { |
|
border-right: solid var(--content-left) var(--color--black) |
|
} |
|
}
|
|
|