Basic contact page

This commit is contained in:
2025-01-08 22:12:10 +00:00
parent 856528fbc4
commit 66c8b16018
6 changed files with 102 additions and 9 deletions

View File

@@ -54,4 +54,9 @@
width: fit-content;
padding-right: 20px;
}
#logo-container{
position: absolute;
height: 25vh;
}
}

View File

@@ -30,6 +30,7 @@ footer{
width: 100%;
justify-content: center;
display: flex;
align-items: center;
}
#logo{
@@ -167,4 +168,39 @@ a{
.article-category:hover{
text-decoration: underline;
}
#contact-main{
padding: 20px 10px 0 10px;
min-height: 65vh;
}
#contact-main>h2 {
margin-top: 0;
}
input, textarea{
display: block;
padding: 10px;
margin-bottom: 20px;
background-color: #4c4c4c;
border-radius: 10px;
border:none;
color: white;
width: 100%;
}
label{
line-height: 2rem;
}
.cf-turnstile{
width: fit-content;
padding: 10px 0 10px 0;
margin-left: auto;
margin-right: auto;
}
#contact-error{
color: red;
}