mpercivalxyz

this website!
Log | Files | Refs | README

commit a6d63d82d340541144fe0e9a5136f29da8fc0d9e
parent 62d85d9dc3d85a2d7d978d916e21e22ec867d875
Author: mpizzzle <m@michaelpercival.xyz>
Date:   Thu,  2 Jul 2020 14:19:55 +0100

more html/ css tinkering. need to fix git site css again...

Diffstat:
M2020.html | 4++++
Mblog.html | 4++++
Mblog/a-fourth-test-post.html | 6+++---
Mblog/a-third-test-post.html | 6+++---
Mblog/another-test-post.html | 6+++---
Mblog/test-blog-post.html | 2++
Mindex.html | 8+++++++-
Mstyle.css | 11++++++-----
8 files changed, 32 insertions(+), 15 deletions(-)

diff --git a/2020.html b/2020.html @@ -5,6 +5,8 @@ <link href="style.css" rel="stylesheet"> <link rel="icon" type="image/png" href="rss.png"/ > </head> +<body> +<div class="main"> <!-- LB --> <div class='entry'> @@ -31,3 +33,5 @@ Need multiple test blog posts for the blog.html page. This is a test blog post! <small>mar, 30 jun 2020 13:27:16 +0100</small> </div> +</div> +</body> diff --git a/blog.html b/blog.html @@ -5,9 +5,13 @@ <link href="style.css" rel="stylesheet"> <link rel="icon" type="image/png" href="rss.png"/ > </head> +<body> +<div class="main"> <!-- LB --> <li>2020 jun 30 &ndash; <a href="blog/a-fourth-test-post.html">a fourth test post</a></li> <li>2020 Jun 30 &ndash; <a href="blog/a-third-test-post.html">A third test post.</a></li> <li>2020 Jun 30 &ndash; <a href="blog/another-test-post.html">Another Test Post!!</a></li> <li>2020 jun 30 &ndash; <a href="blog/test-blog-post.html">Test blog post</a></li> +</div> +</body> diff --git a/blog/a-fourth-test-post.html b/blog/a-fourth-test-post.html @@ -5,10 +5,11 @@ <meta charset='utf-8'/> </head> <body> +<div class="main"> <h1>a fourth test post</h1> <small>[<a href='../2020.html#a-fourth-test-post'>link</a>&mdash;<a href='a-fourth-test-post.html'>standalone</a>]</small> I have my rss feed working, I want to see if this post will generate everything correctly <footer>by <strong><a href='https://michaelpercival.xyz/'>Michael Percival</a></strong></footer> </body> - -</html>- No newline at end of file +</div> +</html> diff --git a/blog/a-third-test-post.html b/blog/a-third-test-post.html @@ -5,10 +5,11 @@ <meta charset='utf-8'/> </head> <body> +<div class="main"> <h1>A third test post.</h1> <small>[<a href='../2020.html#a-third-test-post'>link</a>&mdash;<a href='a-third-test-post.html'>standalone</a>]</small> test to see if rss feed generates correctly. <footer>by <strong><a href='https://michaelpercival.xyz/'>Michael Percival</a></strong></footer> </body> - -</html>- No newline at end of file +</div> +</html> diff --git a/blog/another-test-post.html b/blog/another-test-post.html @@ -5,10 +5,11 @@ <meta charset='utf-8'/> </head> <body> +<div class="main"> <h1>Another Test Post!!</h1> <small>[<a href='../2020.html#another-test-post'>link</a>&mdash;<a href='another-test-post.html'>standalone</a>]</small> Need multiple test blog posts for the blog.html page. <footer>by <strong><a href='https://michaelpercival.xyz/'>Michael Percival</a></strong></footer> </body> - -</html>- No newline at end of file +</div> +</html> diff --git a/blog/test-blog-post.html b/blog/test-blog-post.html @@ -5,10 +5,12 @@ <meta charset='utf-8'/> </head> <body> +<div class="main"> <h1>Test blog post</h1> <small>[<a href='../2020.html#test-blog-post'>link</a>&mdash;<a href='test-blog-post.html'>standalone</a>]</small> This is a test blog post! <footer>by <strong><a href='https://michaelpercival.xyz/'>Michael Percival</a></strong></footer> +</div> </body> </html> diff --git a/index.html b/index.html @@ -16,7 +16,13 @@ <p><a href="https://git.michaelpercival.xyz"><img src="git.png" alt="" width="32" height="32" /></a> | <a href="https://github.com/mpizzzle"><img src="github.png" alt="" width="32" height="32" /></a> | <a href="rss.xml"><img src="rss.png" alt="" width="32" height="32" /></a></p> </div> <div class="nav-element"> - <p>thoughts | software | hardware | library | vinyl</p> + <p><a href="index.html">home</a> | + <a href="2020.html">thoughts</a> | + <a href="https://michaelpercival.xyz">software</a> | + <a href="https://michaelpercival.xyz">hardware</a> | + <a href="https://michaelpercival.xyz">library</a> | + <a href="https://michaelpercival.xyz">vinyl</a></p> + </div> <div class="nav-element"> <p><a href="mailto:m@michaelpercival.xyz">m@michaelpercival.xyz</a> | <a href="gpg.html"><img src="gnupg.png" alt="" width="32" height="32" /></a></p> diff --git a/style.css b/style.css @@ -1,7 +1,8 @@ body { - color: dodgerblue; + color: #F8F8F2; background-color: #111111; font-family: monospace; + font-size: 1.25em; margin: 0em; } @@ -66,20 +67,20 @@ a { } a:link { - color: magenta; + color: dodgerblue; } a:visited { - color: darkmagenta; + color: dodgerblue; } a:hover { - color: green; + color: magenta; text-decoration: underline; } a:active { - color: green; + color: magenta; text-decoration: underline; }