summaryrefslogtreecommitdiffstats
path: root/scss/style.scss
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-05-26 22:08:31 -0400
committerrsiddharth <s@ricketyspace.net>2019-05-26 22:08:31 -0400
commita0912b1bc29d12517a3bb3b8c1f2694c2211cb16 (patch)
treea17f484f21017ba218b414b777227cd21e987491 /scss/style.scss
parent9d8e33b7c69dfe43a2111cd7e479d7a0ff8717ac (diff)
scss/style.scss: Add border-bottom for 'a'
Except in nav and a.feed.
Diffstat (limited to 'scss/style.scss')
-rw-r--r--scss/style.scss24
1 files changed, 23 insertions, 1 deletions
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;