Add a couple more projects to the footer

As well as optimize the footer for small screens.
This commit is contained in:
Wolvan 2022-01-08 16:23:27 +01:00
parent f403165f76
commit 74729b1e9c
2 changed files with 5 additions and 2 deletions

View file

@ -221,7 +221,7 @@ main .notepad .poll-footer input[type="checkbox"] {
footer { footer {
background-color: #292929; background-color: #292929;
width: 100%; width: 100%;
height: 60px; min-height: 60px;
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
} }
footer ul { footer ul {
@ -230,7 +230,7 @@ footer ul {
} }
footer ul li { footer ul li {
display: inline-block; display: inline-block;
padding: 10px; padding: 5px 10px;
} }
footer ul li a { footer ul li a {
color: #a9a9a9; color: #a9a9a9;
@ -242,5 +242,6 @@ footer ul li a:hover {
footer .copyright { footer .copyright {
text-align: center; text-align: center;
color: #fff; color: #fff;
padding: 5px;
} }
/* #endregion Footer */ /* #endregion Footer */

View file

@ -58,6 +58,8 @@ const defaultReplacements = {
"FOOTER_COPYRIGHT": `© ${ (new Date()).getFullYear() } Based Department`, "FOOTER_COPYRIGHT": `© ${ (new Date()).getFullYear() } Based Department`,
"FOOTER_LINKS": ` "FOOTER_LINKS": `
<li><a href="https://github.com/Wolvan/poll.horse" target="_blank">Github Repo</a></li> <li><a href="https://github.com/Wolvan/poll.horse" target="_blank">Github Repo</a></li>
<li><a href="https://www.mppp.horse/" target="_blank">/mppp/ - Mass Production plushies</a></li>
<li><a href="https://www.pon3.stream/" target="_blank">Pon3.Stream</a></li>
` `
}; };
class Defaults2RenderTransform extends MinificationTransform { class Defaults2RenderTransform extends MinificationTransform {