summaryrefslogtreecommitdiff
path: root/src/styles.css
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2025-03-05 12:27:03 +0100
committerYuval Adam <_@yuv.al>2025-03-05 12:27:03 +0100
commita547eb5b0749d84221ea9d287b55dbdcd48613db (patch)
treeb09a9913cafce70770006cc7e6e6a2e65e3b63f3 /src/styles.css
parent9853a6e5365f14df2108a3446b8cb72c95b8c01d (diff)
Restore score circles and remove unused css
Diffstat (limited to 'src/styles.css')
-rw-r--r--src/styles.css18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/styles.css b/src/styles.css
index 264b6f7..377c0ca 100644
--- a/src/styles.css
+++ b/src/styles.css
@@ -295,6 +295,24 @@ h1::after {
margin-top: 5px;
}
+.score-marker {
+ width: 12px;
+ height: 12px;
+ border-radius: 50%;
+ margin: 2px;
+ transition: all 0.3s ease;
+}
+
+.score-marker.correct {
+ background-color: var(--success-color);
+ box-shadow: 0 0 5px rgba(46, 204, 113, 0.7);
+}
+
+.score-marker.incorrect {
+ background-color: var(--accent-color);
+ box-shadow: 0 0 5px rgba(231, 76, 60, 0.7);
+}
+
.score-dot {
width: 12px;
height: 12px;