Second Commit

This commit is contained in:
LeoTurlock 2024-04-25 21:35:33 +02:00
parent 47b254e24c
commit a6bc41638e
13 changed files with 257 additions and 10 deletions

14
about.html Normal file
View File

@ -0,0 +1,14 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1>About</h1>
<p>This is the about page.</p>
</body>
</html>

32
archive.html Normal file
View File

@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>EaglerArchive</title>
<link rel="stylesheet" href="./stylesheet.css">
</head>
<body>
<div id="nav_bar">
<ul style="list-style-type: none;"></ul>
<img src="./assets/images/eaglercraft.png" alt="EaglerArchive">
</ul>
</div>
<div>
<h1>Archive</h1>
<div>
</div>
<div>
</div>
<div>
</div>
</div>
</body>
</html>

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -3,20 +3,68 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title> <title>EaglerArchive</title>
<link rel="stylesheet" href="./stylesheet.css"> <link rel="stylesheet" href="./stylesheet.css">
</head> </head>
<body> <body>
<center>
<div id="nav_bar"> <div id="nav_bar">
<ul style="list-style-type: none;"></ul>
<a href="index.html">Home</a> <div id="EaglerArchive">
<a href="about.html">About</a> <img src="./assets/images/EaglerArchive.png" alt="EaglerArchive">
<a href="contact.html">Contact</a> <h2>EaglerArchive</h2>
</ul>
<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>
<a id="link_discord" href="https://discord.gg/xi" target="_blank">Discord</a>
</div>
</center>
<div id="view"> <div id="view">
<div class="box-container">
<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>
</div> </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>
</a>
<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>
</div>
</a>
<div class="grid-item">4</div>
<div class="grid-item">5</div>
<div class="grid-item">6</div>
</div>
</div>
</body> </body>
</html> </html>

View File

@ -1,21 +1,174 @@
body {
background-color: #222222;
}
body {
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 0;
}
@font-face {
font-family: 'SF-Bold';
src: url('./assets/fonts/SF-Pro-Display-Bold.otf');
}
@font-face {
font-family: 'SF-Medium';
src: url('./assets/fonts/SF-Pro-Display-Medium.otf');
}
* { * {
margin: 0; margin: 0;
padding: 0; padding: 0;
box-sizing: border-box; box-sizing: border-box;
font-family: 'SF-Medium';
}
#EaglerArchive {
display: flex;
flex-direction: row;
}
#EaglerArchive h2 {
margin-right: 10px;
} }
#nav_bar { #nav_bar {
display: flex; display: flex;
flex-direction:row; flex-direction:row;
align-items: center; justify-content: space-between;
width: 100%;
background-color: #333; background-color: #333;
color: white; color: white;
padding: 10px; padding: 10px;
margin: 0; padding-left: 25%;
padding-right: calc(25% - 10px);
margin: 0 auto;
}
#nav_bar img {
height: 40px;
}
#nav_bar h2 {
font-family: 'SF-Bold';
font-size: 30px;
margin-left: 10px;
} }
#nav_bar a { #nav_bar a {
color: white; color: white;
text-decoration: none; text-decoration: none;
padding: 10px; padding: 10px;
margin-left: 10px;
margin-right: 10px;
border-radius: 10px;
transition: background-color 0.75s ease, color 0.75s ease;
} }
#nav_bar a:hover {
background-color: white;
color: rgb(0, 0, 0);
}
#link_discord {
background-color: #5865F2;
}
#view {
width: 100%;
height: calc(100vh - 120px);
padding-left: 25%;
padding-right: 25%;
}
.folder {
background-image: url('./assets/folder-closed.png');
}
.folder:hover {
background-image: url('./assets/folder-open.png');
}
.box-container {
display: grid;
grid-template-columns: repeat(3, 2fr);
gap: 30px;
margin-top: 30px;
width: 100%;
}
.box {
background-color: rgb(55, 55, 55);
font-size: 30px;
text-align: center;
padding: 25px;
border-radius: 20px;
text-decoration: none;
transition: background-color 0.75s ease, color 0.75s ease;
}
.box-content {
display: flex;
flex-direction: column;
align-items: center;
text-decoration: none;
color: white;
transition: background-color 0.75s ease, color 1s ease;
}
.box:hover {
background-color: white;
}
.box:hover > .box-content {
color: rgb(0, 0, 0);
}
/* ---------------------------------------------------------- */
.homepage_gridicon {
height: 75px;
width: 75px;
margin: 30px;
}
.homepage_gridbanner {
margin: -25px;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
margin-bottom: 25px;
}
#discord-box {
background-color: #5865F2;
color: white;
transition: filter 0.75s ease, background-color 0.75s ease;
display: flex;
}
#discord_div {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
#discord_icon {
height: 75px;
width: 75px;
margin: 30px;
}
#discord-box:hover {
background-color: #ffffff;
}
#discord-box:hover > #discord_div{
filter: invert(1);
}