| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391 |
- footer.site-footer {
- background-color: @footer-bg-color;
- border-top: 1px solid @gray-lighter;
- font-size: 0.9rem;
- position: absolute;
- bottom: 0;
- width: 100%;
- height: @footer-height;
- line-height: @footer-height - 1; // Hack — in Chrome, using the full @footer-height would generate vertical scrolling
- ul {
- list-style: none;
- margin: 0px;
- li {
- display: inline-block;
- margin: 0 0.5em;
- }
- i {
- font-size: 1.2rem;
- }
- }
- li.lng-option {
- text-align: left;
- display: list-item;
- img {
- vertical-align: text-bottom;
- }
- a:hover,
- a:focus {
- color: @white;
- }
- }
- a {
- color: @footer-link-color;
- &:hover,
- &:focus {
- color: @footer-link-hover-color;
- }
- }
- }
- .site-footer-content {
- .container-fluid;
- }
- .sprite-icon-lang {
- display: inline-block;
- vertical-align: middle;
- }
- .fat-footer {
- background: @ol-blue-gray-6;
- color: @ol-blue-gray-1;
- display: flex;
- flex-direction: column;
- .fat-footer-container {
- margin: @margin-xxl auto;
- }
- a {
- color: @ol-blue-gray-1;
- }
- .footer-brand-container {
- flex: 1;
- }
- .fat-footer-sections {
- display: grid;
- column-gap: @margin-md;
- padding: 0 @padding-md @padding-md;
- }
- .footer-brand {
- display: block;
- height: 37px; /* TODO: configurable? */
- width: @navbar-brand-width;
- background-image: @navbar-brand-image-url;
- background-size: contain;
- background-repeat: no-repeat;
- background-position: left center;
- }
- .footer-section-heading {
- color: @neutral-20;
- font-family: @font-family-serif;
- font-size: @font-size-h3;
- line-height: @headings-line-height;
- margin-bottom: @margin-md;
- margin-top: @margin-md;
- }
- .footer-section ul {
- font-family: @font-family-sans-serif;
- font-size: @font-size-base;
- line-height: @line-height-small;
- }
- .footer-section li {
- padding-bottom: @padding-sm;
- }
- #footer-brand {
- grid-column: ~'1/-1';
- margin-top: @margin-md;
- }
- .fat-footer-base {
- color: @ol-blue-gray-2;
- font-size: @font-size-small;
- line-height: @line-height-base;
- .fat-footer-base-meta a:not(.dropdown-toggle) {
- color: inherit;
- }
- .language-picker .dropdown-menu {
- .dropdown-header {
- display: none; /* hiding rather than removing as still needed in the thin footer */
- }
- a {
- color: @gray-dark;
- &:hover {
- color: white;
- }
- }
- }
- .fat-footer-social {
- &.x-logo svg path {
- fill: @ol-blue-gray-1;
- }
- &.facebook-logo svg,
- &.linkedin-logo svg {
- path.background {
- fill: @ol-blue-gray-1;
- }
- }
- &.facebook-logo svg {
- path.text {
- fill: transparent;
- }
- }
- &.linkedin-logo svg {
- path.text {
- fill: @ol-blue-gray-6;
- }
- }
- }
- }
- .fat-footer-base-item {
- display: flex;
- white-space: nowrap;
- }
- @media (max-width: @screen-xs-max) {
- .fat-footer-sections {
- grid-template-columns: repeat(2, 1fr);
- grid-template-rows: repeat(4, auto);
- }
- .fat-footer-base {
- display: flex;
- flex-direction: column;
- align-items: center;
- margin: @margin-md auto 0;
- .fat-footer-base-section {
- display: flex;
- align-items: center;
- }
- .fat-footer-base-social {
- order: 1;
- }
- .fat-footer-base-meta {
- display: flex;
- flex-direction: column-reverse;
- align-items: center;
- order: 2;
- }
- .fat-footer-base-item {
- padding: @padding-xs;
- margin: @margin-lg / 2;
- }
- .fat-footer-base-meta .fat-footer-base-item {
- gap: @margin-lg;
- }
- .fat-footer-base-social .fat-footer-base-item {
- gap: @margin-md;
- }
- .fat-footer-social {
- font-size: @fat-footer-social-font-size;
- }
- .fat-footer-base-copyright {
- order: 2;
- }
- }
- }
- @media (min-width: @screen-sm-min) {
- .fat-footer-container {
- width: (@screen-sm - (@padding-sm * 2));
- }
- #footer-brand {
- grid-column: auto;
- grid-row: ~'1/-1';
- }
- .fat-footer-sections {
- grid-template-columns: repeat(4, 1fr);
- grid-template-rows: repeat(2, auto);
- }
- .footer-section:last-of-type {
- grid-column: 4;
- }
- .footer-section ul {
- line-height: 20px;
- }
- .fat-footer-base {
- display: flex;
- justify-content: space-between;
- margin: @margin-md auto;
- .fat-footer-base-section {
- display: flex;
- align-items: center;
- }
- .fat-footer-base-item {
- padding: @padding-xs;
- margin: @margin-xs;
- }
- .fat-footer-base-meta .fat-footer-base-item {
- gap: @margin-md;
- }
- .fat-footer-social {
- margin: 0 @margin-xs;
- font-size: @fat-footer-social-font-size;
- }
- }
- }
- @media (min-width: @screen-md-min) {
- .fat-footer-container {
- width: (@screen-md - @padding-md);
- }
- .fat-footer-sections {
- grid-template-columns: repeat(4, 1fr);
- }
- }
- @media (min-width: @screen-lg-min) {
- .fat-footer-container {
- width: (@screen-lg - @padding-lg);
- }
- .fat-footer-sections {
- grid-template-columns: repeat(7, 1fr);
- grid-template-rows: auto;
- }
- .footer-section:last-of-type {
- grid-column: 7;
- }
- }
- }
- .cookie-banner {
- padding: 10px 20px;
- font-size: 0.9rem;
- line-height: 1;
- position: fixed;
- bottom: 0px;
- left: 0;
- right: 0;
- z-index: 100;
- color: @text-color;
- background: @ol-blue-gray-0;
- box-shadow: 0px -5px 8px 0px #0000001a;
- .cookie-banner-actions {
- padding-top: 10px;
- }
- @media (min-width: @screen-sm-min) {
- align-items: center;
- display: flex;
- flex-wrap: wrap;
- .cookie-banner-content {
- flex: 1;
- }
- .cookie-banner-actions {
- flex-shrink: 0;
- white-space: nowrap;
- padding-top: 0;
- }
- }
- }
- .website-redesign-fat-footer {
- .fat-footer-container {
- @media (max-width: @screen-xs-max) {
- margin: @margin-xxl 0px;
- }
- }
- &.fat-footer {
- background: @white;
- color: @neutral-90;
- a {
- color: @neutral-90;
- }
- .footer-section-heading {
- color: @neutral-90;
- }
- h2 {
- font-weight: 400;
- }
- .fat-footer-base {
- color: @neutral-90;
- }
- // This is duplication of fill colours in the SVGs themselves. This could be avoided by using :has() but that's not
- // supported in older versions of browsers and these logos need to be correct.
- .fat-footer-social {
- &.x-logo svg path {
- fill: #0f1419;
- }
- &.facebook-logo svg,
- &.linkedin-logo svg {
- path.text {
- fill: #fff;
- }
- }
- &.facebook-logo svg {
- path.background {
- fill: #0866ff;
- }
- }
- &.linkedin-logo svg {
- path.background {
- fill: #0b66c3;
- }
- }
- }
- }
- .footer-brand {
- background-image: @navbar-brand-image-url-website-redesign;
- }
- @media (max-width: @screen-xs-max) {
- .fat-footer-sections {
- grid-template-columns: repeat(1, 1fr);
- grid-template-rows: repeat(6, auto);
- }
- }
- }
|