2
0
mirror of https://github.com/offen/website.git synced 2024-11-22 17:10:29 +01:00

Merge pull request #220 from offen/development

Fix font css
This commit is contained in:
Hendrik Niefeld 2023-07-14 12:23:20 +02:00 committed by GitHub
commit 40f8b0c837
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -2,5 +2,5 @@ pelican==4.5.4
markdown==3.1.1 markdown==3.1.1
git+https://github.com/miracle2k/webassets#d1f3455e383446ca4ab0c644f326ee937e68e809 git+https://github.com/miracle2k/webassets#d1f3455e383446ca4ab0c644f326ee937e68e809
pelican-decorate-content==0.1.1 pelican-decorate-content==0.1.1
markdown-link-attr-modifier==0.2.0 markdown-link-attr-modifier==0.2.1
markupsafe==2.0.1 markupsafe==2.0.1

View File

@ -4,8 +4,8 @@
font-display: block; font-display: block;
font-style: normal; font-style: normal;
font-weight: 400; font-weight: 400;
src: local('Rubik'), local('Rubik-Regular'), src: local('Rubik'), local('Rubik-Regular');
url('../fonts/rubik-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */ src: url('../fonts/rubik-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
url('../fonts/rubik-v9-latin-regular.woff') format('woff'), /* Modern Browsers */ url('../fonts/rubik-v9-latin-regular.woff') format('woff'), /* Modern Browsers */
url('../fonts/rubik-v9-latin-regular.ttf') format('truetype'); /* Safari, Android, iOS */ url('../fonts/rubik-v9-latin-regular.ttf') format('truetype'); /* Safari, Android, iOS */
} }
@ -15,11 +15,11 @@
font-display: block; font-display: block;
font-style: normal; font-style: normal;
font-weight: 700; font-weight: 700;
src: local('Rubik Bold'), local('Rubik-Bold'), src: local('Rubik Bold'), local('Rubik-Bold');
url('../fonts/rubik-v9-latin-500.woff2') format('woff2'), /* Super Modern Browsers */ src: url('../fonts/rubik-v9-latin-500.woff2') format('woff2'), /* Super Modern Browsers */
url('../fonts/rubik-v9-latin-500.woff') format('woff'), /* Modern Browsers */ url('../fonts/rubik-v9-latin-500.woff') format('woff'), /* Modern Browsers */
url('../fonts/rubik-v9-latin-500.ttf') format('truetype'); /* Safari, Android, iOS */ url('../fonts/rubik-v9-latin-500.ttf') format('truetype'); /* Safari, Android, iOS */
} }
.rubik { .rubik {
font-family: Rubik, sans-serif; font-family: Rubik, sans-serif;
} }