diff options
author | Grail Finder (aider) <wohilas@gmail.com> | 2025-04-05 16:32:59 +0300 |
---|---|---|
committer | Grail Finder (aider) <wohilas@gmail.com> | 2025-04-05 16:32:59 +0300 |
commit | 1d052c05fdc627b4d5efb306c1f3344c2c1bd8c9 (patch) | |
tree | 5b1178892fc858dd675659e43a82fa1eec96214d /assets | |
parent | 685da156ee8cb6b07c9eef6301b439b56823dfc3 (diff) |
feat: add next question button functionality
Diffstat (limited to 'assets')
-rw-r--r-- | assets/style.css | 15 |
1 files changed, 15 insertions, 0 deletions
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; } |