From c0d2d1ac6571af46015e8ee6ac2bc4889b115a3e Mon Sep 17 00:00:00 2001 From: neon_arch Date: Mon, 11 Dec 2023 21:11:48 +0300 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(animations):=20provide=20a=20d?= =?UTF-8?q?efault=20frosted=20glow=20animation=20for=20the=20`simple`=20th?= =?UTF-8?q?eme=20(#424)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- public/static/animations/simple-frosted-glow.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 public/static/animations/simple-frosted-glow.css diff --git a/public/static/animations/simple-frosted-glow.css b/public/static/animations/simple-frosted-glow.css new file mode 100644 index 0000000..58d4ae6 --- /dev/null +++ b/public/static/animations/simple-frosted-glow.css @@ -0,0 +1,15 @@ +.results_aggregated .result { + margin: 1rem; + padding: 1rem; + border-radius: 1rem; +} + +.results_aggregated .result:hover { + box-shadow: + inset 0 0 3rem var(--color-two), + inset 0 0 6rem var(--color-five), + inset 0 0 9rem var(--color-three), + 0 0 0.25rem var(--color-two), + 0 0 0.5rem var(--color-five), + 0 0 0.75rem var(--color-three); +}