diff --git a/favicon.json b/favicon.json new file mode 100644 index 0000000..7b77ccf --- /dev/null +++ b/favicon.json @@ -0,0 +1,5 @@ +{ + "favicon": [ + + ] +} \ No newline at end of file diff --git a/img/WORK.png b/img/WORK.png new file mode 100644 index 0000000..b84463d Binary files /dev/null and b/img/WORK.png differ diff --git a/img/bg.png b/img/bg.png new file mode 100644 index 0000000..af439c4 Binary files /dev/null and b/img/bg.png differ diff --git a/img/favicon/favicon.gif b/img/favicon/favicon.gif new file mode 100644 index 0000000..f18899a Binary files /dev/null and b/img/favicon/favicon.gif differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..48a602f --- /dev/null +++ b/index.html @@ -0,0 +1,27 @@ + + + + + IDeletedSystem64 - Home + + +
+ +

IDeletedSystem64

+
+
+
+ +

Neko

+
+

Hi there, I'm Sophie!

> + + + + + + + + +
+ \ No newline at end of file diff --git a/neocities.png b/neocities.png new file mode 100644 index 0000000..73e6030 Binary files /dev/null and b/neocities.png differ diff --git a/not_found.html b/not_found.html new file mode 100644 index 0000000..5c94fe2 --- /dev/null +++ b/not_found.html @@ -0,0 +1,13 @@ + + + + + + Not Found + + + +

Page Not Found

+

The requested page was not found.

+ + diff --git a/styles/stylemain.css b/styles/stylemain.css new file mode 100644 index 0000000..0c1d41b --- /dev/null +++ b/styles/stylemain.css @@ -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. */ + } +} \ No newline at end of file