From 1d052c05fdc627b4d5efb306c1f3344c2c1bd8c9 Mon Sep 17 00:00:00 2001 From: "Grail Finder (aider)" Date: Sat, 5 Apr 2025 16:32:59 +0300 Subject: feat: add next question button functionality --- assets/style.css | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'assets') diff --git a/assets/style.css b/assets/style.css index d71d3fd..439eb7f 100644 --- a/assets/style.css +++ b/assets/style.css @@ -12,6 +12,21 @@ body{ text-align: center; display: block; } + +.next-button { + margin-top: 1rem; + padding: 0.5rem 1rem; + background: #4CAF50; + color: white; + border: none; + border-radius: 4px; + cursor: pointer; + transition: background-color 0.3s; +} + +.next-button:hover { + background-color: #45a049; +} a{ color: #00a2e7; } -- cgit v1.2.3