From 595623742e03d4f4678e5a5c2569cd510552b84c Mon Sep 17 00:00:00 2001 From: Squirrel-314 Date: Sun, 14 Feb 2021 10:53:29 -0500 Subject: [PATCH] Links --- styles.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/styles.css b/styles.css index 5cdd5d0..e185d9e 100644 --- a/styles.css +++ b/styles.css @@ -663,3 +663,33 @@ Right Click Menu border: 1px solid #ebebeb; border-bottom: 0; } + +/*========================================================== +Links +==========================================================*/ + +a { + color: lightblue; + text-decoration: none; + position: relative; +} + +.no-link:after { + display: none; +} + +a:after { + content: ""; + display: block; + height: 1.5px; + left: 50%; + position: absolute; + background: lightblue; + transition: all .5s; + width: 0; +} + +a:hover:after { + width: 100%; + left: 0; +}