From c0180cebb21c7641ae6588f9e50fb1db96990792 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20P=C4=99dzich?= Date: Tue, 2 May 2023 09:22:05 +0200 Subject: [PATCH] Change focus color of blog post link --- src/styles/global.css | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/styles/global.css b/src/styles/global.css index edc81ab..d210942 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -156,7 +156,8 @@ h1.cmr2-text { color: #fff; } -/* The following styling rules have been adopted from: https://github.com/codrops/LineHoverStyles/ */ +/* The following styling rules have been adopted from: + https://github.com/codrops/LineHoverStyles/ */ .post-list a { position: relative; @@ -167,7 +168,7 @@ h1.cmr2-text { } .post-list a:focus { - outline: 2px solid #ccc; + outline: 2px solid #bbb; outline-offset: 3px; } @@ -176,8 +177,8 @@ h1.cmr2-text { } .post-list a:focus-visible { - color: #ccc; - outline: 2px solid #ccc; + color: #bbb; + outline: 2px solid #bbb; outline-offset: 3px; background: transparent; }