From 7f3941fa96dd125bd45c1b383c56ba00ffb3ce27 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 21 Jun 2013 00:57:50 -0700 Subject: [PATCH] website: darken the links on the docs content cause of white bg --- website/source/stylesheets/_components.scss | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/website/source/stylesheets/_components.scss b/website/source/stylesheets/_components.scss index fdf02fb7b..20545884d 100644 --- a/website/source/stylesheets/_components.scss +++ b/website/source/stylesheets/_components.scss @@ -149,6 +149,18 @@ font-size: 14px; } + a { + color: darken($green, 15%); + + &:hover { + color: darken($green, 30%); + } + + &:active { + color: darken($green, 50%); + } + } + ul, ol { list-style-type: circle;