Compare commits

...

2 Commits

Author SHA1 Message Date
b39537566a Merge pull request 'Changes' (#2) from Gabubu/libreshop_website:main into main
Reviewed-on: #2
2023-08-03 20:09:40 +00:00
GabubuAvailable
e3844a9bf8 Modified the main page + added download page 2023-08-03 20:27:03 +03:00
4 changed files with 100 additions and 62 deletions

View File

@ -1,50 +0,0 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Varela+Round">
<link rel="stylesheet" href="index/style.css">
<title>LibreShop</title>
<link rel="icon" type="image/x-icon" href="head/logo_fav.png">
<meta content="LibreShop" property="og:title">
<meta content="LibreShop is an app that lets you download Homebrew apps onto your Wii." property="og:description">
<meta content="ADD THAT LATER - LINK EMBED" property="og:url">
<meta content="head/logo_embed.png" property="og:image">
<meta content="#2a7589" data-react-helmet="true" name="theme-color">
</head>
<header>
<img src="index/logo.png" style="height: 50px; padding-top: 15px; padding-left: 20px; padding-right: 20px;">
<a href="../index.html" style="margin-top: auto; margin-bottom: auto;">Home</a>
<a href="download.html" style="margin-top: auto; margin-bottom: auto;">Download</a>
<a href="" style="margin-top: auto; margin-bottom: auto;">Wiki</a>
<a href="" style="margin-top: auto; margin-bottom: auto;">About</a>
</header>
<body>
<div class="content" style="padding-left: 3%;">
<h1>Download page</h1>
<a href="" class="download" style="display: block; text-align: center; width: 230px;">Download the latest version</a>
<p>After downloading it is recommeded to check the MD5 hash!</p>
<p>The latest version's MD5 is:</p>
<code style="background-color: #163f55; padding: 2px; font-size: 15px;">1234567890123456789012345678901234567890</code>
</div>
</body>
<footer>
<div class="grid-footer">
<div class="footer-item1"><p>This is a homebrew project and it is not affiliated with Nintendo and all trademarks are the property of their respective owners. No copyright infringement intended.</p></div>
<div class="footer-item2">
<p style="text-align: right;"><span>&#169;</span> LibreShop - 2023</p>
<img src="footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 0px;">
</div>
</div>
</footer>
</html>

View File

@ -1,9 +1,10 @@
/* this whole funny thing is used on every .html page */
/* body, more like the background and font */
body {
margin: 0 auto;
font-family: "Varela Round", sans-serif;
background-color: #08171f;
background-image: url(libreshop_bg.png);
background-image: url(../index/libreshop_bg.png);
animation: background 30s infinite linear;
transition: 5s;
color: white;
@ -39,13 +40,13 @@ a:hover {
width: 95%;
}
/* the welcome message and randomizer */
/* the beginning part */
.item1 { grid-area: main; margin-top: 5px;}
.item2 { grid-area: right; margin-top: 5px;}
.grid-container {
display: grid;
grid-template-areas:
'main main main main right right';
'main right';
grid-template-columns: auto;
}
.grid-container > div {
@ -57,6 +58,10 @@ a:hover {
border: 2px solid #37b0d1;
border-radius: 5px;
color: white;
height: 200px;
width: 400px;
padding-left: 10px;
padding-right: 10px;
}
/* the features */
@ -65,14 +70,14 @@ a:hover {
display: flex;
margin: auto;
margin-top: 20px;
justify-content: center;
grid-template-areas:
'main main main main right right';
gap: 20px;
width: 94%;
gap: 10px;
grid-template-columns: auto;
}
.grid-features > div {
margin-bottom: auto;
margin-left: auto;
margin-right: auto;
padding: 10px 10px;
}
.grid-item01 {
@ -223,3 +228,23 @@ footer {
from {opacity: 0%;}
to {opacity: 100%;}
}
/* for download page */
code {
background-color: #163f55;
padding: 2px;
font-size: 15px;
}
.latestdownload {
background-color: #19505f;
display: block;
text-align: center;
width: 300px;
height: 50px;
border-radius: 5px;
border: 2px solid #37b0d1;
}
.latestdownload:hover {
background-color: #2b7c92;
color: white;
}

63
download/index.html Normal file
View File

@ -0,0 +1,63 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Varela+Round">
<link rel="stylesheet" href="../content/head/style.css">
<title>LibreShop</title>
<link rel="icon" type="image/x-icon" href="../content/head/logo_fav.png">
<meta content="LibreShop" property="og:title">
<meta content="LibreShop is an app that lets you download Homebrew apps onto your Wii." property="og:description">
<meta content="ADD THAT LATER - LINK EMBED" property="og:url">
<meta content="../content/head/logo_embed.png" property="og:image">
<meta content="#2a7589" data-react-helmet="true" name="theme-color">
</head>
<header>
<img src="../content/index/logo.png" style="height: 50px; padding-top: 15px; padding-left: 20px; padding-right: 20px;">
<a href="../" style="margin-top: auto; margin-bottom: auto;">Home</a>
<a href="download.html" style="margin-top: auto; margin-bottom: auto;">Download</a>
<a href="" style="margin-top: auto; margin-bottom: auto;">Wiki</a>
<a href="" style="margin-top: auto; margin-bottom: auto;">About</a>
</header>
<body>
<div class="content" style="padding-left: 3%;">
<div class="grid-container">
<div class="item1" style="animation: intro-01 2s;">
<h2>Download:</h2>
<a href="idk add download link" class="latestdownload" style="justify-content: center;"><img src="../content/head/logo_fav.png" style="vertical-align: middle; height: 50px;"><span style="vertical-align: middle;"> Download the latest version</span></a>
<h2 style="padding-top: 20px;">The file hashes</h2>
<p>It is recommended to verify the file you downloaded is not corrupt using the file hashes above.</p>
<p>MD5: <code>no latest version yet</code></p>
<p>SHA-1: <code>no latest version yet</code></p>
<p>SHA-256: <code>no latest version yet</code></p>
</div>
<div class="item2" style="animation: intro-01 2s;">
<h2>Changelog:</h2>
<div class="randomapp" style="height: 300px;">
<p>No latest version released yet...</p>
<p>This project is still under developement!</p>
</div>
</div>
</div>
</div>
</body>
<footer>
<div class="grid-footer">
<div class="footer-item1"><p>This is a homebrew project in which it is not affiliated with Nintendo and all trademarks are the property of their respective owners. No copyright infringement intended.</p></div>
<div class="footer-item2">
<p style="text-align: right;"><span>&#169;</span> LibreShop - 2023</p>
<img src="../content/footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="../content/footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="../content/footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="../content/footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="../content/footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="../content/footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="../content/footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="../content/footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="../content/footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
<img src="../content/footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">
</div>
</div>
</footer>
</html>

View File

@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Varela+Round">
<link rel="stylesheet" href="content/index/style.css">
<link rel="stylesheet" href="content/head/style.css">
<title>LibreShop</title>
<link rel="icon" type="image/x-icon" href="content/head/logo_fav.png">
<meta content="LibreShop" property="og:title">
@ -14,8 +14,8 @@
</head>
<header>
<img src="content/index/logo.png" style="height: 50px; padding-top: 15px; padding-left: 20px; padding-right: 20px;">
<a href="index.html" style="margin-top: auto; margin-bottom: auto;">Home</a>
<a href="content/download.html" style="margin-top: auto; margin-bottom: auto;">Download</a>
<a href="/" style="margin-top: auto; margin-bottom: auto;">Home</a>
<a href="download" style="margin-top: auto; margin-bottom: auto;">Download</a>
<a href="" style="margin-top: auto; margin-bottom: auto;">Wiki</a>
<a href="" style="margin-top: auto; margin-bottom: auto;">About</a>
</header>
@ -79,13 +79,13 @@
</div>
<div style="animation: intro-03 3s; margin-top: 50px;">
<h1 style="text-align: center;">Ready to try it out?</h1>
<a href="content/download.html" class="download" style="display: block; text-align: center; width: 200px; margin: auto;">Download LibreShop</a>
<a href="download" class="download" style="display: block; text-align: center; width: 200px; margin: auto;">Download LibreShop</a>
</div>
</div>
</body>
<footer>
<div class="grid-footer">
<div class="footer-item1"><p>This is a homebrew project and it is not affiliated with Nintendo and all trademarks are the property of their respective owners. No copyright infringement intended.</p></div>
<div class="footer-item1"><p>This is a homebrew project in which it is not affiliated with Nintendo and all trademarks are the property of their respective owners. No copyright infringement intended.</p></div>
<div class="footer-item2">
<p style="text-align: right;"><span>&#169;</span> LibreShop - 2023</p>
<img src="content/footer/socialmedia/sc01.png" style="padding-left: 0px; padding-right: 5px;">