Improve footer

- Moved container class into footer.
- Added py-3 for footer padding. Not sure if I prefer this to using the stylesheet.
- Replaced hr with border-top.
This commit is contained in:
Chris Dill 2020-12-13 12:42:56 +00:00
parent 0581f7aa7b
commit 50f734be70
2 changed files with 5 additions and 6 deletions

View File

@ -1,6 +1,3 @@
<footer>
<div class="container">
<hr>
<p>&copy; Quartznet 2020 | <a href="./policy">Policy</a></p>
</div>
<footer class="container py-3">
<p>&copy; Quartznet 2020 | <a href="./policy">Policy</a></p>
</footer>

View File

@ -4,6 +4,7 @@
--background-color: #2d2d2d;
--headings-color: #ffffff;
--font-color: #ffffff;
--border-color: #ffffff;
--line-color: #ffffff;
--link-color: #CC99FF;
}
@ -113,7 +114,8 @@ main {
}
footer {
margin-bottom: 20px;
border-top: 3px solid var(--border-color);
margin-bottom: 30px;
}
/* Content types */