From a0912b1bc29d12517a3bb3b8c1f2694c2211cb16 Mon Sep 17 00:00:00 2001 From: rsiddharth Date: Sun, 26 May 2019 22:08:31 -0400 Subject: scss/style.scss: Add border-bottom for 'a' Except in nav and a.feed. --- scss/style.scss | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) (limited to 'scss/style.scss') diff --git a/scss/style.scss b/scss/style.scss index 8078fc6..06e8ccb 100644 --- a/scss/style.scss +++ b/scss/style.scss @@ -12,6 +12,16 @@ body { flex-direction: column; } +a { + border-bottom: 1px solid rgb(230, 230, 230); +} + +a:hover { + background-color: rgb(250, 250, 250); + color: rgb(0, 0, 0); + border-bottom: 0px; +} + .main { margin-top: 20px; margin-bottom: 20px; @@ -19,6 +29,14 @@ body { } +// Nav +nav { + a { + border-bottom: 0px; + } +} + + // Home - Banner .fsfi-banner header { @@ -44,7 +62,11 @@ body { } } -// Feed Icon +// Feed +a.feed { + border-bottom: 0px; +} + .feed-icon { content: url('/assets/img/feed.svg'); background-color: $fsfi-dark; -- cgit v1.2.3