feature: further styled the rest of the static blog

This commit is contained in:
2026-02-01 17:41:06 -05:00
parent e17bf9c449
commit 0bb3367699
6 changed files with 406 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
@use 'fun'
@include fun.create_font("headerTitle", "Cronicle.ttf")
@include fun.create_font("postTitle", "Satanic_Demon.ttf")
@include fun.create_font("postMatter", "erika-pl.regular.ttf")
@include fun.create_font("postContent", "faustus.regular.ttf")
@include fun.create_font("postFirstChar", "goudy-initialen.regular.ttf")
@include fun.create_font("catTerm", "CaesarDressing.regular.ttf")
@include fun.create_font("navFont", "black-magnet.regular.otf")
@include fun.create_font("pageFont", "Almendra.regular.ttf")
@include fun.create_font("encryptedFont", "Drachenklaue.ttf")
@include fun.create_font("codeFont", "blockblueprint.medium.ttf")

View File

@@ -0,0 +1,4 @@
@mixin create_font($name, $font_basename)
@font-face
font-family: $name
src: url('fonts/' + $font_basename)

View File

@@ -0,0 +1,9 @@
@use 'sass:color' as brush
$white: #ffffff
$black: #000000
$bg: #121212
$accent: #9d1934
$fg: #cccccc
$state: #e9b074
$canvas: brush.adjust(brush.adjust($bg, $lightness: 1.5%), $red: 3%, $green: 1.75%)