From 258ff2769e0958377dd04f2d5e27e54e43350f60 Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Wed, 14 Feb 2024 17:19:34 +0100 Subject: [PATCH] fix(css): :lipstick: add missing cta state styles --- src/stylesheets/base.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/stylesheets/base.css b/src/stylesheets/base.css index c7e7df8..69785d0 100644 --- a/src/stylesheets/base.css +++ b/src/stylesheets/base.css @@ -88,4 +88,15 @@ h1 { font-family: var(--_font-family-accent); border: var(--_border-size) solid var(--_accent-color); transition: all var(--_transition-delay) ease; + display: inline-block; +} + +.cta:hover { + background-color: var(--lime-1); + color: var(--_accent-color); + box-shadow: 0 0 0 0 var(--_accent-color); +} + +.cta:active { + box-shadow: 0 0 180px 20px var(--_accent-color); }