aboutsummaryrefslogtreecommitdiff
path: root/web/src/styles/TypingGame.css
diff options
context:
space:
mode:
Diffstat (limited to 'web/src/styles/TypingGame.css')
-rw-r--r--web/src/styles/TypingGame.css19
1 files changed, 19 insertions, 0 deletions
diff --git a/web/src/styles/TypingGame.css b/web/src/styles/TypingGame.css
new file mode 100644
index 0000000..e5f5c8e
--- /dev/null
+++ b/web/src/styles/TypingGame.css
@@ -0,0 +1,19 @@
+.space {
+ color: #666;
+ opacity: 0.7;
+}
+
+.space.correct {
+ color: #4CAF50;
+ opacity: 1;
+}
+
+.space.incorrect {
+ color: #f44336;
+ opacity: 1;
+}
+
+.space.current {
+ background-color: rgba(255, 255, 255, 0.1);
+ border-radius: 2px;
+} \ No newline at end of file