diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-05-30 23:22:02 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-30 23:22:02 -0700 |
commit | 5fa6b6cfa6b3010279ead23088add5c5664e8ac0 (patch) | |
tree | 5f3ffa4dc62b4355d38346ef0155878ca6aeedcd /src/assets/webfonts/webfonts.scss | |
parent | ab7ac44c191e3b7dea696e76b74097e23f73b18c (diff) | |
parent | 9052ec59b75a37b4518ad39c493ee6c2d4198b98 (diff) | |
download | homer-5fa6b6cfa6b3010279ead23088add5c5664e8ac0.tar.gz homer-5fa6b6cfa6b3010279ead23088add5c5664e8ac0.tar.zst homer-5fa6b6cfa6b3010279ead23088add5c5664e8ac0.zip |
Merge pull request #62 from bastienwirtz/dev/build-system120405250
Build system integration using vue-cli.
Diffstat (limited to 'src/assets/webfonts/webfonts.scss')
-rw-r--r-- | src/assets/webfonts/webfonts.scss | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/src/assets/webfonts/webfonts.scss b/src/assets/webfonts/webfonts.scss new file mode 100644 index 0000000..df3b56b --- /dev/null +++ b/src/assets/webfonts/webfonts.scss | |||
@@ -0,0 +1,23 @@ | |||
1 | /* raleway-regular - latin */ | ||
2 | @font-face { | ||
3 | font-family: "Raleway"; | ||
4 | font-style: normal; | ||
5 | font-weight: 400; | ||
6 | font-display: swap; | ||
7 | src: local("Raleway"), local("Raleway-Regular"), | ||
8 | url("./webfonts/raleway/raleway-v14-latin-regular.woff2") format("woff2"), | ||
9 | /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
10 | url("./webfonts/raleway/raleway-v14-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
11 | } | ||
12 | |||
13 | /* lato-regular - latin */ | ||
14 | @font-face { | ||
15 | font-family: "Lato"; | ||
16 | font-style: normal; | ||
17 | font-weight: 400; | ||
18 | font-display: swap; | ||
19 | src: local("Lato Regular"), local("Lato-Regular"), | ||
20 | url("./webfonts/lato/lato-v16-latin-regular.woff2") format("woff2"), | ||
21 | /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
22 | url("./webfonts/lato/lato-v16-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
23 | } | ||