Initial upload

This commit is contained in:
Sophie Mondz 2022-04-25 18:28:11 -05:00 committed by GitHub
parent 0af52342eb
commit d22db139c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 116 additions and 0 deletions

5
favicon.json Normal file
View file

@ -0,0 +1,5 @@
{
"favicon": [
]
}

BIN
img/WORK.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

BIN
img/bg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

BIN
img/favicon/favicon.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

27
index.html Normal file
View file

@ -0,0 +1,27 @@
<!DOCTYPE HTML>
<head>
<link rel="stylesheet" type="text/css" href="/styles/stylemain.css">
<link rel="icon" type="image/x-icon" href="img/favicon/favicon.gif">
<title>IDeletedSystem64 - Home</title>
</head>
<body>
<header>
<!-- Replace "Username" with your name, website name, or social username!-->
<h1 class=header>IDeletedSystem64</h1>
</header>
<div class="main">
<div class="neko">
<script>NekoType="white"</script>
<h1 id=nl><script src="https://webneko.net/n20171213.js"></script><a href="https://webneko.net">Neko</a></h1>
</div>
<p class="intro">Hi there, I'm Sophie!</p>>
<input type="button" onclick="location.href='https://en.pronouns.page/@IDeletedSystem64';" value="Pronouns.page">
<input type="button" onclick="location.href='https://twitter.com/IDeleteSystem64';" value="Twitter">
<input type="button" onclick="location.href='https://twitter.com/system64art';" value="Twitter (Art)">
<input type="button" onclick="location.href='https://glaceon.social/IDeletedSystem64';" value="glaceon.social">
<input type="button" onclick="location.href='https://reddit.com/u/IDeletedSystem64';" value="Reddit">
<input type="button" onclick="location.href='https://steamcommunity.com/id/system64_';" value="Steam">
<input type="button" onclick="location.href='https://open.spotify.com/user/w2kr77l67qtystmkuza8k2mcs';" value="Spotify">
</div>
</body>

BIN
neocities.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

13
not_found.html Normal file
View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Not Found</title>
<link href="/style.css" rel="stylesheet" type="text/css" media="all">
</head>
<body>
<h1>Page Not Found</h1>
<p>The requested page was not found.</p>
</body>
</html>

71
styles/stylemain.css Normal file
View file

@ -0,0 +1,71 @@
@import url('https://fonts.googleapis.com/css2?family=Bitter:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
/* Import Fonts */
header {
background: linear-gradient(#072CFF, #00137F );
position: absolute;
left: 0px;
top: 0px;
height: 40px;
width: 100%
}
h1.header {
padding: 32px;
font-family: 'Bitter', serif;
color: white;
display: inline;
}
p.intro {
font-family: 'Share Tech Mono', monospace;
color: white;
font-size: 3vw;
text-align: center;
}
div.main {
top: 10%;
right: 25%;
position: fixed;
margin: auto;
width: 50%;
padding: 5px;
border-radius: 30px;
}
body {
background-image: url("/img/bg.png");
}
input {
margin-left: auto;
margin-right: auto;
display: block;
min-width: 250px;
background: #dad9d9;
font-size: 170%;
font-family: 'Share Tech Mono', monospace;
box-shadow: inset -0.05em -0.05em black
}
input:active {
background: #acacac;
box-shadow: inset 0em 0em
}
/* I'm mad that I have to make this mobile-compatible, Lol. https://twitter.com/IDeleteSystem64/status/1512218098325147655?s=20&t=Hz4V-vxmywYwTMvuBbCAZQ */
@media only screen and (max-width: 980px) {
p.intro {
font-size: 10vw;
}
header {
height: 75px;
}
h1.header {
font-size: 60px;
padding-left: 25%;
}
input {
font-size: 7vw;
min-width: 110%;
max-width: 110%;
/* I lack the understanding as to why I have to set a mix/max, but its also nearly midnight as I'm writing this and I should probably go to bed. */
}
}