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

github.com/jesselau76/hugo-w3-simple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjesselau76 <jesselau76@gmail.com>2018-11-24 01:38:01 +0300
committerjesselau76 <jesselau76@gmail.com>2018-11-24 01:38:01 +0300
commit7e83a82fba975b8a9daf79cd6c86572c0ffcd26f (patch)
treefcb1a53c3d55f1e8805dfb5cacece5783f70a895
parent45a7dc528ba7945ad29eeccf0a6c1f3ac3e36d9a (diff)
abslangurl to rellangurl
-rw-r--r--layouts/partials/header.html2
-rw-r--r--static/css/style.css10
2 files changed, 6 insertions, 6 deletions
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index e5e34e7..6d156b8 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -48,7 +48,7 @@
</div>
<div class="w3-content w3-center">
<div class="w3-bar w3-light-grey w3-border">
- <a href="{{ "/" | absLangURL | relURL }}" class="w3-bar-item w3-button w3-large w3-green"><i class="fa fa-home"></i></a>
+ <a href="{{ "/" | relLangURL }}" class="w3-bar-item w3-button w3-large w3-green"><i class="fa fa-home"></i></a>
{{ range .Site.Menus.main }}
<a href="{{ .URL | relURL }}" class="w3-bar-item w3-button w3-hide-small">{{ .Name }}</a>
{{ end }}
diff --git a/static/css/style.css b/static/css/style.css
index ee7c421..4218c94 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -277,17 +277,17 @@ em {
.glow {
- -webkit-animation: glow 3s ease-in-out infinite alternate;
- -moz-animation: glow 3s ease-in-out infinite alternate;
- animation: glow 3s ease-in-out infinite alternate;
+ -webkit-animation: glow 2s ease-in-out infinite alternate;
+ -moz-animation: glow 2s ease-in-out infinite alternate;
+ animation: glow 2s ease-in-out infinite alternate;
}
@-webkit-keyframes glow {
from {
- text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #DD4132, 0 0 40px #DD4132, 0 0 50px #DD4132, 0 0 60px #DD4132, 0 0 70px #DD4132;
+ text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #FFD662, 0 0 40px #DD4132, 0 0 50px #DD4132, 0 0 60px #FFD662, 0 0 70px #DD4132;
}
to {
- text-shadow: 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #9E1030, 0 0 50px #9E1030, 0 0 60px #9E1030, 0 0 70px #9E1030, 0 0 80px #9E1030;
+ text-shadow: 0 0 20px #fff, 0 0 30px #fff, 0 0 40px #6B5B95, 0 0 50px #6B5B95, 0 0 60px #6B5B95, 0 0 70px #6B5B95, 0 0 80px #6B5B95;
}
}
/* scroll indicator */