From de984755d54ea81b10dcb2085b098c0de147d139 Mon Sep 17 00:00:00 2001
From: neon443 <69979447+neon443@users.noreply.github.com>
Date: Tue, 2 Apr 2024 19:08:02 +0100
Subject: [PATCH] made baritems unselectable
---
index.html | 2 +-
style.css | 9 ++++++---
2 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/index.html b/index.html
index 585e6dc..8005855 100644
--- a/index.html
+++ b/index.html
@@ -44,7 +44,7 @@
 |
-  |
+  |
Minecraft 1.5.2 |
diff --git a/style.css b/style.css
index 28e03ca..509bccb 100644
--- a/style.css
+++ b/style.css
@@ -88,6 +88,9 @@ h3 {
font-size: 20px;
color: #222;
padding: 9.2px 12px;
+ -webkit-touch-callout: none;
+ -webkit-user-select: none;
+ user-select: none;
}
.barItem h1 {
font-size: 30px;
@@ -167,9 +170,9 @@ td img:hover {
.barItem a:hover {
background-color: #888;
color: #222;
- -webkit-box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.25);
- -moz-box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.25);
- box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.25);
+ -webkit-box-shadow: 0px 0px 5px 5px rgba(200, 200, 200, 0.8);
+ -moz-box-shadow: 0px 0px 5px 5px rgba(200, 200, 200, 0.8);
+ box-shadow: 0px 0px 5px 5px rgba(200, 200, 200, 0.8);
}
}