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:
authorzilch40 <wlh233@live.com>2020-11-16 15:31:39 +0300
committerzilch40 <wlh233@live.com>2020-11-16 15:31:39 +0300
commit871470c4cd13a02e947680864574a84eae246cf0 (patch)
tree8414d26b020681fa0b05384c28bccc08d69e4e4b /assets/css
parent88fb497815279a64bbfe38e7cdd1676a2b683b77 (diff)
add PWA support && tweak some pages
Diffstat (limited to 'assets/css')
-rw-r--r--assets/css/common.scss10
-rw-r--r--assets/css/hulga-dark.scss11
2 files changed, 13 insertions, 8 deletions
diff --git a/assets/css/common.scss b/assets/css/common.scss
index 05e63b9..82ba77b 100644
--- a/assets/css/common.scss
+++ b/assets/css/common.scss
@@ -32,7 +32,9 @@
border-color: $primary;
color: $white;
}
-
+a {
+ color: $primary;
+}
/* fixed footer */
body {
display: flex;
@@ -49,9 +51,6 @@ body {
position: relative;
z-index: 1;
}
-a {
- color: $primary;
-}
/* link */
// u
@@ -101,6 +100,9 @@ a {
.post-meta {
opacity: 0.9;
}
+.counter-tag {
+ border-left: 1px solid $white;
+}
/* posts */
.post-box {
diff --git a/assets/css/hulga-dark.scss b/assets/css/hulga-dark.scss
index 2594cfb..9263319 100644
--- a/assets/css/hulga-dark.scss
+++ b/assets/css/hulga-dark.scss
@@ -8,7 +8,7 @@
// $archblue: #1793d0;
{{ if .Site.Params.primaryColor }}
-$primary: {{ .Site.Params.primaryColor }};
+$primary: lighten({{ .Site.Params.primaryColor }}, 5);
{{end}}
// Import only what you need from Bulma
@@ -32,9 +32,12 @@ $pagination-border-color: $border;
@import "../sass/dark/overrides";
// dark override
-.sidebar {
- height: 100%;
-}
.footer {
background: #282f2f;
}
+.counter-tag {
+ border-left: 1px solid #282f2f;
+}
+.tag:not(body) {
+ background-color: rgba($black-bis, 0.2);
+} \ No newline at end of file