aboutsummaryrefslogtreecommitdiff
path: root/src_web/style/fonts/_font.scss
diff options
context:
space:
mode:
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;
+ }
+}