31 lines
539 B
PHP
31 lines
539 B
PHP
<style>
|
|
.footer-bar {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background-color: #333;
|
|
color: white;
|
|
padding: 10px 0;
|
|
font-family: Arial, sans-serif;
|
|
font-size: 14px;
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.footer-bar a {
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.footer-bar a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
</style>
|
|
|
|
<div class="footer-bar">
|
|
<span>Version 1.0.0</span>
|
|
<a href="changelog.php">View Changelog</a>
|
|
</div>
|