add_contact_form > master #3

Open
gzod01 wants to merge 12 commits from temporar-branch-contactform into master
Showing only changes of commit fe8116dc09 - Show all commits

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;
}