mirror of
https://github.com/checktheroads/hyperglass
synced 2024-05-11 05:55:08 +00:00
36 lines
937 B
SCSS
36 lines
937 B
SCSS
@charset "utf-8";
|
|
|
|
/* Fonts */
|
|
@import url('{{ primary_font_url }}');
|
|
@import url('{{ mono_font_url }}');
|
|
|
|
$family-sans-serif: "{{ primary_font_name }}", sans-serif;
|
|
$family-monospace: "{{ mono_font_name }}", monospace;
|
|
|
|
/* Color Changes */
|
|
$body-background-color: {{ color_bg }};
|
|
$footer-background-color: transparent;
|
|
$danger: {{ color_danger }};
|
|
|
|
/* Custom Colors */
|
|
$lg-btn-submit: {{ color_btn_submit }};
|
|
$lg-tag-loctitle: {{ color_tag_loctitle }};
|
|
$lg-tag-cmdtitle: {{ color_tag_cmdtitle }};
|
|
$lg-tag-cmd: {{ color_tag_cmd }};
|
|
$lg-progressbar: {{ color_progressbar }};
|
|
$lg-tag-loc: {{ color_tag_loc }};
|
|
|
|
/* Element Changes */
|
|
$footer-padding: 3rem 1.5rem 3rem ;
|
|
|
|
/*! 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";
|
|
|
|
/* Looking Glass Imports */
|
|
@import "custom/custom_elements";
|