Initial Release: SAVEXSTATE Vault V1 - Cyber Orange Edition

This commit is contained in:
Zach Groth
2026-03-28 22:53:48 -05:00
commit d2863d2ce8
203 changed files with 8249 additions and 0 deletions
+145
View File
@@ -0,0 +1,145 @@
<!DOCTYPE html><html><head>
<base href="$FLUTTER_BASE_HREF">
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="SAVEXSTATE: Exclusive Investor Access to the Sage Archive.">
<meta name="referrer" content="no-referrer-when-downgrade">
<!-- iOS meta tags & icons -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="SAVEXSTATE">
<link rel="apple-touch-icon" href="icons/Icon-192.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png">
<title>SAVEXSTATE: The Vault</title>
<link rel="manifest" href="manifest.json">
<style>
/* TERMINAL SYSTEM STYLING */
body {
background-color: #000000;
margin: 0;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
font-family: monospace;
}
#loading-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.main-logo {
width: 120px;
height: 120px;
margin-bottom: 20px;
/* Tints the logo to Terminal Green (#00FF00) */
filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(86deg) brightness(118%) contrast(119%);
animation: pulse 2s infinite ease-in-out;
}
.boot-text {
color: #e87d25;
font-size: 14px;
letter-spacing: 2px;
text-transform: uppercase;
opacity: 0.8;
}
@keyframes pulse {
0% { transform: scale(1); opacity: 0.6; }
50% { transform: scale(1.05); opacity: 1; }
100% { transform: scale(1); opacity: 0.6; }
}
</style>
<style id="splash-screen-style">
html {
height: 100%
}
body {
margin: 0;
min-height: 100%;
background-color: #000000;
background-size: 100% 100%;
}
.center {
margin: 0;
position: absolute;
top: 50%;
left: 50%;
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.contain {
display:block;
width:100%; height:100%;
object-fit: contain;
}
.stretch {
display:block;
width:100%; height:100%;
}
.cover {
display:block;
width:100%; height:100%;
object-fit: cover;
}
.bottom {
position: absolute;
bottom: 0;
left: 50%;
-ms-transform: translate(-50%, 0);
transform: translate(-50%, 0);
}
.bottomLeft {
position: absolute;
bottom: 0;
left: 0;
}
.bottomRight {
position: absolute;
bottom: 0;
right: 0;
}
</style>
<script id="splash-screen-script">
function removeSplashFromWeb() {
document.getElementById("splash")?.remove();
document.getElementById("splash-branding")?.remove();
document.body.style.background = "transparent";
}
</script>
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport">
</head>
<body>
<picture id="splash">
<source srcset="splash/img/light-1x.png 1x, splash/img/light-2x.png 2x, splash/img/light-3x.png 3x, splash/img/light-4x.png 4x" media="(prefers-color-scheme: light)">
<source srcset="splash/img/dark-1x.png 1x, splash/img/dark-2x.png 2x, splash/img/dark-3x.png 3x, splash/img/dark-4x.png 4x" media="(prefers-color-scheme: dark)">
<img class="center" aria-hidden="true" src="splash/img/light-1x.png" alt="">
</picture>
<!-- THIS SHOWS INSTANTLY -->
<div id="loading-container">
<img class="main-logo" src="icons/Icon-192.png" alt="SAVEXSTATE Logo">
<div class="boot-text">Initializing_System...</div>
</div>
<script src="flutter_bootstrap.js" async=""></script>
</body></html>