From c12be293e3b55f247a662e2a0031b186d44480fe Mon Sep 17 00:00:00 2001 From: Hugo Giraudel Date: Mon, 8 May 2017 19:35:20 +0200 Subject: [PATCH] Added hover state to links --- src/index.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/index.css b/src/index.css index bb8e662..0c73f81 100644 --- a/src/index.css +++ b/src/index.css @@ -54,3 +54,18 @@ h2 { white-space: normal; font-size: 80%; } + +a { + color: rgb(52, 183, 188); + transition-property: background-color, color; + transition-duration: 250ms; +} + +a:hover, +a:active { + background-color: rgb(59, 208, 214); + color: white; + border-radius: 0.25em; + padding: 0.25em; + margin: -0.25em; +}