1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00

36 lines
1.1 KiB
SCSS
Raw Normal View History

2019-05-07 23:21:41 -07:00
@charset "utf-8";
/* Fonts */
2019-06-10 12:22:38 -07:00
@import url('{{ branding["font"]["primary"]["url"] }}');
@import url('{{ branding["font"]["mono"]["url"] }}');
2019-05-07 23:21:41 -07:00
2019-06-10 12:22:38 -07:00
$family-sans-serif: "{{ branding["font"]["primary"]["name"] }}", sans-serif;
$family-monospace: "{{ branding["font"]["mono"]["name"] }}", monospace;
2019-05-07 23:21:41 -07:00
2019-05-14 11:37:52 -07:00
/* Color Changes */
2019-06-10 12:22:38 -07:00
$body-background-color: {{ branding["color"]["background"] }};
$footer-background-color: transparent;
2019-06-10 12:22:38 -07:00
$danger: {{ branding["color"]["danger"] }};
2019-05-14 11:37:52 -07:00
2019-05-07 23:21:41 -07:00
/* Custom Colors */
2019-06-10 12:22:38 -07:00
$lg-btn-submit: {{ branding["color"]["button_submit"] }};
$lg-tag-loc_title: {{ branding["color"]["tag"]["location_title"] }};
$lg-tag-type_title: {{ branding["color"]["tag"]["type_title"] }};
$lg-tag-type: {{ branding["color"]["tag"]["type"] }};
$lg-progressbar: {{ branding["color"]["progress_bar"] }};
$lg-tag-loc: {{ branding["color"]["tag"]["location"] }};
2019-05-07 23:21:41 -07:00
2019-05-14 11:37:52 -07:00
/* Element Changes */
$footer-padding: 3rem 1.5rem 3rem ;
2019-05-07 23:21:41 -07:00
/*! bulma.io v0.7.4 | MIT License | github.com/jgthms/bulma */
@import "utilities/_all";
@import "base/_all";
@import "elements/_all";
@import "components/_all";
@import "grid/_all";
@import "layout/_all";
2019-06-10 12:22:38 -07:00
/* Hyperglass Imports */
2019-05-07 23:21:41 -07:00
@import "custom/custom_elements";