Adjust color scheme

rewrite
Ashelyn Dawn 1 year ago
parent ccc09ccbdc
commit 98e0c0d7ab

@ -9,7 +9,6 @@
<nav>
<a href="/">Home</a>
<a href="/about.html">About</a>
<a href="/changelog.html">Changelog</a>
<a href="/posts/">Posts</a>
</nav>
<h1>
@ -45,8 +44,8 @@
<p>
I am married to my lovely wife Em, and we have two kids together. I also
have recently started dating my amazing girlfriend
<a target="_blank" href="https://loveshock.xyz/">Amber</a>
have two other amazing partners, <a target="_blank" href="https://loveshock.xyz/">Amber</a>
and Irisha
</p>
<h3>Other Projects</h3>

@ -1,76 +0,0 @@
<!DOCTYPE html>
<html>
<head>
<title>Changelog</title>
<link rel="stylesheet" href="/resources/style.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="/about.html">About</a>
<a href="/changelog.html">Changelog</a>
<a href="/posts/">Posts</a>
</nav>
<h1>
Changelog
</h1>
<p>
Making notes about changes to the site as I go along
</p>
<p>
Because the <a href="/posts/">posts</a> section is chronological, this
will not include entries for those here. This page is just for organizational
or other changes.
</p>
<p>
If you'd like a more detailed list of changes (including code diffs),
you can find the repository for this site on
<a href="https://gitlab.com/tempest_dawn/neocities-site"
target="_blank">Gitlab</a>
</p>
<hr/>
<h3>July 29th, 2022</h3>
<p>
Added posts section and first post
</p>
<hr/>
<h3>June 7th, 2022</h3>
<p>
Moved to <a href="/">tempest.dev</a> to replace my dev blog, removed
dev blog link
</p>
<p>
Added changelog
</p>
<hr/>
<h3>June 2nd, 2022</h3>
<p>
Added about page + navigation
</p>
<hr/>
<h3>June 1st, 2022</h3>
<p>
Created site on Neocities
</p>
<hr/>
</body>
</html>

@ -4,12 +4,12 @@
<title>tempest.dev</title>
<link rel="stylesheet" href="/resources/style.css"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="me" href="https://social.treehouse.systems/@ashe"/>
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="/about.html">About</a>
<a href="/changelog.html">Changelog</a>
<a href="/posts/">Posts</a>
</nav>
<h1>

@ -9,7 +9,6 @@
<nav>
<a href="/">Home</a>
<a href="/about.html">About</a>
<a href="/changelog.html">Changelog</a>
</nav>
<h1>
Not Found

@ -9,7 +9,6 @@
<nav>
<a href="/">Home</a>
<a href="/about.html">About</a>
<a href="/changelog.html">Changelog</a>
<a href="/posts/">Posts</a>
</nav>
<h1>

@ -9,7 +9,6 @@
<nav>
<a href="/">Home</a>
<a href="/about.html">About</a>
<a href="/changelog.html">Changelog</a>
<a href="/posts/">Posts</a>
</nav>
<h1>

@ -9,7 +9,6 @@
<nav>
<a href="/">Home</a>
<a href="/about.html">About</a>
<a href="/changelog.html">Changelog</a>
<a href="/posts/">Posts</a>
</nav>
<h1>

@ -6,13 +6,13 @@ html, body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background: #191316;
background: #2b2235;
}
body {
min-height: 100vh;
background: #715a7f;
color: white;
background: #211e22;
color: rgba(255,255,255,.8);
max-width: 600px;
margin: 0 auto;
padding: 16px;
@ -36,6 +36,10 @@ nav > a:not(:last-child) {
margin-right: 40px;
}
h1 {
color: rgba(255,255,255,.9);
}
h1 > aside {
display: inline-block;
font-size: .5em;
@ -63,7 +67,7 @@ ul.posts {
ul.posts li span {
display: inline-block;
min-width: 80px;
min-width: 100px;
opacity: .5;
text-align: right;
margin-right: 10px;
@ -77,5 +81,5 @@ a {
a[href^="https:"],
a[href^="http:"],
a[href^="//"] {
color: #fdd7ff;
color: #caa5ff;
}

Loading…
Cancel
Save