aboutsummaryrefslogtreecommitdiffhomepage
path: root/app.scss
diff options
context:
space:
mode:
authorBastien Wirtz <bastien.wirtz@gmail.com>2020-01-12 21:45:37 -0800
committerBastien Wirtz <bastien.wirtz@gmail.com>2020-01-12 21:45:37 -0800
commitab76270ca917e62427461a7a7a2bf534ff78009d (patch)
tree7870e3634173a7837b3f082b46399eaba8abd28f /app.scss
parent2e7bedd13e0ce409e5bfa45095a9154463257870 (diff)
downloadhomer-ab76270ca917e62427461a7a7a2bf534ff78009d.tar.gz
homer-ab76270ca917e62427461a7a7a2bf534ff78009d.tar.zst
homer-ab76270ca917e62427461a7a7a2bf534ff78009d.zip
Adding full off network support.
Diffstat (limited to 'app.scss')
-rw-r--r--app.scss22
1 files changed, 21 insertions, 1 deletions
diff --git a/app.scss b/app.scss
index defd931..a687338 100644
--- a/app.scss
+++ b/app.scss
@@ -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");