111 lines
1.7 KiB
CSS
111 lines
1.7 KiB
CSS
body {
|
|
font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
|
|
background-color: #F8F9FA;
|
|
color: #212529;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
margin: 0;
|
|
}
|
|
|
|
main {
|
|
flex-grow: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.navbar {
|
|
padding: 1rem 0;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.hero, .hero-overlay {
|
|
display: none; /* Hidden to make map primary */
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #00CC99;
|
|
border-color: #00CC99;
|
|
padding: 0.75rem 1.5rem;
|
|
border-radius: 0.5rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #00b386;
|
|
border-color: #00b386;
|
|
}
|
|
|
|
section {
|
|
padding: 4rem 0;
|
|
}
|
|
|
|
#map-widget {
|
|
flex-grow: 1;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 80vh; /* Ensure section has height */
|
|
}
|
|
|
|
h2 {
|
|
font-size: 2.5rem;
|
|
font-weight: 700;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
border-radius: 0.5rem;
|
|
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.contact-form {
|
|
background-color: #FFFFFF;
|
|
padding: 3rem;
|
|
border-radius: 0.5rem;
|
|
}
|
|
|
|
.footer {
|
|
background-color: #003366;
|
|
color: white;
|
|
padding: 3rem 0;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.footer a {
|
|
color: #00CC99;
|
|
}
|
|
|
|
#cyclone-widget {
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
#cyclone-data .card {
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
#wildfire-widget {
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
#wildfire-data .card {
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden; /* Prevent scrollbars */
|
|
}
|
|
|
|
#cesiumContainer {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
border: none; /* Remove the debug border */
|
|
} |