Add a footer

This commit is contained in:
Gabriel Augendre 2020-08-18 11:38:25 +02:00
parent e803456e90
commit 70419e379b
2 changed files with 24 additions and 2 deletions

View file

@ -2,7 +2,7 @@
--accent: #226997;
--main: #111111;
--main2: #575757;
/*--main3: #7d7d7d;*/
--main3: #7d7d7d;
--background: #ffffff;
--background2: #f7f7f7;
}
@ -97,12 +97,23 @@ code {
padding: 1em;
}
footer {
border-top: 2px solid var(--background2);
margin-top: 2em;
font-size: 80%;
color: var(--main3)
}
footer a {
color: var(--main3);
/*border-bottom-width: ;*/
}
@media (prefers-color-scheme: dark) {
:root {
--accent: #226997;
--main: #eeeeee;
--main2: #cecece;
/*--main3: #b1b1b1;*/
--main3: #b1b1b1;
--background: #111111;
--background2: #282828;
}

View file

@ -32,5 +32,16 @@
{% block content %}
{% endblock %}
</div>
<footer>
<p>
Thoughts written here are my own and dont reflect any of my past, present
or future employer's position.
This blog and all articles by Gabriel Augendre are licensed under the
<a href="http://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA 4.0 International License</a>.
Code blocks by Gabriel Augendre are licensed under the
<a href="https://www.gnu.org/licenses/gpl-3.0.html">GNU GENERAL PUBLIC LICENSE version 3</a>.
</p>
</footer>
</body>
</html>