From 681030e8d6bb301b9e812f0251ed68bff2923615 Mon Sep 17 00:00:00 2001 From: Ben Kurtovic Date: Fri, 16 Dec 2016 21:36:32 -0500 Subject: [PATCH] Add link coloring to styles. --- static/styles/amarr.css | 8 ++++++++ static/styles/caldari.css | 8 ++++++++ static/styles/gallente.css | 8 ++++++++ static/styles/minmatar.css | 8 ++++++++ 4 files changed, 32 insertions(+) diff --git a/static/styles/amarr.css b/static/styles/amarr.css index 89d9892..f61f2fe 100644 --- a/static/styles/amarr.css +++ b/static/styles/amarr.css @@ -5,3 +5,11 @@ body { main, header, footer { border-color: #5F4A26; } + +a { + color: #FFDE78; +} + +a:hover { + color: #DDBE68; +} diff --git a/static/styles/caldari.css b/static/styles/caldari.css index d04db72..ee04f74 100644 --- a/static/styles/caldari.css +++ b/static/styles/caldari.css @@ -5,3 +5,11 @@ body { main, header, footer { border-color: #364A5F; } + +a { + color: #99CCEE; +} + +a:hover { + color: #88BBDD; +} diff --git a/static/styles/gallente.css b/static/styles/gallente.css index 0e9006a..9900655 100644 --- a/static/styles/gallente.css +++ b/static/styles/gallente.css @@ -5,3 +5,11 @@ body { main, header, footer { border-color: #365F4A; } + +a { + color: #66BB99; +} + +a:hover { + color: #60AA90; +} diff --git a/static/styles/minmatar.css b/static/styles/minmatar.css index 5d49b5e..6af41ec 100644 --- a/static/styles/minmatar.css +++ b/static/styles/minmatar.css @@ -5,3 +5,11 @@ body { main, header, footer { border-color: #5F3C42; } + +a { + color: #D89988; +} + +a:hover { + color: #C88070; +}