From 3ba1427cca2854b431210b483a312e77a1d00704 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Tue, 30 Sep 2014 16:35:45 -0400 Subject: [PATCH] Fix button border color - Remove bottom borders on links and use text-decoration: underline instead - Use sans-serif font for button text --- _sass/elements.scss | 3 +++ _sass/page.scss | 9 +-------- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git a/_sass/elements.scss b/_sass/elements.scss index 8a40a4b..18b8c15 100644 --- a/_sass/elements.scss +++ b/_sass/elements.scss @@ -51,11 +51,14 @@ svg:not(:root) { margin-bottom: 20px; padding: 8px 20px; @include font-rem(14); + font-family: $heading-font; + font-weight: 700; background-color: $primary; color: $white; border-width: 2px !important; border-style: solid !important; border-color: $primary; + text-decoration: none !important; @include rounded(3px); &:visited { color: $white; diff --git a/_sass/page.scss b/_sass/page.scss index 319544e..ab4fa31 100644 --- a/_sass/page.scss +++ b/_sass/page.scss @@ -410,14 +410,7 @@ $button-size: 1.5rem; // Dotted line underlines for links p > a, li > a { - border-bottom: 1px dotted lighten($link-color, 50); - &:hover { - border-bottom-style: solid; - } - } - p > a.reversefootnote, - li > a.reversefootnote { - border-bottom-width: 0; + text-decoration: underline; } } .toc { -- 2.43.0