Add a footer
This commit is contained in:
parent
e803456e90
commit
70419e379b
2 changed files with 24 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
--accent: #226997;
|
--accent: #226997;
|
||||||
--main: #111111;
|
--main: #111111;
|
||||||
--main2: #575757;
|
--main2: #575757;
|
||||||
/*--main3: #7d7d7d;*/
|
--main3: #7d7d7d;
|
||||||
--background: #ffffff;
|
--background: #ffffff;
|
||||||
--background2: #f7f7f7;
|
--background2: #f7f7f7;
|
||||||
}
|
}
|
||||||
|
@ -97,12 +97,23 @@ code {
|
||||||
padding: 1em;
|
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) {
|
@media (prefers-color-scheme: dark) {
|
||||||
:root {
|
:root {
|
||||||
--accent: #226997;
|
--accent: #226997;
|
||||||
--main: #eeeeee;
|
--main: #eeeeee;
|
||||||
--main2: #cecece;
|
--main2: #cecece;
|
||||||
/*--main3: #b1b1b1;*/
|
--main3: #b1b1b1;
|
||||||
--background: #111111;
|
--background: #111111;
|
||||||
--background2: #282828;
|
--background2: #282828;
|
||||||
}
|
}
|
||||||
|
|
|
@ -32,5 +32,16 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</div>
|
</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>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
Reference in a new issue