summaryrefslogtreecommitdiff
path: root/theme
diff options
context:
space:
mode:
Diffstat (limited to 'theme')
-rw-r--r--theme/static/style.css10
-rw-r--r--theme/templates/base.html4
2 files changed, 11 insertions, 3 deletions
diff --git a/theme/static/style.css b/theme/static/style.css
index 468b3c5..fc4576f 100644
--- a/theme/static/style.css
+++ b/theme/static/style.css
@@ -167,9 +167,10 @@ footer {
/* background: var(--cl-foreground); */
color: var(--cl-background);
height: 300px;
- display: flex;
align-items: center;
- justify-content: center;
+ display: flex;
+ justify-content: flex-end;
+ flex-direction: column;
padding: 0px 0px 10px 0px;
background-position: center bottom;
background-image: url("footer.png");
@@ -177,6 +178,11 @@ footer {
background-size: auto 100%;
}
+#footer_content {
+ display: flex;
+ justify-content: center;
+}
+
/* -- Polaroid -- */
diff --git a/theme/templates/base.html b/theme/templates/base.html
index 1e0a6fc..15993a9 100644
--- a/theme/templates/base.html
+++ b/theme/templates/base.html
@@ -42,7 +42,8 @@
{# Links, copyright notice, etc #}
{% block footer %}
- <footer>
+ <footer>
+ <div id="footer_content">
<ul class="menu">
<li><a href="{{ url_for("pages", slug="about") }}">about</a></li>
<li><a href="{{ url_for("cv", slug="00") }}">experience</a></li>
@@ -52,6 +53,7 @@
<li><a href="{{ url_for("pages", slug="contact") }}">contact</a></li>
<li><a href="{{ url_for("pages", slug="credits") }}">credits</a></li>
</ul>
+ </div>
</footer>
{% endblock %}