uhh add the quick guide?
This commit is contained in:
parent
2fd76b466a
commit
a1db0a9780
11 changed files with 197 additions and 7 deletions
1
1.3.html
1
1.3.html
|
|
@ -16,6 +16,7 @@
|
|||
<li><a href="worlds.html">Worlds</a></li>
|
||||
<li><a href="packs.html">Resource Packs</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
<li><a href="mc quick guide/index.html">Quick Guide</a></li>
|
||||
<li style="float: right;"><a href="https://github.com/cobblesteve01/Eaglercraft-Extras" target="_blank"><img src="assets/github.png" style="height: 25px; color: white;" alt=""></a></li>
|
||||
</ul>
|
||||
|
||||
|
|
|
|||
1
1.5.html
1
1.5.html
|
|
@ -16,6 +16,7 @@
|
|||
<li><a href="worlds.html">Worlds</a></li>
|
||||
<li><a href="packs.html">Resource Packs</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
<li><a href="mc quick guide/index.html">Quick Guide</a></li>
|
||||
<li style="float: right;"><a href="https://github.com/cobblesteve01/Eaglercraft-Extras" target="_blank"><img src="assets/github.png" style="height: 25px; color: white;" alt=""></a></li>
|
||||
</ul>
|
||||
|
||||
|
|
|
|||
1
1.8.html
1
1.8.html
|
|
@ -17,6 +17,7 @@
|
|||
<li><a href="worlds.html">Worlds</a></li>
|
||||
<li><a href="packs.html">Resource Packs</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
<li><a href="mc quick guide/index.html">Quick Guide</a></li>
|
||||
<li style="float: right;"><a href="https://github.com/cobblesteve01/Eaglercraft-Extras" target="_blank"><img src="assets/github.png" style="height: 25px; color: white;" alt=""></a></li>
|
||||
</ul>
|
||||
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
<li><a href="worlds.html">Worlds</a></li>
|
||||
<li><a href="packs.html">Resource Packs</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
<li><a href="mc quick guide/index.html">Quick Guide</a></li>
|
||||
<li style="float: right;"><a href="https://github.com/cobblesteve01/Eaglercraft-Extras" target="_blank"><img src="assets/github.png" style="height: 25px; color: white;" alt=""></a></li>
|
||||
</ul>
|
||||
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
<li><a href="worlds.html">Worlds</a></li>
|
||||
<li><a href="packs.html">Resource Packs</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
<li><a href="mc quick guide/index.html">Quick Guide</a></li>
|
||||
<li style="float: right;"><a href="https://github.com/cobblesteve01/Eaglercraft-Extras" target="_blank"><img src="assets/github.png" style="height: 25px; color: white;" alt=""></a></li>
|
||||
</ul>
|
||||
|
||||
|
|
|
|||
177
mc quick guide/home.css
Normal file
177
mc quick guide/home.css
Normal file
|
|
@ -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';
|
||||
}
|
||||
|
|
@ -6,16 +6,20 @@
|
|||
<link rel="shortcut icon" href="images/knowledge_book.png" type="image/x-icon">
|
||||
<link rel="stylesheet" href="style.css">
|
||||
<link rel="stylesheet" href="fonts/inter.css">
|
||||
<link rel="stylesheet" href="home.css">
|
||||
<link type="text/css" rel="stylesheet" charset="UTF-8" href="https://www.gstatic.com/_/translate_http/_/ss/k=translate_http.tr.26tY-h6gH9w.L.W.O/am=AgM/d=0/rs=AN8SPfrixlL1amy8r1f0UQHcZ2HL9amUjg/m=el_main_css"></head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<img src="images/knowledge_book.png" width="48px">
|
||||
<h1><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Minecraft Quick Guide</font></font></h1>
|
||||
<a href="/" style="font-weight: 600; background-color: #363636;"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">Potions</font></font></a>
|
||||
<!--<a href="#">Зачарования</a>
|
||||
<a href="#">Рецепты</a>-->
|
||||
</header>
|
||||
<ul>
|
||||
<li><a style="margin-left: 5px;" class="active" href="index.html">Home</a></li>
|
||||
<li><a href="clients.html">Clients</a></li>
|
||||
<li><a href="worlds.html">Worlds</a></li>
|
||||
<li><a href="packs.html">Resource Packs</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
<li><a href="mc quick guide/index.html" class="active">Quick Guide</a></li>
|
||||
<li style="float: right;"><a href="https://github.com/cobblesteve01/Eaglercraft-Extras" target="_blank"><img src="assets/github.png" style="height: 25px; color: white;" alt=""></a></li>
|
||||
</ul>
|
||||
|
||||
<div style="width: 100%; height: 64px; user-select: none;"><font style="vertical-align: inherit;"><font style="vertical-align: inherit;">none</font></font></div>
|
||||
|
||||
<section>
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
<li><a href="worlds.html">Worlds</a></li>
|
||||
<li><a class="active" href="packs.html">Resource Packs</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
<li><a href="mc quick guide/index.html">Quick Guide</a></li>
|
||||
<li style="float: right;"><a href="https://github.com/cobblesteve01/Eaglercraft-Extras" target="_blank"><img src="assets/github.png" style="height: 25px; color: white;" alt=""></a></li>
|
||||
</ul>
|
||||
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
<li><a href="worlds.html">Worlds</a></li>
|
||||
<li><a href="packs.html">Resource Packs</a></li>
|
||||
<li><a class="active" href="servers.html">Servers</a></li>
|
||||
<li><a href="mc quick guide/index.html">Quick Guide</a></li>
|
||||
<li style="float: right;"><a href="https://github.com/cobblesteve01/Eaglercraft-Extras" target="_blank"><img src="assets/github.png" style="height: 25px; color: white;" alt=""></a></li>
|
||||
</ul>
|
||||
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
<li><a href="worlds.html">Worlds</a></li>
|
||||
<li><a href="packs.html">Resource Packs</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
<li><a href="mc quick guide/index.html">Quick Guide</a></li>
|
||||
<li style="float: right;"><a href="https://github.com/cobblesteve01/Eaglercraft-Extras" target="_blank"><img src="assets/github.png" style="height: 25px; color: white;" alt=""></a></li>
|
||||
</ul>
|
||||
|
||||
|
|
|
|||
|
|
@ -17,6 +17,7 @@
|
|||
<li><a class="active" href="worlds.html">Worlds</a></li>
|
||||
<li><a href="packs.html">Resource Packs</a></li>
|
||||
<li><a href="servers.html">Servers</a></li>
|
||||
<li><a href="mc quick guide/index.html">Quick Guide</a></li>
|
||||
<li style="float: right;"><a href="https://github.com/cobblesteve01/Eaglercraft-Extras" target="_blank"><img src="assets/github.png" style="height: 25px; color: white;" alt=""></a></li>
|
||||
</ul>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue