Add contact page

This commit is contained in:
Korbs 2022-09-08 00:54:47 -04:00
parent ea277ae757
commit 2c725fcc4f
6 changed files with 61 additions and 4 deletions

View file

@ -39,7 +39,7 @@ button:hover {
body {
background: rgba(225,228,232,1);
font-family: arial;
font-family: 'Zen Maru Gothic', sans-serif;
width: 100%;
max-width: var(--max-width);
overflow-x: hidden;
@ -186,6 +186,20 @@ td {
padding: 10px 0px;
}
form {
display: grid;
grid-gap: 6px;
}
input, textarea {
border: none;
padding: 6px 12px;
border-radius: 6px;
}
textarea {
height: 140px;
resize: none;
}
@keyframes banner {
from {object-position: 0px 0px;}
to {object-position: 0px -240px;}
@ -217,4 +231,5 @@ td {
left: 0px !important;
width: 100% !important;
}
}
}