diff options
author | jaseg <git@jaseg.de> | 2022-03-01 11:11:15 +0100 |
---|---|---|
committer | jaseg <git@jaseg.de> | 2022-03-01 11:11:15 +0100 |
commit | 7e86971cf714f3c00a1c91a397816663987f69fc (patch) | |
tree | fbf7c54d6b093113e70c745732bb0290b0a45118 /themes/blog.jaseg.de/static/css | |
parent | 072b2d38e254cfa662d4d9e994e624f612d1766e (diff) | |
download | blog-7e86971cf714f3c00a1c91a397816663987f69fc.tar.gz blog-7e86971cf714f3c00a1c91a397816663987f69fc.tar.bz2 blog-7e86971cf714f3c00a1c91a397816663987f69fc.zip |
Remove external resources
Diffstat (limited to 'themes/blog.jaseg.de/static/css')
-rw-r--r-- | themes/blog.jaseg.de/static/css/style.css | 3 | ||||
-rw-r--r-- | themes/blog.jaseg.de/static/css/webfonts.css | 18 |
2 files changed, 19 insertions, 2 deletions
diff --git a/themes/blog.jaseg.de/static/css/style.css b/themes/blog.jaseg.de/static/css/style.css index 47e5233..18e13f4 100644 --- a/themes/blog.jaseg.de/static/css/style.css +++ b/themes/blog.jaseg.de/static/css/style.css @@ -1,7 +1,6 @@ /* @import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400,700|Source+Serif+Pro'); */ /* @import url('https://fonts.googleapis.com/css?family=Fredoka+One|Source+Serif+Pro'); */ -@import url('https://fonts.googleapis.com/css?family=Baloo|Source+Serif+Pro'); -@import url('https://fonts.googleapis.com/css?family=Ubuntu+Mono'); +@import url('/css/webfonts.css'); body { max-width: 800px; diff --git a/themes/blog.jaseg.de/static/css/webfonts.css b/themes/blog.jaseg.de/static/css/webfonts.css new file mode 100644 index 0000000..e94d5e2 --- /dev/null +++ b/themes/blog.jaseg.de/static/css/webfonts.css @@ -0,0 +1,18 @@ +@font-face { + font-family: 'Baloo'; + font-style: normal; + font-weight: 400; + src: url(/fonts/baloo.ttf) format('truetype'); +} +@font-face { + font-family: 'Source Serif Pro'; + font-style: normal; + font-weight: 400; + src: url(/fonts/source-serif-pro.ttf) format('truetype'); +} +@font-face { + font-family: 'Ubuntu Mono'; + font-style: normal; + font-weight: 400; + src: url(/fonts/ubuntu-mono.ttf) format('truetype'); +} |