From bf87b39255971b4a37377f1bbe2521f96015cef1 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Fri, 9 Jun 2023 02:35:44 +0200 Subject: [PATCH] Added styling for the start button --- webui/src/pages/GameCreation/styles.sass | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/webui/src/pages/GameCreation/styles.sass b/webui/src/pages/GameCreation/styles.sass index c29cb45..ab33c3c 100644 --- a/webui/src/pages/GameCreation/styles.sass +++ b/webui/src/pages/GameCreation/styles.sass @@ -22,4 +22,25 @@ border: 2px solid $border border-radius: 0.8rem width: 18rem - height: 30rem \ No newline at end of file + height: 25rem + +.start-btn + margin-top: 1rem + width: 100% + padding: 0.6rem + border-radius: 0.8rem + background-color: $background + backdrop-filter: blur(10px) + color: $white + font-size: 22pt + font-weight: 600 + border: 2px solid $border + cursor: pointer + transition: 0.2s + display: flex + justify-content: center + align-items: center + gap: 1rem + + &:hover + transform: scale(1.05) translateY(-0.2rem) rotate(-0.4deg) \ No newline at end of file