diff options
| author | s-ol <s+removethis@s-ol.nu> | 2021-01-04 11:24:21 +0000 |
|---|---|---|
| committer | s-ol <s+removethis@s-ol.nu> | 2021-01-04 11:41:13 +0000 |
| commit | ee087dcfc842bbc8e1b9cdcae80bf7e6e7426669 (patch) | |
| tree | 7d4564fb6fe30895952d0e6489430ad61093034e /root/static/style/footer | |
| parent | turn static plugin into builtin again (diff) | |
| download | mmm-ee087dcfc842bbc8e1b9cdcae80bf7e6e7426669.tar.gz mmm-ee087dcfc842bbc8e1b9cdcae80bf7e6e7426669.zip | |
move style into root
Diffstat (limited to 'root/static/style/footer')
| -rw-r--r-- | root/static/style/footer/text$x-scss.scss | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/root/static/style/footer/text$x-scss.scss b/root/static/style/footer/text$x-scss.scss new file mode 100644 index 0000000..721ff12 --- /dev/null +++ b/root/static/style/footer/text$x-scss.scss @@ -0,0 +1,43 @@ +footer { + display: flex; + padding: 1rem 2rem; + height: 1rem; + + position: sticky; + bottom: 0; + + @include media-medium() { + position: initial; + } + @include media-small() { + position: initial; + } + + @media print { + position: absolute; + display: none; + } + + color: $gray-bright; + background: $gray-dark; + + .icons { + flex: 1; + display: flex; + justify-content: flex-end; + + .iconlink { + filter: invert(.7); + + &:hover { + filter: invert(1); + } + + > img { + height: 1em; + margin-left: 0.5em; + vertical-align: middle; + } + } + } +} |
