1aff354735
Build and Push Docker Image / build-and-push (push) Successful in 24s
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.
38 lines
545 B
CSS
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;
|
|
}
|