aboutsummaryrefslogtreecommitdiff
path: root/src_web/style/fonts/_font.scss
diff options
context:
space:
mode:
authorbozokopic <bozo.kopic@gmail.com>2018-04-13 15:44:53 +0200
committerbozokopic <bozo.kopic@gmail.com>2018-04-13 15:44:53 +0200
commit5213332a30c375246f4a4847a085c1261a7be01d (patch)
treeec958c6a835fefafaefa3820ece4c37b2308ad28 /src_web/style/fonts/_font.scss
parent318d40be1796b91f0df2946598585717467912ee (diff)
web frontend
Diffstat (limited to 'src_web/style/fonts/_font.scss')
-rw-r--r--src_web/style/fonts/_font.scss9
1 files changed, 9 insertions, 0 deletions
diff --git a/src_web/style/fonts/_font.scss b/src_web/style/fonts/_font.scss
new file mode 100644
index 0000000..89b466c
--- /dev/null
+++ b/src_web/style/fonts/_font.scss
@@ -0,0 +1,9 @@
+
+@mixin font($variant, $type, $weight, $style) {
+ @font-face {
+ font-family: '#{$variant}';
+ src: url('../fonts/#{$variant}/#{$variant}-#{$type}.ttf') format('truetype');
+ font-weight: $weight;
+ font-style: $style;
+ }
+}