From 9fccdfbff0047091efd907914497de0e982e394e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Mon, 20 Nov 2023 23:07:11 +0100 Subject: [PATCH] Make links colorful --- common/input.css | 6 ++++++ games/static/base.css | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/common/input.css b/common/input.css index e8a7e7d..d79545c 100644 --- a/common/input.css +++ b/common/input.css @@ -23,6 +23,12 @@ font-style: normal; } +a:hover { + text-decoration-color: #ff4400; + color: rgb(254, 185, 160); + transition: all 0.2s ease-out; +} + form label { @apply dark:text-slate-400; } diff --git a/games/static/base.css b/games/static/base.css index 74cff7a..c9bb181 100644 --- a/games/static/base.css +++ b/games/static/base.css @@ -1173,6 +1173,12 @@ select { font-style: normal; } +a:hover { + text-decoration-color: #ff4400; + color: rgb(254, 185, 160); + transition: all 0.2s ease-out; +} + :is(.dark form label) { --tw-text-opacity: 1; color: rgb(148 163 184 / var(--tw-text-opacity));