From c26db47a7f44c62d7c0cf8a79ac205bc28b980cd Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 11:56:22 +0200 Subject: [PATCH] Add paw-queued class for styling --- index.html | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/index.html b/index.html index f61ff30..b218c0c 100644 --- a/index.html +++ b/index.html @@ -192,6 +192,17 @@ 0px 1px 1px color-mix(in srgb, currentColor 40%, black); } /* Füge das in deine CSS ein */ + .paw-queued { + position: absolute; + top: 50px; + right: 1.5rem; /* experimentiere mit dem Wert */ + width: 2rem; + height: 2rem; + filter: drop-shadow(0 2px 2px rgba(0,0,0,0.10)); + transition: transform 0.18s cubic-bezier(0.4,0.2,0.6,1); + transform: translate(-40px, 8px); + pointer-events: none + } }