tweaks
This commit is contained in:
parent
761804d83d
commit
791aa71db7
|
@ -3,7 +3,7 @@ languageCode: en-us
|
|||
title: yequari.com
|
||||
theme: saturn
|
||||
params:
|
||||
about: "I'm yequari. I write code and sometimes blog posts."
|
||||
about: "I'm yequari. I write code and occasionally blog posts."
|
||||
menu:
|
||||
main:
|
||||
- name: HOME
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 629 B |
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 |
Binary file not shown.
After Width: | Height: | Size: 788 B |
Binary file not shown.
After Width: | Height: | Size: 160 KiB |
|
@ -3,7 +3,7 @@
|
|||
<meta charset="utf-8">
|
||||
<title>{{ .Page.Title }}</title>
|
||||
<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="icon" type="image/png" href="/favicon.png">
|
||||
<script src="/js/quotes.js"></script>
|
||||
|
|
|
@ -37,14 +37,14 @@
|
|||
--cyan: #2aa198;
|
||||
--green: #859900;
|
||||
|
||||
--main-bg: var(--base02);
|
||||
--content-bg: var(--base03);
|
||||
--primary-text: var(--base0);
|
||||
--main-bg: var(--jet);
|
||||
--content-bg: var(--raisin-black);
|
||||
--primary-text: var(--pewter-blue);
|
||||
--secondary-text: var(--base01);
|
||||
--primary-link: var(--magenta);
|
||||
--primary-link: var(--chinese-red);
|
||||
--primary-link-hover: var(--red);
|
||||
--secondary-link: var(--blue);
|
||||
--ternary-link: var(--yellow);
|
||||
--ternary-link: var(--chinese-red);
|
||||
}
|
||||
|
||||
@font-face {
|
||||
|
@ -72,12 +72,16 @@ body::-webkit-scrollbar {
|
|||
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
color: var(--primary-text);
|
||||
font-family: 'Lalezar', display;
|
||||
font-family: 'B216 Mono', monospace;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 1.8rem;
|
||||
}
|
||||
|
||||
p {
|
||||
height: fit-content;
|
||||
line-height: 1.5;
|
||||
line-height: 1.8;
|
||||
}
|
||||
|
||||
a:link, a:visited {
|
||||
|
@ -165,6 +169,10 @@ p#subtitle {
|
|||
text-align: center;
|
||||
}
|
||||
|
||||
p.about {
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
span.social {
|
||||
display: inline-block;
|
||||
width: 16px;
|
||||
|
@ -205,7 +213,7 @@ nav li a {
|
|||
transition-property: background-color;
|
||||
transition-duration: 0.5s;
|
||||
transition-delay: 0.1s;
|
||||
font-family: 'Nova Mono', monospace;
|
||||
font-family: 'B612 Mono', monospace;
|
||||
font-weight: bold;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
@ -217,7 +225,7 @@ nav li a:link, nav li a:visited {
|
|||
main {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
background-color: rgba(23,33,33,0.7);
|
||||
background-color: var(--content-bg);
|
||||
padding: 0 150px;
|
||||
flex-flow: row wrap;
|
||||
/* gap: 20px; */
|
||||
|
|
Loading…
Reference in New Issue