Skip to content

Commit

Permalink
v5.0.1 | discord.gg/gointerstellar
Browse files Browse the repository at this point in the history
  • Loading branch information
xbubbo authored Oct 8, 2023
1 parent e7571a4 commit 387e5d2
Show file tree
Hide file tree
Showing 13 changed files with 651 additions and 0 deletions.
103 changes: 103 additions & 0 deletions static/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 Error - Page not found</title>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WKJQ5QHQTJ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-WKJQ5QHQTJ');
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%;
font-family: 'Lato', sans-serif;
color: black;
}
body {
background-color: #f7f7f7;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
text-align: center;
background-color: #1E1E1E;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
}
h1 {
font-size: 5rem;
margin-bottom: 2rem;
text-shadow: 0 2px 2px rgba(0,0,0,0.3);
color:white;
}
p {
font-size: 1.5rem;
margin-bottom: 2rem;
color: white;
}
.button-group {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 2rem;
}
button {
background-color: #333;
color: #fff;
border: none;
border-radius: 0.5rem;
font-size: 1.5rem;
padding: 1rem 2rem;
cursor: pointer;
box-shadow: 0 2px 4px rgba(0,0,0,0.3);
transition: all 0.3s ease-in-out;
}
button:hover {
background-color: #000;
transform: translateY(-2px);
}
button:active {
transform: translateY(0);
box-shadow: none;
}
@media screen and (max-width: 768px) {
h1 {
font-size: 3rem;
}
p {
font-size: 1rem;
}
button {
font-size: 1rem;
padding: 0.5rem 1rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<p>Oops! The page you're looking for doesn't exist.</p>
<div class="button-group">
<button onclick="location.href='/';">Go back home</button>
<button onclick="window.open('https://forms.gle/PmYG2crJGaYCiWmN9', '_blank');">Report this issue</button>
</div>
</div>
</body>
</html>
71 changes: 71 additions & 0 deletions static/apps.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" id="dynamic-favicon" href="favicon.png">
<title id="dynamic-title">Classes</title>
<script src="scripts/index.js"></script>
<script src="./h/mathematics.js"></script>
<script src="./h/geography.js"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Space.com is your source for the latest astronomy news and space discoveries, live coverage of space flights and the science of space travel.">
<meta name="keywords" content="Computer Science, Technology, Photography, Nature, Tech Support, Tech Help, Local Tech Support">
<link rel="canonical" href="https://www.space.com/news">
<!-- Site Stylesheets -->
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/css/nav.css">
<link rel="stylesheet" href="/css/card.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<!-- Main Site Scripts -->
<script src="/scripts/index.js"></script>
<script src="https://kit.fontawesome.com/1237c86ba0.js" crossorigin="anonymous"></script>
<script src="/scripts/algebra-helper.js"></script>
<script src="/scripts/main.js"></script>
</head>
<body>
<!-- Nav Bar Start-->
<div class="fixed-nav-bar">
<a class="logo" href="/./"><img id="INImg" src="main.png"></a>
<div class="fixed-nav-bar-right">
<a class="navbar-link" href="/./algebra"><i class="fa-solid fa-gamepad navbar-icon"></i>Games</a>
<a class="navbar-link" href="/./news"><span class="material-symbols-outlined weird-icon">apps</span>Apps</a>
<a class="navbar-link" href="/./tabs"><i class="fa-solid fa-table navbar-icon"></i>Tabs</a>
<a class="navbar-link" href="/./settings"><i class="fa-solid fa-gear navbar-icon settings-icon"></i>Settings</a>
</div></div></div></div>
<!-- Nav Bar End-->
<div class="input-container">
<input type="text" id="searchbarbottom" onkeyup="search_game()" placeholder="Search">
<select id="category" name="category" onchange="showImages()">
<option value="all">All</option>
<option value="social">Social</option>
<option value="stream">Streaming</option>
<option value="message">Messaging</option>
<option value="game">Game Sites</option>
<option value="cloud">Cloud Gaming</option>
<option value="tool">Tools</option>
<option value="media">Media</option>
<option value="AI">AI</option>
</select>
</div>
<div class="pinned-apps">
</div>
<div class="container-apps">
</div>
</div>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WKJQ5QHQTJ"></script>
<script>
window.dataLayer = window.dataLayer || [];

function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-WKJQ5QHQTJ');
</script>
<script src="/scripts/main.js"></script>
<script src="/scripts/main.js"></script>
<script src="/scripts/customIcon.js"></script>
</body>
</html>
Binary file added static/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 68 additions & 0 deletions static/games.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="shortcut icon" id="dynamic-favicon" href="favicon.png">
<title id="dynamic-title">Classes</title>
<script src="scripts/index.js"></script>
<script src="./h/mathematics.js"></script>
<script src="./h/geography.js"></script>
<!-- Meta Tags -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Moon's formation: Scientists say a giant impact blasted the raw material for the moon off the primitive molten Earth and into orbit, forming the moon.">
<meta name="keywords" content="Computer Science, Technology, Photography, Nature, Tech Support, Tech Help, Local Tech Support">
<link rel="canonical" href="https://www.space.com/topics/moon">
<!-- Site Stylesheets -->
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/css/nav.css">
<link rel="stylesheet" href="/css/card.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<!-- Main Site Scripts -->
<script src="/scripts/index.js"></script>
<script src="/scripts/index.js"></script>
<script src="https://kit.fontawesome.com/1237c86ba0.js" crossorigin="anonymous"></script>
<script src="/scripts/calculator.js"> </script>
</head>
<body>
<!-- Nav Bar Start-->
<div class="fixed-nav-bar">
<a class="logo" href="/./"><img id="INImg" src="main.png"></a>
<div class="fixed-nav-bar-right">
<a class="navbar-link" href="/./algebra"><i class="fa-solid fa-gamepad navbar-icon"></i>Games</a>
<a class="navbar-link" href="/./news"><span class="material-symbols-outlined weird-icon">apps</span>Apps</a>
<a class="navbar-link" href="/./tabs"><i class="fa-solid fa-table navbar-icon"></i>Tabs</a>
<a class="navbar-link" href="/./settings"><i class="fa-solid fa-gear navbar-icon settings-icon"></i>Settings</a>
</div></div></div></div>
<!-- Nav Bar End-->
<div class="input-container">
<input type="text" id="searchbarbottom" onkeyup="search_game()" placeholder="Search">
<select id="category" name="category" onchange="showImages()">
<option value="all">All Games</option>
<option value="2P">Multiplayer Games</option>
<option value="sports">Sports Games</option>
<option value="flash">Flash Games</option>
<option value="emu">Emulator Games</option>
</select>
</div>
<div class="pinned-apps">
</div>
<div class="container-apps">
</div>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WKJQ5QHQTJ"></script>
<script>
window.dataLayer = window.dataLayer || [];

function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-WKJQ5QHQTJ');
</script>
<script src="/scripts/main.js"></script>
<script src="/scripts/main.js"></script>
<script src="/scripts/settings.js"></script>
<script src="/scripts/customIcon.js"></script>
</body>
</html>
86 changes: 86 additions & 0 deletions static/go.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
<html lang="en">
<head>
<link rel="shortcut icon" id="dynamic-favicon" href="favicon.png">
<title id="dynamic-title">Classes</title>
<script src="https://kit.fontawesome.com/1237c86ba0.js" crossorigin="anonymous"></script>
<!--- Style --->
<style>
body {
margin: 0;
}

iframe {
display: block;
background: #000;
border: none;
height: 100vh;
width: 100vw;
}
.navbtn {
float:right;
border-radius: 100%;
width:50px;
height:50px;
background-color: rgba(255,255,255, 0.2);
border:none;
position: fixed;
top:10px;
right: 10px;
}
.navbtn1 {
float:right;
border-radius: 100%;
width:50px;
height:50px;
background-color: rgba(255,255,255, 0.2);
border:none;
position: fixed;
top:70px;
right: 10px;
}
.navbtn2 {
float:right;
border-radius: 100%;
width:50px;
height:50px;
background-color: rgba(255,255,255, 0.2);
border:none;
position: fixed;
top:130px;
right: 10px;
}
</style>
</head>
<body>
<iframe src="" id="iframeId" style="bottom: 0" style="border: 0px #ffffff none" name="Iframe" scrolling="yes" frameborder="0" marginheight="0px" marginwidth="0px" height="100%" width="100%" allowfullscreen></iframe>

<button onclick="reload()" class="navbtn"> <i class="fa-solid fa-rotate-right"></i> </button>
<button id="home-page" class="navbtn1" onclick="reload()"> <i class="fa-solid fa-house"></i> </button>
<button id="fullscreen-button" class="navbtn2"><i class="fa-solid fa-expand"></i></button>

<script>
function reload() {
document.getElementById("iframeId").src=document.getElementById("iframeId").src;
}
const fullscreenButton = document.getElementById("fullscreen-button");
fullscreenButton.addEventListener("click", function () {
if (!document.fullscreenElement) {
document.documentElement.requestFullscreen();
} else {
document.exitFullscreen();
}
});
const homeButton = document.getElementById("home-page");
homeButton.addEventListener("click", function () {
window.location.href = "./";
});
window.onload = function() {
let encodedUrl = sessionStorage.getItem("encodedUrl");
encodedUrl = "/astronomy/" + encodedUrl;
console.log(encodedUrl);
document.querySelector("#iframeid").src = encodedUrl;
};
</script>
<script src="/scripts/main.js"></script>
<script src="/scripts/customIcon.js"></script>
</body>
59 changes: 59 additions & 0 deletions static/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<!DOCTYPE html>
<head>
<script src="/scripts/home.js"></script>
<!-- Site Data-->
<link rel="shortcut icon" id="dynamic-favicon" href="favicon.png">
<title id="dynamic-title">Classes</title>
<!-- Meta Data-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="keywords" content="Computer Science, Technology, Photography, Nature, Tech Support, Tech Help, Local Tech Support">
<!-- Site Stylesheets-->
<link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/css/nav.css">
<link rel="stylesheet" href="/css/home.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<!-- Main Site Scripts-->
<script src="https://kit.fontawesome.com/1237c86ba0.js" crossorigin="anonymous"></script>
</head>
<body>
<!-- Nav Bar Start-->
<div class="fixed-nav-bar">
<a class="logo" href="/./"><img id="INImg" src="main.png"></a>
<div class="fixed-nav-bar-right">
<a class="navbar-link" href="/./algebra"><i class="fa-solid fa-gamepad navbar-icon"></i>Games</a>
<a class="navbar-link" href="/./news"><span class="material-symbols-outlined weird-icon">apps</span>Apps</a>
<a class="navbar-link" href="/./tabs"><i class="fa-solid fa-table navbar-icon"></i>Tabs</a>
<a class="navbar-link" href="/./settings"><i class="fa-solid fa-gear navbar-icon settings-icon"></i>Settings</a>
</div></div></div></div>
<!-- Nav Bar End-->
<div id="particles-js">
<script rel="preload" src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<div class="main">
<h2 class="title">Interstellar</h2>
<form method="POST">
<input class="searchbar" tag="searchbar" id="searchbar" placeholder="Search the web freely" />
</form>
</div>
</div>
<script src="scripts/index.js"></script>
<script src="./h/mathematics.js"></script>
<script src="./h/geography.js"></script>
<script src="https://kit.fontawesome.com/1237c86ba0.js" crossorigin="anonymous"></script>
</div>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WKJQ5QHQTJ"></script>
<script>
window.dataLayer = window.dataLayer || [];

function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-WKJQ5QHQTJ');
</script>
<script src="/scripts/customIcon.js"></script>
<script src="/scripts/main.js"></script>
<script src="/scripts/settings.js"></script>
<script src="/scripts/main.js"></script>
</body>
Binary file added static/legacyV4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 387e5d2

Please sign in to comment.