feat: initial import

This commit is contained in:
Iain Learmonth 2026-01-10 13:42:14 +00:00
commit 03ab1091b1
50 changed files with 1146 additions and 0 deletions

63
assets/css/contact.scss Normal file
View file

@ -0,0 +1,63 @@
@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;
}