Major Improvements

This commit is contained in:
Leo Turlock 2024-04-26 16:43:08 +00:00
parent 3569af37df
commit f8fa6f8740
22 changed files with 119 additions and 54 deletions

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 60 KiB

View File

Before

Width:  |  Height:  |  Size: 23 KiB

After

Width:  |  Height:  |  Size: 23 KiB

View File

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

After

Width:  |  Height:  |  Size: 114 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

View File

View File

View File

0
clients/index.html Normal file
View File

View File

@ -7,24 +7,36 @@
<link rel="stylesheet" href="./stylesheet.css">
</head>
<body>
<center>
<div id="nav_bar">
<div id="EaglerArchive">
<img src="./assets/images/EaglerArchive.png" alt="EaglerArchive">
<h2>EaglerArchive</h2>
<a href="./index.html">Home</a>
<a href="./archive.html">Archive</a>
<a href="./servers.html">Servers</a>
<a href="./about.html">About</a>
</div>
<div id="nav_bar">
<div id="EaglerArchive">
<a id="link_EaglerArchive" href="./index.html">
<img id="logo" src="./assets/images/EaglerArchive.png" alt="EaglerArchive">
<p>EaglerArchive</p>
</a>
<a id="link_discord" href="https://discord.gg/xi" target="_blank">Discord</a>
<a class="link-nav_bar" href="./index.html">
<img class="icon_link" src="./assets/icons/SF Symbols/house_fill.png" alt="home_icon">
<p>Home</p>
</a>
<a class="link-nav_bar" href="./archive.html">
<img class="icon_link" src="./assets/icons/SF Symbols/square_stack_3d_down_right_fill.png" alt="archive_icon">
<p>Archive</p>
</a>
<a class="link-nav_bar" href="./servers.html">
<img alt="server_icon" src="./assets/icons/SF Symbols/hexagon.png" class="icon_link">
<p>Servers</p>
</a>
<a class="link-nav_bar" href="./about.html">
<img class="icon_link" src="./assets/icons/SF Symbols/question.png" alt="about_icon">
<p>About</p>
</a>
</div>
</center>
<a class="link-nav_bar" id="link_discord" href="https://discord.gg/xi" target="_blank">
<img class="icon_link" src="./assets/images/Discord-icon-modified.png" alt="">
<p>Discord</p>
</a>
</div>
<div id="view">
@ -33,17 +45,17 @@
<a class="box" href="" target="_blank">
<div class="box-content">
<img class="homepage_gridicon" src="./assets/images/ResentIcon.png" alt="Resent">
<h5>Resent 4.0 Available!</h5>
<img class="box-icon" src="./assets/images/ResentIcon.png" alt="Resent">
<p>Resent 4.0 Available!</p>
</div>
</a>
<a id="discord-box" href="https://discord.gg/" target="_blank">
<div id="discord_div">
<img class="homepage_gridicon" id="discord_logo" src="./assets/images/Discord-icon-modified.png" alt="discord_icon">
<h5>Join the discord server for the latest news and updates!</h5>
<div id="box-content">
<img class="box-icon invert-icon" src="./assets/images/Discord-icon-modified.png" alt="discord_icon">
<p>Join the discord server for the latest news and updates!</p>
</div>
</a>
@ -51,8 +63,16 @@
<a class="box" href="" target="_blank">
<div class="box-content">
<img class="homepage_gridbanner" src="./assets/images/Hacker_group.png" alt="Hackers">
<h5>Hack Clients!</h5>
<img class="box-banner" src="./assets/images/hacker_group.png" alt="Hackers">
<p>Hack Clients!</p>
</div>
</a>
<a class="box" href="">
<div class="box-content" id="vanilla-box">
<img class="box-icon invert-icon" src="./assets/images/VanillaCraftSMP.png" alt="VanillaCraftSMP">
<p>VanillaCraftSMP is back!</p>
</div>
</a>
@ -60,14 +80,12 @@
<a class="box" href="">
<div class="box-content">
<img class="homepage_gridbanner" src="./assets/images/Server.png" alt="Server">
<h5>Join the server!</h5>
<img src="./assets/images/serverbanner.png" alt="" class="box-banner">
<p>Create your own server!</p>
</div>
</a>
<div class="box">4</div>
<div class="box">5</div>
<div class="box">6</div>
<div class="box"></div>
</div>

