Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marcanuy/simpleit-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorMarcelo Canina <me@marcanuy.com>2018-08-07 19:49:07 +0300
committerMarcelo Canina <me@marcanuy.com>2018-08-07 19:49:07 +0300
commit6d9947d0bcaccca5418b31f852ba80fc2b27d704 (patch)
treefc01d79c17e0d5450d856e89e8b5f687ee27163c /assets
parent21b582d5cd477ec9b52ec9007e8397fbee9205b1 (diff)
added fontawesome with makefile
Diffstat (limited to 'assets')
-rw-r--r--assets/sass/custom_variables.scss8
-rw-r--r--assets/sass/main.scss8
2 files changed, 14 insertions, 2 deletions
diff --git a/assets/sass/custom_variables.scss b/assets/sass/custom_variables.scss
index 3c9eacb..1ccc0d8 100644
--- a/assets/sass/custom_variables.scss
+++ b/assets/sass/custom_variables.scss
@@ -1,3 +1,11 @@
+/*
+ * Fontawesome
+ */
+$fa-font-path: "../vendor/webfonts";
+
+/*
+ * Bootstrap
+ */
$enable-shadows: true;
$enable-gradients: true;
diff --git a/assets/sass/main.scss b/assets/sass/main.scss
index 275f197..679155a 100644
--- a/assets/sass/main.scss
+++ b/assets/sass/main.scss
@@ -1,4 +1,8 @@
-/* @import "../../node_modules/bootstrap/scss/functions"; */
@import "custom_variables";
@import "../../node_modules/bootstrap/scss/bootstrap";
-@import "styles.scss"
+@import "styles.scss"; /*website styles*/
+@import "../../node_modules/@fortawesome/fontawesome-free/scss/fontawesome.scss";
+@import "../../node_modules/@fortawesome/fontawesome-free/scss/brands.scss";
+@import "../../node_modules/@fortawesome/fontawesome-free/scss/regular.scss";
+@import "../../node_modules/@fortawesome/fontawesome-free/scss/solid.scss";
+@import "../../node_modules/@fortawesome/fontawesome-free/scss/v4-shims.scss";