Template:Main page/styles2.css: Difference between revisions
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
/* | /* Custom CSS for nature-inspired color scheme */ | ||
body { | |||
background-color: #f5f5dc; /* Beige background */ | |||
color: #006400; /* Dark green text */ | |||
body | |||
} | } | ||
/* | /* Styling for header */ | ||
# | #header { | ||
background-color: #556b2f; /* Olive green header */ | |||
color: white; /* White text */ | |||
} | } | ||
/* | /* Styling for content area */ | ||
# | #content { | ||
background-color: #f0fff0; /* Honeydew content background */ | |||
padding: 20px; /* Add padding for readability */ | |||
} | } | ||
/* | /* Styling for footer */ | ||
# | #footer { | ||
background-color: #8fbc8f; /* Dark sea green footer */ | |||
color: white; /* White text */ | |||
} | } |
Revision as of 20:44, 4 April 2024
/* Custom CSS for nature-inspired color scheme */
body {
background-color: #f5f5dc; /* Beige background */
color: #006400; /* Dark green text */
}
/* Styling for header */
#header {
background-color: #556b2f; /* Olive green header */
color: white; /* White text */
}
/* Styling for content area */
#content {
background-color: #f0fff0; /* Honeydew content background */
padding: 20px; /* Add padding for readability */
}
/* Styling for footer */
#footer {
background-color: #8fbc8f; /* Dark sea green footer */
color: white; /* White text */
}