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
path: root/static
diff options
context:
space:
mode:
authorjesselau76 <jesselau76@gmail.com>2018-11-23 01:26:55 +0300
committerjesselau76 <jesselau76@gmail.com>2018-11-23 01:26:55 +0300
commit3d761b8f07279fe7b9e2576f1c6c278b9b893db0 (patch)
treed5e9b3d8b1b1d33850292bfe4dc97be1520cae20 /static
parent948d9b777df1eae1246b454223965d29ef340d5a (diff)
scroll indicator and glowing logo
Diffstat (limited to 'static')
-rw-r--r--static/css/style.css36
1 files changed, 36 insertions, 0 deletions
diff --git a/static/css/style.css b/static/css/style.css
index 8ea75d6..dad60a5 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -269,4 +269,40 @@ em {
transition: all 0.2s ease,transform 0.6s ease,-webkit-transform 0.6s ease;
+}
+
+/* glowing logo */
+.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-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;
+ }
+ 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;
+ }
+}
+/* scroll indicator */
+.progress-container {
+display:none;
+position: fixed;
+ top: 0;
+ z-index: 1;
+ width: 100%;
+ background-color: #f1f1f1;
+ width: 100%;
+ height: 4px;
+ background: #ccc;
+}
+
+.progress-bar {
+ height: 4px;
+ background: #f44336;
+ width: 0%;
} \ No newline at end of file