diff options
author | Thomas Lange <code@nerdmind.de> | 2021-06-12 00:56:45 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-06-12 00:56:45 +0200 |
commit | 4c3fc4ab3f012afc48be15193595c6b945496288 (patch) | |
tree | fea14ef91b1ca51cfcc4979ffc1b110c32f67e37 /theme/default/rsrc/css/import/_fonts.scss | |
parent | 95c0ccd0958321056fb2d815c513c0b71c46f973 (diff) | |
download | blog-4c3fc4ab3f012afc48be15193595c6b945496288.tar.gz blog-4c3fc4ab3f012afc48be15193595c6b945496288.tar.xz blog-4c3fc4ab3f012afc48be15193595c6b945496288.zip |
Use SCSS for stylesheets
Diffstat (limited to 'theme/default/rsrc/css/import/_fonts.scss')
-rw-r--r-- | theme/default/rsrc/css/import/_fonts.scss | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/theme/default/rsrc/css/import/_fonts.scss b/theme/default/rsrc/css/import/_fonts.scss new file mode 100644 index 0000000..2477120 --- /dev/null +++ b/theme/default/rsrc/css/import/_fonts.scss @@ -0,0 +1,23 @@ +/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +# Font "Font Awesome" [4.7.0]: SIL Open Font License (OFL) +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ +@font-face { + font-family: "FontAwesome"; + font-weight: 400; + src: url("../font/font-awesome.woff2") format("woff2"); +} + +/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ +# Font "Ruda": SIL Open Font License (OFL) +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/ +@font-face { + font-family: "Ruda"; + font-weight: 400; + src: url("../font/ruda-n-400.woff2") format("woff2"); +} + +@font-face { + font-family: "Ruda"; + font-weight: 700; + src: url("../font/ruda-n-700.woff2") format("woff2"); +} |