From 439d555979e970c6db4a684e47e76dca92222e67 Mon Sep 17 00:00:00 2001 From: Fizzgig Date: Sat, 16 Aug 2025 12:14:11 -0400 Subject: [PATCH] grid layout --- index.php | 52 ++++++++++++++++++++++++++-------------------------- styles.css | 41 ----------------------------------------- 2 files changed, 26 insertions(+), 67 deletions(-) delete mode 100644 styles.css diff --git a/index.php b/index.php index d78a0d8..2415f91 100644 --- a/index.php +++ b/index.php @@ -3,13 +3,13 @@ //Offline servers will splash error text. That is why error_reporting(0); is set. include('minecraft_status.php'); - - $ServerList[1]=new Server('Server 1', 'kokorogamers.com', 35566); - $ServerList[2]=new Server('Server 2', 'kokorogamers.com', 35567); - $ServerList[3]=new Server('Server 3', 'kokorogamers.com', 35568); - $ServerList[4]=new Server('Server 4', 'kokorogamers.com', 35569); - $ServerList[5]=new Server('Wonderbit', 'wonderbit.xyz', 25500); - $ServerList[6]=new Server('Blockgame', 'mc.blockgame.info', 25565); + + $ServerList[1]=new Server(NAME:'Server 1', HOST:'kokorogamers.com', PORT:35566); + $ServerList[2]=new Server(NAME:'Server 2', HOST:'kokorogamers.com', PORT:35567); + $ServerList[3]=new Server(NAME:'Server 3', HOST:'kokorogamers.com', PORT:35568); + $ServerList[4]=new Server(NAME:'Server 4', HOST:'kokorogamers.com', PORT:35569); + $ServerList[5]=new Server(NAME:'Wonderbit', HOST:'wonderbit.xyz', PORT:25500); + $ServerList[6]=new Server(NAME:'Blockgame', HOST:'mc.blockgame.info', PORT:25565); function displayserver($s){ $status = new ServerStatusQuery(); @@ -34,27 +34,27 @@ Minecraft Server Status - - + - -
-

- - - - - - - - - - -
-

+
+

+

Minecraft Server Status

+
+
+
+
+
+
+
+
+

diff --git a/styles.css b/styles.css deleted file mode 100644 index 88f4662..0000000 --- a/styles.css +++ /dev/null @@ -1,41 +0,0 @@ -h1{color:#EFEF88;} -h2{color:#EFEF88;} -a:link{color:#8888EF;} -a:visited{color:#8888EF;} -a:hover{color:#8888EF;} -a:active{color:#8888EF;} -body {background-color:#222; color:#CCC; margin:0;} -.banner{display:block;} -.banner img { - float: left; - width: 100px; - height: 100px; -} - -.banner h1 { - position: relative; - top: 18px; - left: 10px; -} -.banner h2 { - position: relative; - top: 2px; - left: 10px; -} -.banner h3 { - color:#EFEF88; - position: relative; - top: 2px; - left: 10px; -} -.banner a:link{text-decoration: none;position: relative;} -.banner a:visited{text-decoration: none;position: relative;} -.banner a:hover{text-decoration: none;position: relative;} -.banner a:active{text-decoration: none;position: relative;} -.notice{display: block;} -.notice{background-color: #EFEF88;color: #000000;} -.warning{display: block} -.warning{background-color: #efaf88;color: #000000;} -input{background-color: #555555; color: #CCC;} -textarea{background-color: #555555; color: #CCC;} -select{background-color: #555555; color: #CCC;} \ No newline at end of file