commit 4a8f1d3bd76a923dcb353ba585ba9b7626fe28a2 Author: Tempest Date: Wed Jun 1 23:17:13 2022 -0600 Initial neocities content diff --git a/index.html b/index.html new file mode 100644 index 0000000..09173fd --- /dev/null +++ b/index.html @@ -0,0 +1,61 @@ + + + + Ashe's Neo-Site + + + +

+ Hi, I'm Ashe + +

+ +

+ I am a professional web developer, usually making use of tools like + React, Webpack, Typescript, etc - the whole mess of "modern" web dev + stuff. +

+ +

+ This site is something different, a bit of an experiment in minimalism + for me. A chance to return to my roots of carefully crafting a website + by hand. +

+ +

+ As such, here are my rules for the site: +

+ + + +

+ I'm not ruling out JS or anything (making a delightful interactive + experience is still one of my favorite things to do), but I'm taking the + opportunity to step away from the tools I primarily use at work, and + practice my other skills. +

+ +

+ ~ + Ashe +

+ + diff --git a/not_found.html b/not_found.html new file mode 100644 index 0000000..b96fcf9 --- /dev/null +++ b/not_found.html @@ -0,0 +1,21 @@ + + + + Not Found + + + +

+ Not Found +

+ +

+ Sorry friend, you followed a link to something that doesn't exist. +

+ +

+ Feel free to start back over at my + Home page. +

+ + diff --git a/resources/signature.svg b/resources/signature.svg new file mode 100644 index 0000000..4d69a57 --- /dev/null +++ b/resources/signature.svg @@ -0,0 +1 @@ + diff --git a/resources/style.css b/resources/style.css new file mode 100644 index 0000000..c0266f4 --- /dev/null +++ b/resources/style.css @@ -0,0 +1,43 @@ +* { + box-sizing: border-box; +} + +html, body { + margin: 0; + padding: 0; + font-family: Arial, sans-serif; + background: #191316; +} + +body { + min-height: 100vh; + background: #715a7f; + color: white; + max-width: 600px; + margin: 0 auto; + padding: 16px; +} + +h1 > aside { + display: inline-block; + font-size: .5em; + font-weight: 100; + font-style: italic; + opacity: .6; + margin-left: 8px; +} + +ul > li:not(:last-child) { + margin-bottom: 8px; +} + +a { + color: white; + opacity: .8; +} + +a[href^="https:"], +a[href^="http:"], +a[href^="//"] { + color: #fdd7ff; +}