hugo-sr2/assets/css/contact.scss

63 lines
1,008 B
SCSS
Raw Normal View History

2026-01-10 13:42:14 +00:00
@use "hugo:vars" as v;
.contact-page {
margin-bottom: 2rem;
h3, h4 {
margin-top: 3rem;
margin-bottom: 0.4rem;
& + * {
margin-top: 0;
}
}
address {
white-space: pre;
font-style: normal;
}
form {
input:not([type=checkbox]),
textarea {
min-width: 425px;
}
label {
display: block;
}
button {
width: fit-content;
min-width: 100px;
max-height: 55px;
border-radius: 6px;
padding: 13px 20px;
background-color: v.$color_primary;
color: v.$color_primary_contrast;
display: flex;
align-items: center;
justify-content: center;
&:hover {
opacity: 0.7;
cursor: pointer;
}
}
}
}
.contact-method {
display: flex;
align-items: center;
flex-direction: column;
padding: 0 20px;
}
.contact-method__name {
color: v.$color_tertiary;
margin-bottom: 0.25rem;
}
.contact-method__content {
color: v.$color_primary;
font-size: 1.118rem;
}