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

github.com/wlh320/hugo-theme-hulga.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/hulga-dark.scss')
-rw-r--r--assets/css/hulga-dark.scss40
1 files changed, 40 insertions, 0 deletions
diff --git a/assets/css/hulga-dark.scss b/assets/css/hulga-dark.scss
new file mode 100644
index 0000000..2594cfb
--- /dev/null
+++ b/assets/css/hulga-dark.scss
@@ -0,0 +1,40 @@
+// bulma customize
+@charset "utf-8";
+
+// Import a Google Font
+// @import url('https://fonts.googleapis.com/css?family=Nunito:400,700');
+
+// Set your brand colors
+// $archblue: #1793d0;
+
+{{ if .Site.Params.primaryColor }}
+$primary: {{ .Site.Params.primaryColor }};
+{{end}}
+
+// Import only what you need from Bulma
+
+@import "../sass/dark/variables";
+
+
+// should I override night link color to primary ?
+{{ if .Site.Params.primaryColor }}
+$link: $primary;
+$link-hover: lighten($link, 5);
+$link-focus: darken($link, 5);
+$link-active: darken($link, 5);
+$link-focus-border: $grey-light;
+$pagination-color: $link;
+$pagination-border-color: $border;
+{{end}}
+
+@import "./common.scss";
+
+@import "../sass/dark/overrides";
+
+// dark override
+.sidebar {
+ height: 100%;
+}
+.footer {
+ background: #282f2f;
+}