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

github.com/queensferryme/hugo-theme-texify.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcreedowl <creedowl@gmail.com>2020-01-19 15:45:44 +0300
committercreedowl <creedowl@gmail.com>2020-01-19 15:45:44 +0300
commitf73ac39e8236cc8180d379251470c605a07b8b4c (patch)
tree5d566f3bd001b89efbec8134d7868feba50d0d64
parent7d14a797c318f9162b4f9b4fb2b733e31f8f681c (diff)
parentb915672c8c454879ca3f533d6ce56a95d0974741 (diff)
Merge branch 'features/footer' into dev
-rw-r--r--layouts/partials/footer.html9
-rw-r--r--static/css/main.css18
2 files changed, 18 insertions, 9 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
index 2637bbf..21dded0 100644
--- a/layouts/partials/footer.html
+++ b/layouts/partials/footer.html
@@ -1,12 +1,3 @@
-<style>
- footer {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
-</style>
-
<footer id="footer">
<div class="copyright">
<span>© 2019</span> - <span>{{ now.Format "2006"}} 🍦</span>
diff --git a/static/css/main.css b/static/css/main.css
index 315eb79..cb862e6 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -56,3 +56,21 @@ body {
font-size: 1rem;
margin-left: 1.5rem;
}
+
+/* footer styles */
+#footer {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ flex-direction: column;
+ font-size: small;
+}
+
+#footer a {
+ color: #a6a6a6;
+ transition: all 0.2s linear;
+}
+
+#footer a:hover {
+ color: #263238;
+}