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

github.com/gevhaz/hugo-theme-notrack.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/css/styles.scss')
-rw-r--r--static/css/styles.scss19
1 files changed, 19 insertions, 0 deletions
diff --git a/static/css/styles.scss b/static/css/styles.scss
index 97c7758..c04e2fd 100644
--- a/static/css/styles.scss
+++ b/static/css/styles.scss
@@ -45,8 +45,14 @@ $header-line-height: 1.25;
// HUGO
+html {
+ margin: 0;
+ height: 100vh;
+}
+
body {
margin: 0;
+ min-height: 100vh;
overflow-y: scroll;
font-size: $base-font-size * 1.1;
line-height: $base-line-height * 1.1;
@@ -802,3 +808,16 @@ cite {
text-decoration: none;
cursor: pointer;
}
+
+footer {
+ position: fixed;
+ width: 100vw;
+ color: #444;
+ font-size: .8em;
+ padding-left: 1em;
+ padding-top: .2em;
+ padding-bottom: .1em;
+ bottom: 0;
+ left: 0;
+ background-color: #f7f7f7;
+}