Files
For-Real-Consulting/For Real Consulting/For Real Consulting/Components/Pages/Contact.razor.css
T
Arne Moerman 1aff354735
Build and Push Docker Image / build-and-push (push) Successful in 24s
Update contact navigation and add contact page
Updated all "Contact" links to use the new /contact route. Added Contact.razor and its CSS for the contact page. Adjusted section IDs for navigation consistency and updated footer navigation.
2026-05-03 13:48:08 +02:00

38 lines
545 B
CSS

.frc-contact-layout {
min-height: 100vh;
display: flex;
flex-direction: column;
}
.frc-contact-page {
flex: 1;
min-height: 0;
padding: 6rem 2rem;
background: #13171a;
color: #ffffff;
}
.frc-contact-page h1 {
margin: 0 0 1rem;
font-weight: 300;
text-transform: uppercase;
}
.frc-contact-page p {
margin: 0 0 2rem;
color: #9ca3af;
}
.frc-contact-links {
display: grid;
gap: 0.75rem;
}
.frc-contact-links a {
color: #c5a368;
}
.frc-contact-links a:hover {
color: #ffffff;
}