commit f9c99c8b6b13b86844cbe9bae5d4eefdb269620b
parent 02e67c9f083f4cfc81e86728af0a7a957175f7e2
Author: mpizzzle <m@michaelpercival.xyz>
Date: Mon, 29 Jun 2020 11:13:11 +0100
creation of style.css
Diffstat:
6 files changed, 49 insertions(+), 9 deletions(-)
diff --git a/2020.html b/2020.html
@@ -1,3 +1,10 @@
+<head>
+<title>Michael's Blog</title>
+<meta charset="utf-8">
+<meta name="author" content="mpizzzle">
+<link href="style.css" rel="stylesheet">
+</head>
+
<!-- LB -->
<div class='entry'>
<h2 id='my-biggest-shame'>My Biggest Shame</h2>
diff --git a/blog.html b/blog.html
@@ -1,2 +1,9 @@
+<head>
+<title>Michael's Blog Index</title>
+<meta charset="utf-8">
+<meta name="author" content="mpizzzle">
+<link href="style.css" rel="stylesheet">
+</head>
+
<!-- LB -->
<li>2020 jun 25 – <a href="blog/my-biggest-shame.html">My Biggest Shame</a></li>
diff --git a/cv.pdf b/cv.pdf
Binary files differ.
diff --git a/gpg.html b/gpg.html
@@ -9,13 +9,13 @@
<meta name="author" content="mpizzzle">
<title>Michael Percival's PGP Key</title>
<!-- Bootstrap Core CSS -->
- <link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.6/united/bootstrap.min.css" rel="stylesheet">
+ <link href="style.css" rel="stylesheet">
</head>
<body>
<pre>
pub rsa4096 2019-04-07 [SC] [expires: 2021-04-06]
FC3056FFB25B27F3E23C4714C9A24A99EB95BCAC
-uid [ultimate] Michael Percival <m@michaelpercival.xyz>
+uid [ultimate] Michael Percival <m@michaelpercival.xyz>
sub rsa4096 2019-04-07 [E] [expires: 2021-04-06]
-----BEGIN PGP PUBLIC KEY BLOCK-----
diff --git a/index.html b/index.html
@@ -2,14 +2,10 @@
<html lang="en">
<head>
+<title>Michael Percival's Home Page</title>
<meta charset="utf-8">
-<meta http-equiv="X-UA-Compatible" content="IE=edge">
-<meta name="viewport" content="width=device-width, initial-scale=1">
-<meta name="description" content="">
<meta name="author" content="mpizzzle">
-<title>Michael Percival's Home Page</title>
-<!-- Bootstrap Core CSS -->
-<!-- <link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.6/united/bootstrap.min.css" rel="stylesheet"> -->
+<link href="style.css" rel="stylesheet">
</head>
<body>
@@ -47,7 +43,7 @@
<ul>
<li>browse local git repositories <a href="https://git.michaelpercival.xyz">here</a>.</li>
<li>GitHub: <a href="https://github.com/mpizzzle">profile</a></li>
-<li>CV: <a href="cv.pdf">michael-percival-cv.pdf</a></li>
+<li>cv: <a href="cv.pdf">cv.pdf</a></li>
<li>email me at: <a href="gpg.html">m@michaelpercival.xyz</a></li>
</ul>
diff --git a/style.css b/style.css
@@ -0,0 +1,30 @@
+:root {
+ --color0: #282828;
+ --color1: #cc241d;
+ --color2: #98971a;
+ --color3: #d79921;
+ --color4: #458588;
+ --color5: #b16286;
+ --color6: #689d6a;
+ --color7: #a89984;
+ --color8: #928374;
+ --color9: #fb4934;
+ --color10: #b8bb26;
+ --color11: #fabd2f;
+ --color12: #83a598;
+ --color13: #d3869b;
+ --color14: #8ec07c;
+ --color15: #ebdbb2;
+ --color256: #1d2021;
+ --color257: #ebdbb2;
+}
+
+body {
+ font-family: "Ubuntu Mono";
+ max-width: 30em;
+ margin-left: auto;
+ margin-right: auto;
+ background: var(--color0);
+ color: var(--color2);
+ padding: 5em;
+}