Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
- **CSS restructuring**: Moved `styles` folder into `src` for better organization. - **Updated imports**: Adjusted component CSS imports to reflect new paths. - **Component tweaks**: - Increased HoverCard width from `350px` to `400px` for better visual balance. - Adjusted Footer layout: reorganized copyright and added email link. - Modified Drinks circle dimensions (from `6em` to `9em`) for improved design. - **Footer styles**: Changed copyright section's layout with top spacing and border adjustments.
63 lines
1001 B
CSS
63 lines
1001 B
CSS
.footer {
|
|
background-color: #213b28;
|
|
color: white;
|
|
padding: 3rem 0;
|
|
margin-top: 4rem;
|
|
}
|
|
|
|
.footer-content {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.copyright {
|
|
text-align: center;
|
|
margin-top: 2rem;
|
|
padding-top: 1rem;
|
|
border-top: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
.footer-sections {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
|
gap: 2rem;
|
|
justify-content: center;
|
|
}
|
|
|
|
.footer-section {
|
|
text-align: center;
|
|
}
|
|
|
|
.footer-section h3 {
|
|
color: #ffffff;
|
|
margin-bottom: 1rem;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.footer-section p {
|
|
margin: 0.5rem 0;
|
|
color: #cccccc;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
.footer-section a {
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.footer-section a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
@media (max-width: 768px) {
|
|
.footer-sections {
|
|
grid-template-columns: 1fr;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.footer-section {
|
|
padding: 0 1rem;
|
|
}
|
|
}
|