From e2a69536f456e0022169d894fc8ed729e7312d7d Mon Sep 17 00:00:00 2001 From: "stephen@cubedesigners.com" Date: Mon, 4 Jul 2016 15:49:49 +0000 Subject: [PATCH] Done #528 @0:20 --- less/001-variables.less | 1 + less/002-common.less | 6 +++++- less/003-mixins.less | 2 +- less/101-header.less | 4 ++++ less/315-quote.less | 1 + 5 files changed, 12 insertions(+), 2 deletions(-) diff --git a/less/001-variables.less b/less/001-variables.less index f4b1b87..dc99949 100644 --- a/less/001-variables.less +++ b/less/001-variables.less @@ -11,6 +11,7 @@ //-- Colours @color-text: #343c44; +@color-link: #666; @color-body-bg: @color-text; @color-footer-bg-primary: #263340; @color-footer-bg-secondary: #161e26; diff --git a/less/002-common.less b/less/002-common.less index 6c5cb27..a379aac 100644 --- a/less/002-common.less +++ b/less/002-common.less @@ -34,8 +34,12 @@ h1, h2 { } a { - color: @color-text; + color: @color-link; text-decoration: underline; + + &:hover { + color: @color-green; + } } .content-wrapper { diff --git a/less/003-mixins.less b/less/003-mixins.less index 0c07ceb..e00eafa 100644 --- a/less/003-mixins.less +++ b/less/003-mixins.less @@ -111,7 +111,7 @@ } } -.longarrow-button(@padding-vertical,@padding-horizontal,@offset,@offset-arrow:0px) { +.longarrow-button(@padding-vertical: 23px, @padding-horizontal: 40px, @offset: 20px, @offset-arrow: -5px) { padding: @padding-vertical @padding-horizontal; position: relative; transition: all @transition-time-buttons; diff --git a/less/101-header.less b/less/101-header.less index 297fae5..406f94f 100644 --- a/less/101-header.less +++ b/less/101-header.less @@ -30,6 +30,10 @@ header { text-decoration: none; font-size: 12px; color: @color-header-grey; + + &:hover { + color: currentColor; + } } ul { list-style: none; diff --git a/less/315-quote.less b/less/315-quote.less index 922366f..23d30b8 100644 --- a/less/315-quote.less +++ b/less/315-quote.less @@ -113,6 +113,7 @@ button { .button(); .background-button-green(); + .longarrow-button(); .font-thinning(); color: #fff; font-size: 14px; -- 2.39.5