diff options
author | Roger Gonzalez <roger@rogs.me> | 2023-01-08 22:12:24 -0300 |
---|---|---|
committer | Roger Gonzalez <roger@rogs.me> | 2023-01-08 22:12:24 -0300 |
commit | b15ab4adb837e43409e5e3cf3a40a83ef4dbf62f (patch) | |
tree | 3b7d7e5dc84aabc839dd1d9174c4593cbd6b2f82 /themes/hugo-whisper-theme/assets/scss/components/_sub-footer.scss |
Initial commit
Diffstat (limited to 'themes/hugo-whisper-theme/assets/scss/components/_sub-footer.scss')
-rw-r--r-- | themes/hugo-whisper-theme/assets/scss/components/_sub-footer.scss | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/themes/hugo-whisper-theme/assets/scss/components/_sub-footer.scss b/themes/hugo-whisper-theme/assets/scss/components/_sub-footer.scss new file mode 100644 index 0000000..986e7dd --- /dev/null +++ b/themes/hugo-whisper-theme/assets/scss/components/_sub-footer.scss @@ -0,0 +1,62 @@ +.sub-footer { + background: #f4f5fb; + padding-top: 20px; + padding-bottom: 20px; + @include media-breakpoint-up(md) { + padding-top: 10px; + padding-bottom: 10px; + } + .sub-footer-inner { + display: flex; + flex-direction: column; + justify-content: flex-end; + @include media-breakpoint-up(md) { + flex-direction: row; + } + ul { + list-style: none; + margin: 0; + padding: 0; + li { + list-style: none; + display: block; + color: #333; + font-size: 0.9rem; + line-height: 1.8; + font-weight: bold; + strong { + font-weight: bold; + color: #ffffff; + } + a { + color: #333; + text-decoration: none; + &:hover { + text-decoration: underline; + } + } + span { + display: inline-block; + height: 40px; + padding: 10px 0 10px 8px; + font-weight: bold; + color: #ffffff; + } + &.zerostatic { + a { + color: #333; + } + } + } + @include media-breakpoint-up(sm) { + li { + display: inline-block; + margin-left: 10px; + &:first-of-type { + margin-left: 0; + } + } + } + } + } +} |