Update templates/file.html

This commit is contained in:
cgcristi 2024-09-08 13:15:49 +02:00
parent d78062d4bf
commit 3adfa6ef75

View File

@ -87,6 +87,36 @@ button[type="button"]:hover {
.file-details p, .content-details p {
color: #e0e0e0;
}
.footer {
background-color: #2c2f33;
color: #99aab5;
padding: 10px 0;
position: fixed;
bottom: 0;
width: 100%;
text-align: center;
font-size: 14px;
}
.footer a {
color: #61afef;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
.footer .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
}
</style>
</head>
<body>
@ -100,4 +130,14 @@ button[type="button"]:hover {
</div>
</div>
</body>
<footer class="footer">
<div class="container">
<p class="footer-text">Source code available on:
<a href="https://github.com/realcgcristi/order" target="_blank">GitHub</a> |
<a href="https://git.spitkov.hu/cgcristi/order" target="_blank">Spitkov's Git</a>
</p>
</div>
</footer>
</html>