diff options
| author | tpart <10518520-tpart@users.noreply.gitlab.com> | 2023-01-15 12:38:42 +0100 | 
|---|---|---|
| committer | tpart <10518520-tpart@users.noreply.gitlab.com> | 2023-01-15 12:38:42 +0100 | 
| commit | 85abefbc5668d42c0d23735a4ce157ee8659c88b (patch) | |
| tree | 4208c3aa8fc1b0404b41c22cf730101ab23291a5 /server/src/frontend/style/layout.css | |
| parent | e3f1a8ac9f4c9a015e9eac769fb3262e3bd16bad (diff) | |
| download | jellything-85abefbc5668d42c0d23735a4ce157ee8659c88b.tar jellything-85abefbc5668d42c0d23735a4ce157ee8659c88b.tar.bz2 jellything-85abefbc5668d42c0d23735a4ce157ee8659c88b.tar.zst  | |
Use cantarell font
Diffstat (limited to 'server/src/frontend/style/layout.css')
| -rw-r--r-- | server/src/frontend/style/layout.css | 9 | 
1 files changed, 6 insertions, 3 deletions
diff --git a/server/src/frontend/style/layout.css b/server/src/frontend/style/layout.css index 4418903..0612a7e 100644 --- a/server/src/frontend/style/layout.css +++ b/server/src/frontend/style/layout.css @@ -1,8 +1,11 @@ -@import url("https://s.metamuffin.org/static/font-ubuntu/include.css"); +@font-face { +    font-family: 'Cantarell'; +    src: url(/assets/cantarell.woff2) format('woff2'); +}  * {      color: white; -    font-family: "Ubuntu", sans-serif; +    font-family: "Cantarell", sans-serif;      font-weight: 300;      margin: 0px;      padding: 0px; @@ -39,4 +42,4 @@ nav h1 {      padding: 1em;      color: rgb(255, 117, 117);      font-family: monospace; -} +}
\ No newline at end of file  |