Compare commits

...

2 commits

Author SHA1 Message Date
Gzod01 fe8116dc09 Merge pull request 'contactform' (#1) from GZod01 into temporar-branch-contactform
Reviewed-on: #1
2023-05-29 09:14:43 +02:00
Gzod01 a319b029e7 hello 2023-05-29 09:14:23 +02:00

View file

@ -87,3 +87,28 @@ a:hover {
.grid-2 {
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;
}