-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontactus.css
128 lines (112 loc) · 1.98 KB
/
contactus.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: roboto,sans-serif;
background-color: #F4F4F4
}
h1{
color: #505050;
font: 24px;
margin: 10px 100px;
padding: 0px 0px 10px;
font-weight: 500;
border-bottom: 1px solid #a7a7a7;
padding-bottom: 10px;
}
h2 {
margin: 0px 0px 20px;
color: #505050;
}
.container{
position: relative;
width: 100%;
height: 100%;
display: flex;
padding: 20px 100px;
}
.left{
width: 50%;
height: fit-content;
}
.left > div {
width: 100%;
margin-top: 20px;
background: url('https://i.stack.imgur.com/HILmr.png') no-repeat center;
background-size: cover;
height: 450px;
cursor: pointer;
border-radius: 2px;
}
.right{
width: 45%;
height: fit-content;
}
form{
padding: 20px;
width: 80%;
margin-left: 20px;
}
.input_field{
display: flex;
}
.input_field label{
font-size: 14px;
margin-bottom: 10px;
margin-top: 3px;
width: 40%;
transition: .3s;
}
.input_field input{
width: 345px;
padding: 6px 12px;
font-size: 14px;
margin: 10px;
background-color: white;
border-radius: 2px;
}
textarea{
height: 130px;
width: 345px;
background-color: white;
border-radius: 2px;
padding: 6px 12px;
}
button{
width: 80px;
height: 40px;
padding: 11px 20px;
margin-top: 30px;
margin-left: 140px;
border: none;
border-radius: 2px;
font-size: 13px;
background-color:rgb(81,201,166);
cursor: pointer;
transition: 0.5s;
color: white;
}
button:hover{
background-color:rgb(16, 129, 97) ;
}
.footer{
padding: 0px 100px;
display: flex;
flex-direction: column;
color: #505050;
}
.footterflex{
margin-top: 20px;
margin-left: 0px;
font-size: 12px;
color: #505050;
}
.footerContent{
display: flex;
justify-content: space-between;
}
.image{
width: fit-content;
height: 30px;
margin-top: 20px;
}