Compare commits

...

2 commits

Author SHA1 Message Date
Ludger Sicking 26b6c3060c Korrektur
sonst liefert "hugo server" einen
Parser Fehler im toml.
... unmarshal
2024-10-15 12:48:37 +02:00
Ludger Sicking 12f38f285b etwas Styling: Font und Farbe 2024-10-15 12:47:02 +02:00
4 changed files with 52 additions and 1 deletions

Binary file not shown.

51
sb/assets/css/custom.css Normal file
View file

@ -0,0 +1,51 @@
@font-face {
font-family: 'Roboto Condensed';
src: url('RobotoCondensed-VariableFont_wght.ttf') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Roboto Condensed Italic';
src: url('RobotoCondensed-Italic-VariableFont_wght.ttf') format('truetype');
font-weight: normal;
font-style: italic;
}
body {
font-family: 'Roboto Condensed', sans-serif;
font-size: 18px;
line-height: 1.6;
word-break: break-word;
background: var(--theme);
}
:root {
--gap: 24px;
--content-gap: 20px;
--nav-width: 1024px;
--main-width: 720px;
--header-height: 60px;
--footer-height: 60px;
--radius: 8px;
--theme: rgb(255, 255, 255);
--entry: rgb(255, 255, 255);
--primary: #203a8f;
--secondary: #ffa500;
--tertiary: rgb(214, 214, 214);
--content: #333;
--code-block-bg: #771133;
--code-bg: #f0f8ff;
--border: #d3d3d3;
}
.dark {
--theme: rgb(29, 30, 32);
--entry: rgb(46, 46, 51);
--primary: rgb(218, 218, 219);
--secondary: rgb(155, 156, 157);
--tertiary: rgb(65, 66, 68);
--content: rgb(196, 196, 197);
--code-block-bg: rgb(46, 46, 51);
--code-bg: rgb(55, 56, 62);
--border: rgb(51, 51, 51);
}

View file

@ -1,5 +1,5 @@
+++
date = 2024-08-05T12:00:00-00:00'
date = '2024-08-05T12:00:00-00:00'
draft = false
title = 'Hello World!'
weight = 10