From fd64754cb50db69f08d4ea56e7ba4bf9cf18aa72 Mon Sep 17 00:00:00 2001
From: Fuwn
Date: Wed, 12 Jun 2024 10:38:55 +0000
Subject: feat(index.html): theme selector
---
index.html | 48 +++++++++++++++++++++++++++++++++++++++---------
1 file changed, 39 insertions(+), 9 deletions(-)
diff --git a/index.html b/index.html
index 27257eb..e0029cc 100644
--- a/index.html
+++ b/index.html
@@ -46,7 +46,8 @@
margin-bottom: 15px;
}
- input {
+ input,
+ select {
background-color: rgb(11, 22, 34);
color: rgb(159, 173, 189);
border-radius: 4px;
@@ -58,6 +59,18 @@
font-size: 0.9rem;
}
+ ::placeholder {
+ color: #9fadbd;
+ }
+
+ select {
+ color: #9fadbd;
+ }
+
+ select:focus {
+ outline: none;
+ }
+
input:focus {
outline: none;
}
@@ -137,7 +150,19 @@
Enter the username you'd like to use as the ID of your counter.
-
+
+
+
+
+
Written by
@@ -173,22 +198,27 @@