-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
104 lines (104 loc) · 1.98 KB
/
contact.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
body{
overflow-x: hidden;
}
#contpage{
height: 100%;
}
#contact {
height: 100%;
}
#contact h1{
font-size: 45px;
margin-top: 150px;
color: black;
justify-content: center;
text-align: center;
}
.contpos{
margin: 90px 5px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.content1{
width: 45%;
margin: 20px 20px;
justify-content: center;
text-align: center;
}
.contact-tool{
margin: 30px 5px;
padding: 20px 0px;
background-color: rgb(220, 216, 216);
border-radius: 20px;
box-sizing: content-box;
justify-content: center;
text-align: center;
width: 40%;
margin-left: 25%;
}
.contact-tool p{
justify-content: center;
text-align: center;
font-size: 18px;
}
.contact-tool h2{
justify-content: center;
text-align: center;
font-size: 25px;
}
.contact-tool img{
justify-content: center;
text-align: center;
}
.contacts-form{
display: flex;
flex-direction: column;
justify-content: center;
background-color: rgb(220, 216, 216);
width: 30%;
border-radius: 20px;
box-sizing: content-box;
}
.contact-form{
display: flex;
flex-direction: column;
justify-content: center;
margin: 20px 20px;
border-radius: 20px;
box-sizing: content-box;
width: 80%;
padding: 0px 25px;
}
.contact-form span{
font-size: 30px;
}
.contact-form input{
margin: 18px 20px;
height: 40px;
font-size: 25px;
border-radius: 5px;
}
.contact-form textarea{
margin: 18px 20px;
height: 200px;
font-size: 25px;
border-radius: 5px;
}
.contact-form .submit{
border-radius: 20px;
border: 2px solid dodgerblue;
color: dodgerblue;
width: 50%;
}
.form .contact-form input[type=submit]:hover{
background-color: dodgerblue;
color: black;
}
.icon img{
height: 10%;
width: 10%;
}
#footer{
vertical-align: bottom;
}