diff options
author | Anton Schubert | 2020-12-24 14:16:06 +0100 |
---|---|---|
committer | Anton Schubert | 2020-12-24 14:16:06 +0100 |
commit | 8cc25c7ea7cec950634382fb1dc24c545693feb2 (patch) | |
tree | 90e00d9cbf80e3720b888c946bd393d19b5721f8 /configs/conferences/rc3/font.less | |
parent | c1897a7f6168741dd11d816089747ca4c581dd83 (diff) |
rC3: fix fonts, moar css
Diffstat (limited to '')
-rw-r--r-- | configs/conferences/rc3/font.less | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/configs/conferences/rc3/font.less b/configs/conferences/rc3/font.less new file mode 100644 index 0000000..1ad5ea5 --- /dev/null +++ b/configs/conferences/rc3/font.less @@ -0,0 +1,21 @@ +// font path mixin +.fontPath(@path, @filename){ + src: url('@{path}@{filename}.woff2') format('woff2'), + url('@{path}@{filename}.woff') format('woff'); +} + +@font-path: "fonts/"; + +@font-face { + font-family: "orbitron-bold"; + font-weight: 500; + font-style: normal; + .fontPath(@font-path, "orbitron-bold-webfont"); +} + +@font-face { + font-family: "Montserrat"; + font-weight: 400; + font-style: normal; + .fontPath(@font-path, "Montserrat-Regular"); +}
\ No newline at end of file |