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> <footer class="container py-3">
<div class="container"> <p>&copy; Quartznet 2020 | <a href="./policy">Policy</a></p>
<hr>
<p>&copy; Quartznet 2020 | <a href="./policy">Policy</a></p>
</div>
</footer> </footer>

View File

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