From b841b2f5c889d9168e7c2535f36888e7267829d7 Mon Sep 17 00:00:00 2001 From: Jamal Jackson Date: Wed, 28 Sep 2016 15:35:39 -0400 Subject: [PATCH] added font sass file --- src/sass/fonts.scss | 140 ++++++++++++++++++++++++++++++++++++++++++++ src/sass/main.scss | 1 + 2 files changed, 141 insertions(+) create mode 100644 src/sass/fonts.scss diff --git a/src/sass/fonts.scss b/src/sass/fonts.scss new file mode 100644 index 000000000..7039ac3bf --- /dev/null +++ b/src/sass/fonts.scss @@ -0,0 +1,140 @@ +@font-face { + font-family: 'Roboto-Black'; + src: url('../roboto-font/roboto-black-webfont.woff2') format('woff2'), + url('roboto-black-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'Roboto-Black-Italic'; + src: url('../roboto-font/roboto-blackitalic-webfont.woff2') format('woff2'), + url('roboto-blackitalic-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'Roboto-Bold'; + src: url('../roboto-font/roboto-bold-webfont.woff2') format('woff2'), + url('roboto-bold-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'Roboto-Bold-Italic'; + src: url('../roboto-font/roboto-bolditalic-webfont.woff2') format('woff2'), + url('roboto-bolditalic-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'Roboto-Italic'; + src: url('../roboto-font/roboto-italic-webfont.woff2') format('woff2'), + url('roboto-italic-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'Roboto-Light'; + src: url('../roboto-font/roboto-light-webfont.woff2') format('woff2'), + url('roboto-light-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'Roboto-Light-Italic'; + src: url('../roboto-font/roboto-lightitalic-webfont.woff2') format('woff2'), + url('roboto-lightitalic-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'Roboto-Medium'; + src: url('../roboto-font/roboto-medium-webfont.woff2') format('woff2'), + url('roboto-medium-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'Roboto-Medium-Italic'; + src: url('../roboto-font/roboto-mediumitalic-webfont.woff2') format('woff2'), + url('roboto-mediumitalic-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'Roboto'; + src: url('../roboto-font/roboto-regular-webfont.woff2') format('woff2'), + url('roboto-regular-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'Roboto-Thin'; + src: url('../roboto-font/roboto-thin-webfont.woff2') format('woff2'), + url('roboto-thin-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} + + + + +@font-face { + font-family: 'Roboto-Thin-Italic'; + src: url('../roboto-font/roboto-thinitalic-webfont.woff2') format('woff2'), + url('roboto-thinitalic-webfont.woff') format('woff'); + font-weight: normal; + font-style: normal; + +} \ No newline at end of file diff --git a/src/sass/main.scss b/src/sass/main.scss index d5a17d289..273f70a83 100644 --- a/src/sass/main.scss +++ b/src/sass/main.scss @@ -983,6 +983,7 @@ input[type=number] { } } +@import "fonts"; @import "ionic"; @import "common"; @import "forms";