Custom greeter page for kraut.world

This commit is contained in:
Ludwig Behm 2021-01-03 04:29:51 +01:00
parent 1c6ec27bca
commit 98172aabc2
48 changed files with 14790 additions and 482 deletions

View file

@ -0,0 +1,38 @@
///
/// Indivisible by Pixelarity
/// pixelarity.com | hello@pixelarity.com
/// License: pixelarity.com/license
///
/* Footer */
#footer {
@include vendor('transition', 'opacity 0.5s ease');
margin: (_size(element-margin) * 1.5) 0 0 0;
opacity: 1.0;
text-align: center;
.copyright {
color: _palette(fg-light);
font-size: 0.8em;
letter-spacing: _font(letter-spacing-alt);
margin-bottom: 0;
text-transform: uppercase;
}
&.inactive {
opacity: 0;
}
@include breakpoint('<=xlarge') {
margin: _size(element-margin) 0 0 0;
}
@include breakpoint('<=large') {
margin: (_size(element-margin) * 0.75) 0 0 0;
}
body.is-preload-0 & {
opacity: 0;
}
}