Move footer to bottom of page with proper styling

This commit is contained in:
Aherobo Ovie Victor
2025-07-11 21:26:26 +01:00
parent 55af293bb7
commit 403559a2a2
2 changed files with 16 additions and 3 deletions
+15 -2
View File
@@ -11,12 +11,17 @@ body {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh; min-height: 100vh;
color: #333; color: #333;
display: flex;
flex-direction: column;
} }
.container { .container {
max-width: 1200px; max-width: 1200px;
margin: 0 auto; margin: 0 auto;
padding: 20px; padding: 20px;
flex: 1;
display: flex;
flex-direction: column;
} }
header { header {
@@ -338,10 +343,18 @@ header p {
margin-bottom: 15px; margin-bottom: 15px;
} }
footer { main {
flex: 1;
}
.footer {
text-align: center; text-align: center;
margin-top: 40px; margin-top: auto;
padding: 20px 0;
color: rgba(255,255,255,0.8); color: rgba(255,255,255,0.8);
background: rgba(0,0,0,0.1);
backdrop-filter: blur(10px);
border-top: 1px solid rgba(255,255,255,0.1);
} }
/* Responsive Design */ /* Responsive Design */
+1 -1
View File
@@ -84,7 +84,7 @@
</section> </section>
</main> </main>
<footer> <footer class="footer">
<p>&copy; 2024 Memory Module Detection Project - QA Testing Interface</p> <p>&copy; 2024 Memory Module Detection Project - QA Testing Interface</p>
</footer> </footer>
</div> </div>