File: /home/internet/public_html/savewayanad.com/style.css
body, h1, h2, h3, nav, footer {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Arial', sans-serif;
line-height: 1.6;
color: #333; /* Standard text color */
background: #f9f9f9; /* Light background for the body */
}
header {
background-color: #ffffff; /* White background for the header */
color: #333;
padding: 20px 2rem;
display: flex;
justify-content: space-between; /* Aligns title to left and nav to right */
align-items: center;
}
h1, h2 {
margin-bottom: 20px;
}
nav {
display: flex;
}
nav a {
color: #254751; /* Dark teal color for navigation links */
text-decoration: none;
padding: 10px 15px;
font-size: 1em; /* Adjusted font size for navigation links */
}
nav a:hover, nav a:focus {
text-decoration: underline;
color: #19282f; /* Darker teal for hover effect */
}
section {
padding: 2rem;
text-align: center;
}
section#hero {
background-color: #254751; /* Dark teal for hero section */
color: #ffffff;
padding: 40px 20px;
}
h2 {
color: #eb972a; /* Change color for 'Join Hands, Save Wayanad' text */
}
button {
background-color: #eb972a; /* Updated button color */
color: white;
border: none;
padding: 15px 30px; /* Increased padding for better visibility and clickability */
cursor: pointer;
font-size: 1em;
border-radius: 5px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #c76d22; /* Slightly darker shade for hover */
}
ul {
list-style: none;
padding: 0;
}
li {
padding: 10px 0;
}
footer {
background-color: #254751; /* Dark teal for footer */
color: #fff;
text-align: center;
padding: 1rem;
}
.small {
font-size: 0.8em;
color: #666;
}
.favicon {
color: #254751; /* Updated color to dark teal */
margin-right: 10px; /* Space between the icon and text */
}
h1 {
color: #eb9729; /* Orange color for 'Save Wayanad' */
}
.small-text {
display: block; /* Makes the element a block to position it under the button */
font-size: 0.9em; /* Slightly larger for better visibility */
color: #ffffff; /* Ensures the text is white for contrast */
background: #254751; /* Dark teal background */
padding: 5px 10px; /* Padding for aesthetic spacing */
margin-top: 10px; /* Space from the button to the text */
border-radius: 5px; /* Rounded corners for aesthetic appeal */
font-weight: bold; /* Makes the text bold */
font-style: italic; /* Makes the text italic */
}
/* Ensure the rest of your existing styles are appropriately adjusted to incorporate these changes */
@media (max-width: 768px) {
header, section, footer {
text-align: center;
}
header {
flex-direction: column;
padding: 10px 1rem;
}
nav a {
padding: 8px 10px;
}
button {
width: 90%;
padding: 15px;
}
}
.social-share {
margin-top: 20px;
padding: 10px 0;
display: flex;
justify-content: center; /* Centers the social share buttons */
}
.social-share a {
color: white;
background-color: #eb9729; /* Orange color for social share buttons */
margin-right: 10px;
padding: 8px 16px;
border-radius: 5px;
text-decoration: none;
}
.social-share a:hover {
background-color: #c76d22;
}