This repository has been archived on 2025-03-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
coryd.dev-eleventy/src/assets/styles/pages/contact.css
2024-10-03 16:08:39 -07:00

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;
}
}