Jump to content
1 topic in this forum
-
-
-
ZHP
-
/* Base styles for the header */
.site-header {
background-color: #f8f8f8;
padding: 20px 0;
border-bottom: 1px solid #e7e7e7;
}
/* Container to center the content */
.site-header .container {
max-width: 1200px;
margin: 0 auto;
padding: 0 15px;
display: flex;
align-items: center;
justify-content: space-between;
}
/* Logo styling */
.site-header .logo img {
max-height: 50px;
}
/* Navigation styles */
.main-nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
}
.main-nav ul li {
margin-left: 20px;
}
.main-nav ul li a {
text-decoration: none;
color: #333;
font-weight: 600;
transition: color 0.3s ease;
}
.main-nav ul li a:hover {
color: #007bff;
}