* changed default font to sans-serif

This commit is contained in:
Dominika Liberda 2021-07-01 16:04:26 +00:00
parent 1c7c1a5c38
commit c0370c8309
2 changed files with 4 additions and 1 deletions

View file

@ -2,7 +2,7 @@
declare -A strings_ declare -A strings_
echo "<a href='/'><img src='/img/bashtube.png'></a><br>" echo "<link rel='stylesheet' href='/css/style.css'><a href='/'><img src='/img/bashtube.png'></a><br>"
# TODO: move this to a *real* template # TODO: move this to a *real* template
# we'll need to figure out conditional templates first tho # we'll need to figure out conditional templates first tho

3
webroot/css/style.css Normal file
View file

@ -0,0 +1,3 @@
* {
font-family: sans-serif;
}