feat: add footer to homepage

This commit is contained in:
jabuxas 2024-09-24 13:23:46 -03:00
parent 9d5fbca929
commit 58c8321a18
2 changed files with 17 additions and 0 deletions

View File

@ -14,6 +14,10 @@
<a href="/last">
<button>last uploaded file</button>
</a>
<footer>
abyss paste - powered by
<a href="https://github.com/jabuxas/abyss" target="_blank">abyss</a>
</footer>
</body>
</html>

View File

@ -29,3 +29,16 @@ button {
button:hover {
background-color: #45a29e;
}
footer {
position: absolute;
bottom: 1rem;
font-size: 0.8rem;
color: #777;
}
footer a {
color: #66fcf1;
text-decoration: none;
font-weight: bold;
}