From bca89e22592b2aed4412c858a33d8f648e1f62a4 Mon Sep 17 00:00:00 2001 From: Random Penguin <25882519-randompenguin@users.noreply.gitlab.com> Date: Sun, 27 Apr 2025 16:48:17 -0500 Subject: [PATCH] Edit smoothly.css --- view/src/smoothly.css | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/view/src/smoothly.css b/view/src/smoothly.css index c29499b..9a0de7b 100644 --- a/view/src/smoothly.css +++ b/view/src/smoothly.css @@ -60,4 +60,27 @@ div.preview-postbox > button { content: ''; display: block; clear: both; - } \ No newline at end of file + } +/* handle patterns and animations */ +div.preview-postbox > button:hover, +div.preview-postbox > button:focus { + position: relative; + z-index: 10; + transform-origin: center; + transform: scale(2); +} + +div.pick-postbox { + height: 320px !important; + width: 320px !important;; + transform-origin: top left; + transform: scale(.1); +} +div.pick-postbox, div.pick-postbox::before, div.pick-postbox::after { + animation-play-state: paused; +} + +div.pick-postbox:hover, div.pick-postbox:hover::before, div.pick-postbox:hover::after, +button:focus div.pick-postbox, button:focus div.pick-postbox::before, button:focus div.pick-postbox::after { + animation-play-state: running; +} \ No newline at end of file