This commit is contained in:
yequari 2023-10-09 13:57:13 -07:00
parent 761804d83d
commit 791aa71db7
9 changed files with 19 additions and 11 deletions

View File

@ -3,7 +3,7 @@ languageCode: en-us
title: yequari.com title: yequari.com
theme: saturn theme: saturn
params: params:
about: "I'm yequari. I write code and sometimes blog posts." about: "I'm yequari. I write code and occasionally blog posts."
menu: menu:
main: main:
- name: HOME - name: HOME

BIN
static/icons/mail-fill.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 629 B

BIN
static/icons/mail-line.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 609 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 874 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 895 B

BIN
static/icons/rss-fill.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 788 B

BIN
static/images/avatar.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

View File

@ -3,7 +3,7 @@
<meta charset="utf-8"> <meta charset="utf-8">
<title>{{ .Page.Title }}</title> <title>{{ .Page.Title }}</title>
<link rel="preconnect" href="https://fonts.bunny.net"> <link rel="preconnect" href="https://fonts.bunny.net">
<link href="https://fonts.bunny.net/css?family=asar:400|bungee:400|nova-mono:400|krub:400|lalezar:400" rel="stylesheet" /> <link href="https://fonts.bunny.net/css?family=b612-mono:400|asar:400|bungee:400|nova-mono:400|krub:400|lalezar:400" rel="stylesheet" />
<link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/css/main.css">
<link rel="icon" type="image/png" href="/favicon.png"> <link rel="icon" type="image/png" href="/favicon.png">
<script src="/js/quotes.js"></script> <script src="/js/quotes.js"></script>

View File

@ -37,14 +37,14 @@
--cyan: #2aa198; --cyan: #2aa198;
--green: #859900; --green: #859900;
--main-bg: var(--base02); --main-bg: var(--jet);
--content-bg: var(--base03); --content-bg: var(--raisin-black);
--primary-text: var(--base0); --primary-text: var(--pewter-blue);
--secondary-text: var(--base01); --secondary-text: var(--base01);
--primary-link: var(--magenta); --primary-link: var(--chinese-red);
--primary-link-hover: var(--red); --primary-link-hover: var(--red);
--secondary-link: var(--blue); --secondary-link: var(--blue);
--ternary-link: var(--yellow); --ternary-link: var(--chinese-red);
} }
@font-face { @font-face {
@ -72,12 +72,16 @@ body::-webkit-scrollbar {
h1,h2,h3,h4,h5,h6 { h1,h2,h3,h4,h5,h6 {
color: var(--primary-text); color: var(--primary-text);
font-family: 'Lalezar', display; font-family: 'B216 Mono', monospace;
}
h1 {
font-size: 1.8rem;
} }
p { p {
height: fit-content; height: fit-content;
line-height: 1.5; line-height: 1.8;
} }
a:link, a:visited { a:link, a:visited {
@ -165,6 +169,10 @@ p#subtitle {
text-align: center; text-align: center;
} }
p.about {
padding: 15px;
}
span.social { span.social {
display: inline-block; display: inline-block;
width: 16px; width: 16px;
@ -205,7 +213,7 @@ nav li a {
transition-property: background-color; transition-property: background-color;
transition-duration: 0.5s; transition-duration: 0.5s;
transition-delay: 0.1s; transition-delay: 0.1s;
font-family: 'Nova Mono', monospace; font-family: 'B612 Mono', monospace;
font-weight: bold; font-weight: bold;
font-size: 0.9em; font-size: 0.9em;
} }
@ -217,7 +225,7 @@ nav li a:link, nav li a:visited {
main { main {
flex: 1; flex: 1;
display: flex; display: flex;
background-color: rgba(23,33,33,0.7); background-color: var(--content-bg);
padding: 0 150px; padding: 0 150px;
flex-flow: row wrap; flex-flow: row wrap;
/* gap: 20px; */ /* gap: 20px; */