37 lines
707 B
PHP
37 lines
707 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%;
|
|
height: 50px; /* Define the height explicitly */
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.footer-bar a {
|
|
color: #007bff;
|
|
text-decoration: none;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.footer-bar a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
body {
|
|
padding-bottom: 50px; /* Add padding equal to the footer height */
|
|
box-sizing: border-box;
|
|
}
|
|
</style>
|
|
|
|
<div class="footer-bar">
|
|
<span>Swansea Airport PPR system Version 1.0</span>
|
|
</div>
|