add local font to css

This commit is contained in:
c 2022-02-02 10:20:43 +01:00
parent 58dd886bba
commit d59b6e0d5e
1 changed files with 6 additions and 1 deletions

View File

@ -1,11 +1,16 @@
@font-face {
font-family: 'Ubuntu Mono';
src: local(UbuntuMono-R.ttf);
}
* { * {
box-sizing: border-box; box-sizing: border-box;
} }
body { body {
font-family: 'Ubuntu Mono';
background-color: #151515; background-color: #151515;
color: #fc9032; color: #fc9032;
font-family: 'Ubuntu Mono', monospace;
} }
a:link { a:link {