This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/assets/css/pages/contact.css

46 lines
No EOL
708 B
CSS

.contact-wrapper {
display: flex;
flex-direction: column;
@media screen and (min-width: 768px) {
flex-direction: row;
}
& label.hp,
& label > span {
display: none;
}
& textarea {
height: calc(var(--sizing-3xl) * 5);
resize: none;
}
& .column {
@media screen and (min-width: 768px) {
width: 50%;
}
&.description {
& p:first-of-type {
margin-top: 0;
}
@media screen and (min-width: 768px) {
padding-right: var(--spacing-xl);
}
}
}
}
.contact-success-wrapper {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
min-height: 60vh;
& h2 {
margin: 0;
}
}