summaryrefslogtreecommitdiff
path: root/src/styles.css
diff options
context:
space:
mode:
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;