More improvements

This commit is contained in:
~erin 2022-06-19 20:00:40 -04:00
parent 6daf5f434c
commit 71655345c2
No known key found for this signature in database
GPG Key ID: DA70E064A8C70F44
5 changed files with 22 additions and 20 deletions

View File

@ -8,7 +8,7 @@ posts:
# Page/Post options
syntax_highlight:
theme: "base16-ocean.dark"
theme: "base16-mocha.dark"
enabled: true
assets:
sass:

View File

@ -5,9 +5,9 @@
</head>
<body>
{% include "navigation.liquid" %}
<div class="center">
<div class="content">
{% include "navigation.liquid" %}
<div class="main">
<main>
{{ page.content }}
{% for post in collections.posts.pages %}
@ -26,8 +26,8 @@
</article>
{% endfor %}
</main>
</div>
</div>
</div>
{% include "footer.liquid" %}
</div>
</body>
</html>

View File

@ -1,5 +1,4 @@
html {
image-rendering: pixelated;
font-size: 1.1em;
font-family: 'Atkinson Hyperlegible', sans-serif;
color: $foreground-color;

View File

@ -14,12 +14,17 @@ a {
color: $accent-color;
}
code {
border-radius: 5px;
border: 1px solid #FAE3B0;
border-bottom: 3px solid #FAE3B0;
}
code, pre {
font-family: "Fira Code", monospace;
overflow: auto;
border-radius: 5px;
border-radius: 2px;
padding: 5px;
border-bottom: 2px solid #FAE3B0;
}
.date {
@ -52,7 +57,7 @@ p code {
blockquote {
margin-left: 5mm;
padding-left: 2mm;
color: #bac6e0; }
color: #4D4137; }
blockquote {
border-left: 4px solid #F28FAD; }
@ -76,7 +81,7 @@ blockquote blockquote blockquote blockquote blockquote blockquote blockquote {
border-left: 4px solid #DDB6F2; }
ul, ol {
color: #C3BAC6;
color: #4D4137;
}
::selection {

View File

@ -2,22 +2,20 @@ nav {
margin: 10px;
border-radius: 2px;
padding: 20px;
width: 200px;
background: $background-color;
ul {
list-style: none;
margin: auto;
padding: 5px;
display: grid;
grid-auto-flow: column;
padding: 10px;
font-size: 1.3em;
li {
font-weight: bold;
text-align: center;
padding: 0;
a {
text-decoration: none;
}
font-weight: bold;
text-align: center;
padding: 0;
a {
text-decoration: none;
}
}
}