From 296af795fe838fbc287782deb41dc8a1f43d43d0 Mon Sep 17 00:00:00 2001 From: Lorin Werthen Date: Wed, 12 Oct 2016 10:57:23 +0200 Subject: [PATCH] link borders are overrated --- content/assets/stylesheets/includes/general.scss | 12 ++++++++++++ content/assets/stylesheets/includes/variables.scss | 4 ++-- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/content/assets/stylesheets/includes/general.scss b/content/assets/stylesheets/includes/general.scss index e4137e0..50e0dd2 100644 --- a/content/assets/stylesheets/includes/general.scss +++ b/content/assets/stylesheets/includes/general.scss @@ -7,6 +7,18 @@ background-size: cover; } +.content { + a { + &:not(.button) { + border-bottom: none; + } + + &:visited:hover { + color: $link-hover; + } + } +} + header.section { padding-bottom: 10px; } diff --git a/content/assets/stylesheets/includes/variables.scss b/content/assets/stylesheets/includes/variables.scss index b8f8258..a64055b 100644 --- a/content/assets/stylesheets/includes/variables.scss +++ b/content/assets/stylesheets/includes/variables.scss @@ -15,9 +15,9 @@ $primary: $orange; $family-sans-serif: 'Lato', sans-serif; -$link-visited: inherit; +$link-visited: $orange; -$border_hover: $blue; +$border-hover: $blue; $box-colour: #EEE; $highlighted-box-colour: $zeus-orange;