diff --git a/hugo-server b/hugo-server index b0cc1a7..cc730ab 100755 --- a/hugo-server +++ b/hugo-server @@ -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 diff --git a/static/css/index.css b/static/css/index.css index 764653d..d26212a 100644 --- a/static/css/index.css +++ b/static/css/index.css @@ -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; } diff --git a/static/font/FreeMono.ttf b/static/font/FreeMono.ttf new file mode 100644 index 0000000..bdd48b0 Binary files /dev/null and b/static/font/FreeMono.ttf differ diff --git a/static/font/FreeMonoBold.ttf b/static/font/FreeMonoBold.ttf new file mode 100644 index 0000000..9017537 Binary files /dev/null and b/static/font/FreeMonoBold.ttf differ