add standard font for readability

This commit is contained in:
Greg Gauthier 2023-01-28 15:33:53 +00:00
parent c84741b19e
commit 912bc83f8f
4 changed files with 21 additions and 3 deletions

View File

@ -7,7 +7,7 @@ if ! [ -z "$1" ]; then
hugo server -D --disableFastRender --enableGitInfo -v --debug > $LOG 2>&1 &
echo "Server started on $(pidof hugo)"
elif [[ "$1" == "stop" ]]; then
kill -9 $(pidof hugo)
kill -9 "$(pidof hugo)"
elif [[ "$1" == "status" ]]; then
pid=$(pidof hugo)
if ! [ -z "$pid" ]; then

View File

@ -71,6 +71,12 @@ HTML
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Atari Classic Extended';
src: url('../font/ATARCE__.TTF') format('truetype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'Atari Tiny';
src: url('../font/atari-small-font.ttf') format('truetype');
@ -101,6 +107,17 @@ HTML
font-weight: bold;
font-style: normal;
}
@font-face {
font-family: 'FreeMono';
src: url("../font/FreeMono.ttf") format('truetype');
font-style: normal;
}
@font-face {
font-family: 'FreeMono Bold';
src: url("../font/FreeMonoBold.ttf") format('truetype');
font-style: normal;
font-weight: bold;
}
body {
font-family: 'Atari Classic Chunky', serif;
@ -112,9 +129,10 @@ body {
}
p {
font-family: 'Atari Classic Extrasmooth', serif;
font-family: 'FreeMono Bold', serif;
line-height: 1.3;
font-size: 0.575em;
font-size: 0.675em;
font-weight: bold;
color: #f2f2f2;
}

BIN
static/font/FreeMono.ttf Normal file

Binary file not shown.

Binary file not shown.