View File

@ -1,13 +1,21 @@
body {
background-color: #222222;
:root {
--side_distance: 10%;
}
body {
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
margin: 0;
padding: 0;
background-color: #222222;
}
@font-face {
font-family: 'SF-Black';
src: url('./assets/fonts/SF-Pro-Display-Black.otf');
}
@font-face {
@ -27,13 +35,34 @@ body {
font-family: 'SF-Medium';
}
#link_EaglerArchive {
display: flex;
flex-direction: row;
align-items: center;
color: white;
text-decoration: none;
margin-right: 10px;
}
#link_EaglerArchive p {
margin-left: 10px;
font-family: 'SF-Black';
font-size: 30px;
}
#EaglerArchive {
display: flex;
flex-direction: row;
}
#EaglerArchive h2 {
margin-right: 10px;
#logo {
height: 40px;
}
#EaglerArchive a {
display: flex;
flex-direction: row;
}
#nav_bar {
@ -44,25 +73,38 @@ body {
background-color: #333;
color: white;
padding: 10px;
padding-left: 25%;
padding-right: calc(25% - 10px);
margin: 0 auto;
}
#nav_bar img {
height: 40px;
padding-left: var(--side_distance);
padding-right: calc(var(--side_distance) - 10px);
}
#nav_bar h2 {
font-family: 'SF-Bold';
font-size: 30px;
margin-left: 10px;
margin-right: 10px;
}
#nav_bar a {
.icon_link {
width: 30px;
height: 30px;
margin: 7.5px;
transition: filter 0.75s ease;
}
#nav_bar a:hover > .icon_link {
filter: invert(1)
}
.link-nav_bar {
color: white;
display: flex;
flex-direction: row;
align-items: center;
text-decoration: none;
padding: 10px;
padding-right: 10px;
margin-left: 10px;
margin-right: 10px;
border-radius: 10px;
@ -70,7 +112,7 @@ body {
transition: background-color 0.75s ease, color 0.75s ease;
}
#nav_bar a:hover {
#nav_bar a.link-nav_bar:hover {
background-color: white;
color: rgb(0, 0, 0);
}
@ -82,8 +124,8 @@ body {
#view {
width: 100%;
height: calc(100vh - 120px);
padding-left: 25%;
padding-right: 25%;
padding-left: 15%;
padding-right: 15%;
}
.folder {
@ -99,11 +141,12 @@ body {
grid-template-columns: repeat(3, 2fr);
gap: 30px;
margin-top: 30px;
width: 100%;
max-width: 100%;
}
.box {
background-color: rgb(55, 55, 55);
color: white;
font-size: 30px;
text-align: center;
padding: 25px;
@ -118,8 +161,13 @@ body {
align-items: center;
text-decoration: none;
color: white;
transition: background-color 0.75s ease, color 0.75s ease;
transition: background-color 0.75s ease, color 0.75s ease, filter 0.75s ease;
}
.box-content img {
transition: filter 0.75s ease;
}
.box:hover {
background-color: white;
}
@ -129,17 +177,18 @@ body {
/* ---------------------------------------------------------- */
.homepage_gridicon {
.box-icon {
height: 75px;
width: 75px;
margin: 30px;
}
.homepage_gridbanner {
.box-banner {
margin: -25px;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
margin-bottom: 25px;
max-width: calc(100% + 50px);
}
#discord-box {
@ -153,6 +202,7 @@ body {
font-size: 30px;
text-decoration: none;
text-align: center;
transition: background-color 0.75s ease;
}
@ -173,14 +223,11 @@ body {
#discord-box:hover {
background-color: #ffffff;
}
#discord-box:hover > #discord_div{
.box:hover > .box-content > .invert-icon {
filter: invert(1);
}
#discord-box:hover > #discord_div{
filter: invert(1);
}