Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
a049cc7
Merge pull request #3 from The-Shaman/test-stuff
DespicableGoose Oct 22, 2021
9f84adb
Merge pull request #4 from The-Shaman/test-stuff
DespicableGoose Oct 24, 2021
9942a26
Merge pull request #5 from The-Shaman/test-stuff
DespicableGoose Oct 24, 2021
8f62546
Merge pull request #6 from The-Shaman/test-stuff
DespicableGoose Nov 4, 2021
d466ec4
Merge pull request #7 from The-Shaman/test-stuff
DespicableGoose Nov 12, 2021
380f839
Merge pull request #8 from The-Shaman/test-stuff
DespicableGoose Jan 6, 2022
233f862
Merge pull request #9 from The-Shaman/test-stuff
DespicableGoose Jan 6, 2022
26420ca
Create index.html
DespicableGoose Feb 18, 2022
9d49790
Create index.html
DespicableGoose Feb 18, 2022
29e0c76
Update index.html
DespicableGoose Feb 19, 2022
98a9722
Update index.html
DespicableGoose Feb 19, 2022
b61603d
I was in the wrong place
DespicableGoose Feb 19, 2022
95350c8
Rename inventory.css to data-viewer/inventory.css
DespicableGoose Feb 19, 2022
1540de8
Delete auctions-viewer directory
DespicableGoose Feb 19, 2022
14c6098
Rename data-viewer/inventory.css to inventory.css
DespicableGoose Feb 19, 2022
fa81e40
Delete data-viewer directory
DespicableGoose Feb 19, 2022
1567c1d
Merge pull request #10 from The-Shaman/test-stuff
DespicableGoose Mar 31, 2022
d2b7045
Add files via upload
DespicableGoose Apr 4, 2022
d7478c0
Delete 68354378.ico
DespicableGoose Apr 4, 2022
f621eed
Merge pull request #11 from The-Shaman/test-stuff
DespicableGoose May 7, 2022
1ed6242
Update README.md
DespicableGoose May 9, 2024
98c27c0
Create calculate.js
DespicableGoose May 9, 2024
9a029e2
Update index.html
DespicableGoose May 9, 2024
70111c4
Create index.html
DespicableGoose May 9, 2024
e489dd7
Merge pull request #12 from TheTrueShaman/test-stuff
DespicableGoose May 9, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# HypixelAPI
I'm trying to make a Hypixel API website, just to test my skills in HTML, CSS, and JS. Practically just gonna be a worse version of sky.shiiyu.moe.
Just a bit of code dealing with the Hypixel API, hopefully providing some interesting results.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
padding: 14px 16px;
transition: 0.3s;
font-size: 17px;
width: 50%;
width: calc(100% / 3);
text-align: center;
}

Expand All @@ -50,6 +50,7 @@ <h1>Skyblock Data Viewer</h1>
<div class="tab" style="width: 100%; overflow: hidden;">
<button onclick="window.location.href='/HypixelAPI/profile-viewer'">Profile Viewer</button>
<button onclick="window.location.href='/HypixelAPI/auctions-viewer'">Auctions Viewer</button>
<button onclick="window.location.href='/HypixelAPI/price-finder'">Price Calculator</button>
</div>
</body>
</html>
1 change: 1 addition & 0 deletions price-finder/calculate.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
//https://moulberry.codes/lowestbin.json
47 changes: 47 additions & 0 deletions price-finder/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Skyblock Profile Viewer</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: Arial;
background: #8fafaf;
margin: 0;
}

.header {
padding: 20px;
text-align: center;
background: #3a3d3d;
color: white;
font-size: 20px;
margin: 0;
}

input:invalid {
border: 2px dashed black;
}

input:invalid:required {
border: 2px dashed red;
}

input:valid {
border: 2px solid black;
}
</style>
<link rel="shortcut icon" type="image/x-icon" href="../favicon.ico">
</head>
<body>
<script src="calculate.js"></script>

<div class="header">
<h1>Skyblock Price Calculator</h1>
</div>

<div id="main"></div>

</body>
</html>