From 719bbb65c66021c44a62df96c33f0f63979c11b1 Mon Sep 17 00:00:00 2001 From: Adam T Carpenter Date: Sun, 2 Feb 2020 12:01:58 -0500 Subject: init --- src/sass/mystyles.scss | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/sass/mystyles.scss (limited to 'src/sass/mystyles.scss') diff --git a/src/sass/mystyles.scss b/src/sass/mystyles.scss new file mode 100644 index 0000000..f68a6a9 --- /dev/null +++ b/src/sass/mystyles.scss @@ -0,0 +1,37 @@ +@charset "utf-8"; + + +// Import Google Fonts +@import url('https://fonts.googleapis.com/css?family=Nunito:400,700'); + + +// Set brand colors +$pine-green: #01646d; +$midnight-green: #114b5f; +$eton-blue: #88d498; +$pastel-gray: #c6dabf; +$isabelline: #f7f4ea; + +// Update Bulma's global variables +$primary: $pine-green; +$link: $midnight-green; +// $info: $cyan +$success: $eton-blue; +// $warning: $yellow +// $danger: $red +// $dark: $grey-darker +// $text: $grey-dark +// $family-sans-serif: "Nunito", sans-serif; +$hr-background-color: $primary; + +$body-background-color: $isabelline; + + +// Import only what you need from Bulma +@import "../../node_modules/bulma/sass/utilities/_all.sass"; +@import "../../node_modules/bulma/sass/base/_all.sass"; +@import "../../node_modules/bulma/sass/elements/_all.sass"; +@import "../../node_modules/bulma/sass/form/_all.sass"; +@import "../../node_modules/bulma/sass/components/_all.sass"; +@import "../../node_modules/bulma/sass/layout/_all.sass"; +@import "../../node_modules/bulma/sass/grid/_all.sass"; -- cgit v1.2.3