mirror of
https://github.com/ParkerTenBroeck/ParkerTenBroeck.github.io.git
synced 2026-06-06 21:14:06 -04:00
updated to zola 0.22, added theme to code blocks
This commit is contained in:
parent
5d0552c531
commit
9356e79e1a
11 changed files with 143 additions and 11 deletions
|
|
@ -5,5 +5,5 @@ footer {
|
|||
|
||||
border-top-style: solid;
|
||||
border-top-width: 4px;
|
||||
border-top-color: var(--grey);
|
||||
border-top-color: var(--grey-light);
|
||||
}
|
||||
|
|
@ -14,7 +14,7 @@ header {
|
|||
|
||||
text-decoration-color: var(--primary)!important;
|
||||
&:hover {
|
||||
text-decoration-color: var(--grey)!important;
|
||||
text-decoration-color: var(--grey-light)!important;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -4,6 +4,10 @@
|
|||
@use "blog.scss";
|
||||
@use "fonts.scss";
|
||||
|
||||
.z-code{
|
||||
overflow-x: auto;
|
||||
}
|
||||
|
||||
body {
|
||||
background: var(--bg-0);
|
||||
color: var(--fg-1);
|
||||
|
|
@ -33,7 +37,7 @@ a {
|
|||
|
||||
text-decoration: underline;
|
||||
text-decoration-thickness: 0.30ex;
|
||||
text-decoration-color: var(--grey);
|
||||
text-decoration-color: var(--grey-light);
|
||||
|
||||
&:hover {
|
||||
text-decoration-color: var(--primary);
|
||||
|
|
@ -77,7 +81,7 @@ h6 {
|
|||
}
|
||||
|
||||
code {
|
||||
background: var(--bg-1);
|
||||
background: var(--grey-dark);
|
||||
border-radius: 3px;
|
||||
font-family: 'Berkeley Mono';
|
||||
padding: .15rem .3rem;
|
||||
|
|
|
|||
|
|
@ -4,7 +4,8 @@
|
|||
--bg-0: #1d1d1d;
|
||||
--bg-1: #131313;
|
||||
|
||||
--grey: #777;
|
||||
--grey-light: #777;
|
||||
--grey-dark: #24292E;
|
||||
|
||||
--fg-0: #eee;
|
||||
--fg-1: #ccc;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue