31 lines
565 B
CSS
Raw Permalink Normal View History

2024-11-02 17:06:56 +00:00
/* Base styles */
2024-11-08 08:44:47 +00:00
html, body {
height: 100%; /* Ensure the body and html elements fill the viewport height */
margin: 0; /* Remove default margin */
display: flex;
flex-direction: column;
}
2024-11-02 17:06:56 +00:00
body {
font-family: Arial, sans-serif;
}
header {
background-color: #4CAF50;
color: white;
padding: 1em;
text-align: center;
}
main {
2024-11-08 08:44:47 +00:00
flex: 1; /* Make the main content area grow to fill the available space */
2024-11-02 17:06:56 +00:00
padding: 1em;
}
2024-11-08 08:44:47 +00:00
footer {
background-color: #333;
color: white;
text-align: center;
padding: 1em;
2024-11-02 17:06:56 +00:00
}