fix styling and add address env vars
This commit is contained in:
@ -40,12 +40,13 @@ p {
|
||||
|
||||
/* Navigation */
|
||||
.navbar {
|
||||
background: #1f2937;
|
||||
background: #fff;
|
||||
padding: 1rem 0;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
z-index: 100;
|
||||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||||
box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
|
||||
border-bottom: 3px solid #059669;
|
||||
}
|
||||
|
||||
.nav-container {
|
||||
@ -58,15 +59,31 @@ p {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-logo {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.nav-logo .tux-icon {
|
||||
width: 2.5rem;
|
||||
height: 2.5rem;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.nav-logo h1 {
|
||||
color: #059669;
|
||||
color: #047857;
|
||||
font-size: 1.8rem;
|
||||
margin: 0;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
.nav-logo a {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
}
|
||||
|
||||
.nav-links {
|
||||
@ -77,17 +94,30 @@ p {
|
||||
|
||||
.nav-links a {
|
||||
text-decoration: none;
|
||||
color: white;
|
||||
color: #374151;
|
||||
font-weight: 500;
|
||||
transition: all 0.3s ease;
|
||||
padding: 0.5rem 1rem;
|
||||
border-radius: 4px;
|
||||
border-radius: 6px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-links a:hover,
|
||||
.nav-links a.active {
|
||||
color: #10b981;
|
||||
background: rgba(16, 185, 129, 0.1);
|
||||
color: #059669;
|
||||
background: #ecfdf5;
|
||||
}
|
||||
|
||||
.nav-links a.active::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
bottom: -1.5rem;
|
||||
left: 50%;
|
||||
transform: translateX(-50%);
|
||||
width: 4px;
|
||||
height: 4px;
|
||||
background: #059669;
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
/* Mobile Navigation */
|
||||
@ -95,14 +125,14 @@ p {
|
||||
display: none;
|
||||
background: none;
|
||||
border: none;
|
||||
color: white;
|
||||
color: #374151;
|
||||
font-size: 1.5rem;
|
||||
cursor: pointer;
|
||||
padding: 0.5rem;
|
||||
}
|
||||
|
||||
.mobile-menu-toggle:hover {
|
||||
color: #10b981;
|
||||
color: #059669;
|
||||
}
|
||||
|
||||
.mobile-menu {
|
||||
@ -111,9 +141,10 @@ p {
|
||||
top: 100%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
background: #1f2937;
|
||||
border-top: 1px solid #374151;
|
||||
background: #fff;
|
||||
border-top: 1px solid #e5e7eb;
|
||||
z-index: 1000;
|
||||
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.mobile-menu.active {
|
||||
@ -123,14 +154,15 @@ p {
|
||||
.mobile-menu a {
|
||||
display: block;
|
||||
padding: 1rem 1.5rem;
|
||||
color: white;
|
||||
color: #374151;
|
||||
text-decoration: none;
|
||||
border-bottom: 1px solid #374151;
|
||||
border-bottom: 1px solid #f3f4f6;
|
||||
}
|
||||
|
||||
.mobile-menu a:hover {
|
||||
background: #374151;
|
||||
color: #10b981;
|
||||
.mobile-menu a:hover,
|
||||
.mobile-menu a.active {
|
||||
background: #ecfdf5;
|
||||
color: #059669;
|
||||
}
|
||||
|
||||
/* Hero Section */
|
||||
@ -893,9 +925,11 @@ p {
|
||||
|
||||
/* Footer */
|
||||
footer {
|
||||
background: #374151;
|
||||
color: #9ca3af;
|
||||
background: #f9fafb;
|
||||
color: #374151;
|
||||
padding: 3rem 0 1rem;
|
||||
border-top: 3px solid #059669;
|
||||
margin-top: 2rem;
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
@ -906,23 +940,26 @@ footer {
|
||||
}
|
||||
|
||||
.footer-section h3 {
|
||||
color: white;
|
||||
color: #047857;
|
||||
margin-bottom: 1rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.footer-section a {
|
||||
color: #9ca3af;
|
||||
color: #059669;
|
||||
text-decoration: none;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.footer-section a:hover {
|
||||
color: #10b981;
|
||||
color: #047857;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.footer-bottom {
|
||||
text-align: center;
|
||||
padding-top: 2rem;
|
||||
border-top: 1px solid #4b5563;
|
||||
border-top: 1px solid #e5e7eb;
|
||||
color: #6b7280;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user