summaryrefslogtreecommitdiff
path: root/public/static
diff options
context:
space:
mode:
authorilotterytea <iltsu@alright.party>2025-04-20 03:55:21 +0500
committerilotterytea <iltsu@alright.party>2025-04-20 03:55:21 +0500
commit43e46d21c263fe8a8672e8e4b3ce38803b9cd089 (patch)
tree0d78496b19203e7879f04200cc6727aa1fbefecf /public/static
parent16673ae810cb8f84b98187370c87d5ee2fff481d (diff)
feat: icons and colors for control buttons
Diffstat (limited to 'public/static')
-rw-r--r--public/static/img/icons/coal.pngbin0 -> 573 bytes
-rw-r--r--public/static/img/icons/gem.pngbin0 -> 883 bytes
-rw-r--r--public/static/style.css32
3 files changed, 32 insertions, 0 deletions
diff --git a/public/static/img/icons/coal.png b/public/static/img/icons/coal.png
new file mode 100644
index 0000000..38f492a
--- /dev/null
+++ b/public/static/img/icons/coal.png
Binary files differ
diff --git a/public/static/img/icons/gem.png b/public/static/img/icons/gem.png
new file mode 100644
index 0000000..0b01c2b
--- /dev/null
+++ b/public/static/img/icons/gem.png
Binary files differ
diff --git a/public/static/style.css b/public/static/style.css
index 562e87a..09e5534 100644
--- a/public/static/style.css
+++ b/public/static/style.css
@@ -135,6 +135,8 @@ button:hover,
.button:hover {
background: #b9b9b9;
cursor: pointer;
+ color: black;
+ text-decoration: none;
}
button.transparent,
@@ -143,6 +145,36 @@ button.transparent,
border: unset;
}
+.gem:hover {
+ filter: saturate(2);
+}
+
+.coal:hover {
+ filter: brightness(2);
+}
+
+button.red,
+.button.red {
+ background: #e97272;
+ border-color: #a85252;
+}
+
+button.red:hover,
+.button.red:hover {
+ background: #ec8d8d;
+}
+
+button.green,
+.button.green {
+ background: #6cbb6d;
+ border-color: #52a85d;
+}
+
+button.green:hover,
+.button.green:hover {
+ background: #85dd8a;
+}
+
/**
----------
LIST