From a1db0a97803ed76a95ed8e08419802ff753ce018 Mon Sep 17 00:00:00 2001
From: cobblesteve <159058655+cobblesteve01@users.noreply.github.com>
Date: Thu, 23 May 2024 17:12:33 -0500
Subject: [PATCH] uhh add the quick guide?
---
1.3.html | 1 +
1.5.html | 1 +
1.8.html | 1 +
clients.html | 1 +
index.html | 1 +
mc quick guide/home.css | 177 ++++++++++++++++++++++++++++++++++++++
mc quick guide/index.html | 18 ++--
packs.html | 1 +
servers.html | 1 +
warning.html | 1 +
worlds.html | 1 +
11 files changed, 197 insertions(+), 7 deletions(-)
create mode 100644 mc quick guide/home.css
diff --git a/1.3.html b/1.3.html
index fc3e0bd..3f9d948 100644
--- a/1.3.html
+++ b/1.3.html
@@ -16,6 +16,7 @@
Worlds
Resource Packs
Servers
+ Quick Guide
diff --git a/1.5.html b/1.5.html
index d196d9d..34483ce 100644
--- a/1.5.html
+++ b/1.5.html
@@ -16,6 +16,7 @@
Worlds
Resource Packs
Servers
+ Quick Guide
diff --git a/1.8.html b/1.8.html
index ba635a6..8b31726 100644
--- a/1.8.html
+++ b/1.8.html
@@ -17,6 +17,7 @@
Worlds
Resource Packs
Servers
+ Quick Guide
diff --git a/clients.html b/clients.html
index bb462a9..0c37bb0 100644
--- a/clients.html
+++ b/clients.html
@@ -17,6 +17,7 @@
Worlds
Resource Packs
Servers
+ Quick Guide
diff --git a/index.html b/index.html
index 1382aa5..3dc34a7 100644
--- a/index.html
+++ b/index.html
@@ -17,6 +17,7 @@
Worlds
Resource Packs
Servers
+ Quick Guide
diff --git a/mc quick guide/home.css b/mc quick guide/home.css
new file mode 100644
index 0000000..9a2577c
--- /dev/null
+++ b/mc quick guide/home.css
@@ -0,0 +1,177 @@
+@font-face {
+ font-family: inter-bold;
+ src: url(assets/Inter-Bold.ttf);
+}
+
+@font-face {
+ font-family: inter-semibold;
+ src: url(assets/Inter-SemiBold.ttf);
+}
+
+@font-face {
+ font-family: inter-medium;
+ src: url(assets/Inter-Medium.ttf);
+}
+
+h1 {
+ font-family: inter-bold;
+}
+
+body {
+ background: rgb(29, 29, 29);
+ color: white;
+}
+
+.button {
+ text-align: center;
+ border-radius: 20px;
+ height: 100px;
+ width: 250px;
+ font-size: 25px;
+ font-family: inter-semibold;
+ color: white;
+ background-color: rgb(29, 29, 29);
+ border-color: white;
+ border-width: 0.5px;
+ box-shadow: none;
+ outline: none;
+ border-style: solid;
+ cursor: pointer;
+ transition: 0.3s;
+ margin: 5px;
+}
+
+.clientButton {
+ height: 200px;
+ cursor: unset;
+ margin: 15px;
+}
+
+button:hover {
+ background-color: rgba(116, 116, 116, 0.671);
+ scale: 105%;
+}
+
+.container {
+ display: flex;
+ justify-content: center;
+}
+
+.big-button {
+ text-align: center;
+ border-radius: 30px;
+ height: 300px;
+ width: 455px;
+ font-size: 25px;
+ font-family: inter-semibold;
+ color: white;
+ background-color: rgb(29, 29, 29);
+ border-color: white;
+ border-width: 0.5px;
+ box-shadow: none;
+ outline: none;
+ border-style: solid;
+ cursor: pointer;
+ transition: 0.3s;
+ margin: 10px;
+}
+
+.center-logo {
+ display: block;
+ margin-left: auto;
+ margin-right: auto;
+}
+
+.top-bar {
+ scale: 50%;
+ padding: 0%;
+}
+
+li {
+ display: inline;
+ float: left;
+}
+
+li a {
+ display: block;
+ padding: 8px;
+ text-decoration: none;
+ color: white;
+ text-align: center;
+ font-size: 20px;
+ transition: 0.5s;
+ margin-left: 2px;
+ margin-right: 2px;
+ font-family: inter-medium;
+}
+
+li a:hover {
+ background-color: rgb(56, 56, 56);
+ border-radius: 10px;
+
+}
+
+ul {
+ background-color: black;
+ margin: 0;
+ padding: 0;
+ overflow: hidden;
+ border-radius: 10px;
+ padding-top: 5px;
+}
+
+.active {
+ background-color: dodgerblue;
+ border-radius: 10px;
+}
+
+.right {
+ float: right;
+}
+
+.innerbutton {
+ text-align: center;
+ border-radius: 20px;
+ height: 75px;
+ width: 200px;
+ font-size: 14px;
+ font-family: inter-semibold;
+ color: white;
+ background-color: rgb(26, 26, 26);
+ border-color: white;
+ border-width: 0.5px;
+ box-shadow: none;
+ outline: none;
+ border-style: solid;
+ cursor: pointer;
+ transition: 0.3s;
+ margin: 5px;
+ display: flex;
+ flex-wrap: wrap;
+}
+
+.material-icons-round {
+ font-family: 'Material Icons';
+ font-weight: normal;
+ font-style: normal;
+ font-size: 24px; /* Preferred icon size */
+ display: inline-block;
+ line-height: 2;
+ text-transform: none;
+ letter-spacing: normal;
+ word-wrap: normal;
+ white-space: nowrap;
+ direction: ltr;
+ vertical-align: -2.5px;
+
+ /* Support for all WebKit browsers. */
+ -webkit-font-smoothing: antialiased;
+ /* Support for Safari and Chrome. */
+ text-rendering: optimizeLegibility;
+
+ /* Support for Firefox. */
+ -moz-osx-font-smoothing: grayscale;
+
+ /* Support for IE. */
+ font-feature-settings: 'liga';
+}
diff --git a/mc quick guide/index.html b/mc quick guide/index.html
index 9ee71f1..13b1bf0 100644
--- a/mc quick guide/index.html
+++ b/mc quick guide/index.html
@@ -6,16 +6,20 @@
+
-
-
- Minecraft Quick Guide
- Potions
-
-
+
+
none