Minor styling to footer; change heart to emoji

This commit is contained in:
Starbeamrainbowlabs 2021-06-06 23:39:00 +01:00
parent 1f44e240fb
commit 66234cdeae
No known key found for this signature in database
GPG Key ID: 1BE5172E637709C2
2 changed files with 9 additions and 1 deletions

@ -27,7 +27,7 @@
{{ content | safe }}
<footer>
<p>Built with ❤ by <a href="https://starbeamrainbowlabs.com/">Starbeamrainbowlabs</a></p>
<p>Built with ❤ by <a href="https://starbeamrainbowlabs.com/">Starbeamrainbowlabs</a></p>
<p>Tech: <a href="https://www.11ty.dev/">Eleventy</a></p>
<p>Licensed under <a href="https://www.mozilla.org/en-US/MPL/2.0/">Mozilla Public Licence 2.0</a> (<a href="https://tldrlegal.com/license/mozilla-public-license-2.0-(mpl-2)">tldr</a>)</p>
</footer>

@ -142,6 +142,14 @@ input[type=text], input[type=number], textarea
border-radius: 5px;
}
footer {
margin: 3em 0 0 0;
padding: 1em;
text-align: center;
background: var(--bg-bright);
color: var(--text-bright);
}
/* Utility / layout aids */
.float.left { float: left; }