diff options
author | Serghei Cebotari <51533848+schebotar@users.noreply.github.com> | 2023-11-24 09:52:47 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-24 09:52:47 +0300 |
commit | 6334d8b7c5cc1a74162c54fdb4fedaf873d2d4b1 (patch) | |
tree | e4d50cf194c98b31544ec5af15e78d77e8594546 | |
parent | 032aac16fd5e565f3834211fa297653419012c61 (diff) |
Update style.html
Fix font path
-rw-r--r-- | layouts/partials/head/style.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/layouts/partials/head/style.html b/layouts/partials/head/style.html index 51fdaef..76be20d 100644 --- a/layouts/partials/head/style.html +++ b/layouts/partials/head/style.html @@ -1,21 +1,21 @@ <style type="text/css"> @font-face { font-family: 'Computer Modern Serif'; - src: url('/font/cmunrm.woff') format('woff'),; + src: url('font/cmunrm.woff') format('woff'),; font-weight: normal; font-style: normal; } @font-face { font-family: 'Computer Modern Serif'; - src: url('/font/cmunbx.woff') format('woff'); + src: url('font/cmunbx.woff') format('woff'); font-weight: bold; font-style: normal; } @font-face { font-family: 'Computer Modern Serif'; - src: url('/font/cmunti.woff') format('woff'); + src: url('font/cmunti.woff') format('woff'); font-weight: normal; font-style: italic; } @@ -23,7 +23,7 @@ @font-face { font-family: 'Computer Modern Serif'; - src: url('/font/cmunbi.woff') format('woff'); + src: url('font/cmunbi.woff') format('woff'); font-weight: bold; font-style: italic; } @@ -95,4 +95,4 @@ box-shadow: 0 0 0; } } -</style>
\ No newline at end of file +</style> |