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

github.com/hauke96/hugo-theme-hamburg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHauke Stieler <mail@hauke-stieler.de>2018-09-04 09:06:14 +0300
committerHauke Stieler <mail@hauke-stieler.de>2018-09-04 09:06:14 +0300
commit6f53cc1d6c875f35da3f23afa4d03f5e02681eea (patch)
treee54356bf409eb9456a2684cd3f97913f167cf66a
parentdef6159bb864eb2d4398765dcbb1183bc8f3af08 (diff)
Add dummy notice
-rw-r--r--layouts/partials/footer.html3
-rw-r--r--static/css/color-theme.css5
-rw-r--r--static/css/main.css9
3 files changed, 17 insertions, 0 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index a9078f5..9d7e622 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -25,5 +25,8 @@
for(g=0;g<i.length;g++)f(c,i[g]);b._i.push([a,e,d])};b.__SV=1.2;a=f.createElement("script");a.type="text/javascript";a.async=!0;a.src="//cdn.mxpnl.com/libs/mixpanel-2-latest.min.js";e=f.getElementsByTagName("script")[0];e.parentNode.insertBefore(a,e)}})(document,window.mixpanel||[]);
mixpanel.init("{{ . }}");</script><!-- end Mixpanel -->
{{ end }}
+ <div class="info">
+ Hello World!
+ </div>
</body>
</html>
diff --git a/static/css/color-theme.css b/static/css/color-theme.css
index 21ab4fd..0db7cb0 100644
--- a/static/css/color-theme.css
+++ b/static/css/color-theme.css
@@ -117,3 +117,8 @@ a.btn-primary.disabled:focus {
background-color: #bdbdbd4d;
border-color: #fff;
}
+
+.info {
+ background-color: #393838;
+ color: #fff;
+}
diff --git a/static/css/main.css b/static/css/main.css
index 94c81e9..46e40fd 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -307,3 +307,12 @@ I don't use the default pager-class because I want to use the normal buttons wit
margin-bottom: 20px;
border-radius: unset;
}
+
+.info {
+ position: fixed;
+ bottom:0%;
+ width:100%;
+ opacity: 1;
+ padding: 10px;
+ text-align: center;
+}