From 84ea2a2ef7bee45b8b7a069d50487a3b8c073caa Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sat, 8 Aug 2020 18:51:36 -0400 Subject: footer: add "follow us" section * scss/style.scss (.mastadon-icon .follow-block): New classes. * static/includes/follow.html: New file. * static/includes/footer.html: Include follow.html --- scss/style.scss | 29 ++++++++++++++++++++++++++++- static/includes/follow.html | 16 ++++++++++++++++ static/includes/footer.html | 3 +++ 3 files changed, 47 insertions(+), 1 deletion(-) create mode 100644 static/includes/follow.html diff --git a/scss/style.scss b/scss/style.scss index 07dca53..b5f19a0 100644 --- a/scss/style.scss +++ b/scss/style.scss @@ -78,7 +78,7 @@ nav { } } -// Feed +// Feed, Social a.feed { border-bottom: 0px; } @@ -91,6 +91,33 @@ a.feed { margin-left: 2px; } +.mastadon-icon { + content: url('/assets/img/mastadon.svg'); + background-color: $fsfi-dark; + max-width: 17px; + border-radius: 3px; + margin-left: 2px; +} + +.follow-block { + ul { + display: flex; + justify-content: center; + list-style: none; + margin: 0 0 0 0; + + li { + display: inline; + margin-top: 1px; + + a { + border-bottom: 0px; + } + } + } +} + + // Join .fellowship-type { border: 2px solid $fsfi-dark; diff --git a/static/includes/follow.html b/static/includes/follow.html new file mode 100644 index 0000000..4cf31d3 --- /dev/null +++ b/static/includes/follow.html @@ -0,0 +1,16 @@ +
+ +
diff --git a/static/includes/footer.html b/static/includes/footer.html index d0066b6..a9a408f 100755 --- a/static/includes/footer.html +++ b/static/includes/footer.html @@ -1,5 +1,8 @@