This commit is contained in:
Gzod01 2023-05-29 09:14:23 +02:00
parent e31755c756
commit a319b029e7

View file

@ -87,3 +87,28 @@ a:hover {
.grid-2 { .grid-2 {
grid-template-columns: 1fr 1fr; grid-template-columns: 1fr 1fr;
} }
.contact-form{
position:relative;
width:75%;
left:50%;
transform:translate(-50% , 0%);
border:2px black solid;
padding:2px;
display:flex;
flex-direction:column
}
.contact-form button{
background-color:green;
padding:5px;
color:white;
border-radius:2px;
}
.contact-form input {
width:100%;
border:black solid 1px;
color:black;
height:20px;
}
.contact-form textarea{
resize:vertical;
}