summaryrefslogtreecommitdiff
path: root/assets/style.css
diff options
context:
space:
mode:
authorGrail Finder (aider) <wohilas@gmail.com>2025-04-05 16:32:59 +0300
committerGrail Finder (aider) <wohilas@gmail.com>2025-04-05 16:32:59 +0300
commit1d052c05fdc627b4d5efb306c1f3344c2c1bd8c9 (patch)
tree5b1178892fc858dd675659e43a82fa1eec96214d /assets/style.css
parent685da156ee8cb6b07c9eef6301b439b56823dfc3 (diff)
feat: add next question button functionality
Diffstat (limited to 'assets/style.css')
-rw-r--r--assets/style.css15
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;
}