diff --git a/_layouts/post.html b/_layouts/post.html
index 1ec8dbf..bd82cf9 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -2,7 +2,8 @@
layout: default
---
-
{{ page.title }} <-
-{{ page.date | date_to_string }} - Shylie
+
+ {{ page.title }} - Shylie - {{ page.date | date_to_string }} - <-
+
-{{ content }}
\ No newline at end of file
+{{ content }}
diff --git a/_posts/2024-1-13-test-post.md b/_posts/2024-1-13-test-post.md
index 3f92f85..2999664 100644
--- a/_posts/2024-1-13-test-post.md
+++ b/_posts/2024-1-13-test-post.md
@@ -6,4 +6,8 @@ This is a test post.
# here is a heading
-Here is a link: [wow]()...
\ No newline at end of file
+Here is a link: [wow]()...
+
+
+some code? more likely than you think
+`code`
diff --git a/resources/style.css b/resources/style.css
index 1f88f2b..1ce0cdf 100644
--- a/resources/style.css
+++ b/resources/style.css
@@ -18,7 +18,7 @@ html {
margin: auto;
margin-top: 100px;
font-family: 'blockkie';
- font-size: 32px;
+ font-size: 36px;
background: #400;
color: #FB8;
text-shadow: 2px 2px #300;
@@ -32,7 +32,7 @@ body {
width: 65%;
}
-h1,.block {
+h1,code {
padding: 0.125em;
background: #600;
box-shadow: 4px 4px 0px 1px #300;
@@ -40,12 +40,18 @@ h1,.block {
text-shadow: 2px 2px #000;
}
-.block {
- font-family: 'proggy-tiny'
+code {
+ font-family: 'proggy-tiny';
+ top: -5px;
+ left: -2px;
+ margin-left: 2px;
+ margin-right: 6px;
+ position: relative;
}
-h1 {
+h1 {
text-shadow: 3.5px 3.5px #300;
+ font-size: 170%;
}
a {
@@ -53,7 +59,7 @@ a {
color: #600;
padding: 0.125em;
text-decoration: none;
- text-shadow: 0.5px 0.5px #000;
+ text-shadow: 1px 1px #000;
box-shadow: 4px 4px 0px 1px #300;
font-family: 'proggy-tiny';
top: -5px;
@@ -63,7 +69,7 @@ a {
position: relative;
}
-.block a {
+code a {
top: initial;
position: initial;
margin-left: initial;
@@ -78,4 +84,4 @@ h1 a {
a:hover {
background: #FF8;
color: #900;
-}
\ No newline at end of file
+}