diff options
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 |