From 74ee0189f8678b7af61c594e69fab83cef7f1285 Mon Sep 17 00:00:00 2001 From: Igor Tolmachev Date: Tue, 23 Apr 2024 21:47:58 +0900 Subject: Add whitelist form --- minecraft/index.html | 17 +++++++++++++++++ style.css | 22 +++++++++++++++++++--- 2 files changed, 36 insertions(+), 3 deletions(-) diff --git a/minecraft/index.html b/minecraft/index.html index 1e082b9..9a5abab 100644 --- a/minecraft/index.html +++ b/minecraft/index.html @@ -12,6 +12,22 @@ Minecraft server list + +
 
@@ -42,6 +58,7 @@
     Version: 1.20.4
      Map: https://mc.igorek.dev
      IP: mc.igorek.dev:25565
+     Whitelist:  [+ add] 
      Recommended mods: Simple Voice Chat
     
diff --git a/style.css b/style.css
index c24e85f..f7055b3 100644
--- a/style.css
+++ b/style.css
@@ -1,10 +1,11 @@
 @font-face {
-  font-family: Noto Sans Mono;
   src: url(font.ttf);
+  font-family: Noto Sans Mono;
 }
 
 * {
   font-family: Noto Sans Mono;
+  text-decoration-thickness: 0.01em;
 }
 
 @media screen and (max-width: 700px) {
@@ -33,14 +34,29 @@
   }
 }
 
+input {
+  border: none;
+  color: #7587a6;
+  background: none;
+
+  border-bottom: 0.01em solid#7587a6;
+}
+
+input::placeholder {
+  opacity: 1;
+  font-style: italic;
+}
+
 a,
-.copy {
+.copy,
+.add {
   cursor: pointer;
   color: #7587a6;
 }
 
 a:active,
-.copy:hover {
+.copy:hover,
+.add:hover {
   cursor: pointer;
   color: #9b859d;
 }
-- 
cgit v1.2.3