summaryrefslogtreecommitdiff
path: root/_sass/components/_footer.scss
diff options
context:
space:
mode:
authorKarl Hallsby <karl@hallsby.com>2020-09-27 14:31:36 -0500
committerKarl Hallsby <karl@hallsby.com>2020-09-27 14:32:00 -0500
commit61b34a5f260db45575d448d766ea29c0fb273ed3 (patch)
tree4ac84fa917df0c69fb0fc6d587750514e7d0d813 /_sass/components/_footer.scss
parentc3cafe3c3817f52d4c588b5b0d6e71e07e06145e (diff)
Add jekyll-text-theme YAML files
Diffstat (limited to '_sass/components/_footer.scss')
-rw-r--r--_sass/components/_footer.scss33
1 files changed, 33 insertions, 0 deletions
diff --git a/_sass/components/_footer.scss b/_sass/components/_footer.scss
new file mode 100644
index 0000000..63ed8fe
--- /dev/null
+++ b/_sass/components/_footer.scss
@@ -0,0 +1,33 @@
+/**
+ * Site Info
+ */
+
+.footer {
+ @include flexbox();
+ @include align-items(center);
+ color: $footer-text-color;
+ background: $footer-background;
+ a {
+ @include link-colors ($footer-text-color, $main-color-1);
+ }
+ .site-info {
+ font-size: map-get($base, font-size-xs);
+ text-align: center;
+ .menu {
+ line-height: map-get($base, line-height-xs);
+ & > * {
+ &:not(:last-child) {
+ @include split-line(right, default, $footer-text-color);
+ padding-right: map-get($spacers, 1);
+ margin-right: map-get($spacers, 1);
+ }
+ }
+ }
+ }
+}
+.footer__author-links {
+ @include overflow(auto);
+ .author-links {
+ text-align: center;
+ }
+}