Merge pull request 'contactform' (#1) from GZod01 into temporar-branch-contactform
Reviewed-on: #1
This commit is contained in:
commit
fe8116dc09
1 changed files with 25 additions and 0 deletions
|
@ -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;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue