From 276a8a0eb728b0822fb9c1c6e7884d45c689930c Mon Sep 17 00:00:00 2001 From: Kyle Drake Date: Sun, 25 Dec 2016 14:56:31 -0600 Subject: [PATCH] inappropriately colored the tip buttons green --- sass/_project-sass/_project-Main.scss | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sass/_project-sass/_project-Main.scss b/sass/_project-sass/_project-Main.scss index bdc1ef39..edc7aa33 100644 --- a/sass/_project-sass/_project-Main.scss +++ b/sass/_project-sass/_project-Main.scss @@ -2227,3 +2227,11 @@ pre, code { .tagcloud .tag2 { font-size: 1.8em; font-weight: 800; } .tagcloud .tag1 { font-size: 2.2em; font-weight: 900; } .tagcloud .tag0 { font-size: 2.5em; font-weight: 900; } + +#tipButton { + @extend .btn-Action; + background: -webkit-linear-gradient(top, #229954, #145A32); + &:hover, &:active { + @include linear-gradient(top, #0E6655, #0B5345); + } +}