nit: clean tabs, change ascii font to sans-serif

This commit is contained in:
Maciej Jur 2023-07-29 21:31:55 +02:00
parent 5a1d7f362c
commit 48deaa095b
Signed by: kamov
GPG key ID: 191CBFF5F72ECAFD
3 changed files with 20 additions and 7 deletions

View file

@ -3,7 +3,6 @@ import Intro from "@components/cards/Intro.astro";
import ContactCard from "../components/cards/Contact.astro"; import ContactCard from "../components/cards/Contact.astro";
import PhotoCard from "../components/cards/Photo.astro"; import PhotoCard from "../components/cards/Photo.astro";
import Base from "./Base.astro"; import Base from "./Base.astro";
import { Maybe } from "purify-ts";
--- ---
<Base title={"Home"}> <Base title={"Home"}>
@ -16,8 +15,9 @@ import { Maybe } from "purify-ts";
<Intro /> <Intro />
<!-- --> <!-- -->
<PhotoCard /> <PhotoCard />
<!-- --> <!-- -->
<ContactCard email="maciej@kamoshi.org" discord="kamov#2485" /> <ContactCard email="maciej@kamoshi.org" discord="kamov#2485" />
</aside> </aside>
</main> </main>
</Base> </Base>

View file

@ -30,7 +30,7 @@ I've been playing Hanafuda for a while now, so I decided to write a short introd
Thanks for visiting! :smile: Thanks for visiting! :smile:
<div style="display: flex; justify-content: center"> <div style="display: flex; justify-content: center">
<pre style="display: block; font-family: Helvetica; font-size: 0.5rem"> <pre style="display: block; font-family: sans-serif; font-size: 0.5rem">
             ,、              ,、
           /ハ\            /ハ\
          _/-─-iヘ- ..,,_           _/-─-iヘ- ..,,_

View file

@ -41,5 +41,18 @@
} }
body.dark { body.dark {
// todo dark mode --c-primary-d: hsl(240, 21%, 35%);
--c-primary: hsl(240, 21%, 45%);
--c-primary-l: hsl(240, 21%, 55%);
--c-secondary: hsl(2, 58%, 52%);
--c-white: hsl(0, 0%, 98%);
--c-purewhite: hsl(0, 0%, 100%);
--c-black: hsl(0, 0%, 7%);
--c-text: hsl(0, 0%, 13%);
--c-text-muted: hsl(0, 0%, 40%);
--c-footer-bg: hsl(0, 0%, 93%);
--c-footer-text: hsl(0, 0%, 35%);
--c-timeline-bg: hsl(0, 0%, 78%);
--c-shadow: 0deg 0% 76%;
--c-bg-main: hsl(0, 0%, 98%);
} }