diff options
author | Bastien Wirtz <bastien.wirtz@gmail.com> | 2020-01-14 07:16:00 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-14 07:16:00 -0800 |
commit | 250c67dc159c96aace860df8428e1ddff90853b5 (patch) | |
tree | 381aca59770e576877719b661770860ef57d2576 /app.scss | |
parent | 56c69e0d6bd7265afec6cd66a4875ebf6357ea7d (diff) | |
parent | 45b49b30cf300e1c76501c808a63caa1aa501294 (diff) | |
download | homer-250c67dc159c96aace860df8428e1ddff90853b5.tar.gz homer-250c67dc159c96aace860df8428e1ddff90853b5.tar.zst homer-250c67dc159c96aace860df8428e1ddff90853b5.zip |
Merge pull request #11 from bastienwirtz/everything-offline
Adding full off network support.
Diffstat (limited to 'app.scss')
-rw-r--r-- | app.scss | 22 |
1 files changed, 21 insertions, 1 deletions
@@ -22,7 +22,27 @@ $theme-dark: ( | |||
22 | a-hover: #ffdd57 | 22 | a-hover: #ffdd57 |
23 | ); | 23 | ); |
24 | 24 | ||
25 | 25 | /* raleway-regular - latin */ | |
26 | @font-face { | ||
27 | font-family: 'Raleway'; | ||
28 | font-style: normal; | ||
29 | font-weight: 400; | ||
30 | font-display: swap; | ||
31 | src: local('Raleway'), local('Raleway-Regular'), | ||
32 | url('./webfonts/raleway/raleway-v14-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
33 | url('./webfonts/raleway/raleway-v14-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
34 | } | ||
35 | |||
36 | /* lato-regular - latin */ | ||
37 | @font-face { | ||
38 | font-family: 'Lato'; | ||
39 | font-style: normal; | ||
40 | font-weight: 400; | ||
41 | font-display: swap; | ||
42 | src: local('Lato Regular'), local('Lato-Regular'), | ||
43 | url('./webfonts/lato/lato-v16-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */ | ||
44 | url('./webfonts/lato/lato-v16-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */ | ||
45 | } | ||
26 | 46 | ||
27 | @mixin theme($theme) { | 47 | @mixin theme($theme) { |
28 | background-color: map-get($theme, "background"); | 48 | background-color: map-get($theme, "background"); |