|
|
|
|
@ -1,6 +1,15 @@
|
|
|
|
|
$footer-height: 65px;
|
|
|
|
|
|
|
|
|
|
#body-public {
|
|
|
|
|
--footer-height: calc(var(--default-line-height) + 2 * var(--default-grid-baseline));;
|
|
|
|
|
|
|
|
|
|
&:has(.footer__legal-links),
|
|
|
|
|
&:has(.footer__simple-sign-up) {
|
|
|
|
|
--footer-height: calc(2 * var(--default-line-height) + 3 * var(--default-grid-baseline));;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:has(.footer__legal-links):has(.footer__simple-sign-up) {
|
|
|
|
|
--footer-height: calc(3 * var(--default-line-height) + 3 * var(--default-grid-baseline));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.header-right {
|
|
|
|
|
|
|
|
|
|
#header-primary-action a {
|
|
|
|
|
@ -37,9 +46,11 @@ $footer-height: 65px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#content {
|
|
|
|
|
// 100% - footer
|
|
|
|
|
min-height: calc(100% - #{$footer-height});
|
|
|
|
|
min-height: var(--body-height, calc(100% - var(--footer-height)));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#app-content-vue {
|
|
|
|
|
padding-block-end: var(--footer-height);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/** don't apply content header padding on the base layout */
|
|
|
|
|
@ -64,27 +75,39 @@ $footer-height: 65px;
|
|
|
|
|
/* public footer */
|
|
|
|
|
footer {
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: var(--body-container-margin);;
|
|
|
|
|
background-color: var(--color-main-background);
|
|
|
|
|
border-radius: var(--body-container-radius);
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
height: $footer-height;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
width: calc(100% - 16px);
|
|
|
|
|
margin: 8px;
|
|
|
|
|
background-color: var(--color-main-background);
|
|
|
|
|
border-radius: var(--border-radius-large);
|
|
|
|
|
|
|
|
|
|
height: var(--footer-height);
|
|
|
|
|
width: calc(100% - 2 * var(--body-container-margin));
|
|
|
|
|
margin-inline: var(--body-container-margin);
|
|
|
|
|
padding-block: var(--default-grid-baseline);
|
|
|
|
|
|
|
|
|
|
.footer__legal-links {
|
|
|
|
|
margin-block-end: var(--default-grid-baseline);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: var(--color-text-lighter);
|
|
|
|
|
color: var(--color-text-maxcontrast);
|
|
|
|
|
margin-block: 0 var(--default-grid-baseline);
|
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: var(--color-text-lighter);
|
|
|
|
|
display: inline-block;
|
|
|
|
|
font-size: var(--default-font-size);
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
line-height: var(--default-line-height);
|
|
|
|
|
height: var(--default-line-height);
|
|
|
|
|
color: var(--color-text-maxcontrast);
|
|
|
|
|
white-space: nowrap;
|
|
|
|
|
/* increasing clickability to more than the text height */
|
|
|
|
|
padding: 10px;
|
|
|
|
|
margin: -10px;
|
|
|
|
|
line-height: 200%;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|