-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.css
More file actions
91 lines (75 loc) · 1.32 KB
/
contact.css
File metadata and controls
91 lines (75 loc) · 1.32 KB
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
.contact {
padding: 100px 15px;
}
.contact .row .title h1::before {
left: 30%;
}
.contact-form {
background-color: #fff;
flex: 0 0 100%;
max-width: 100%;
padding: 40px;
border: 1.5px solid #eee;
border-radius: 5px;
}
.contact-text {
flex: 0 0 100%;
max-width: 100%;
padding-bottom: 20px;
}
.contact-text h2 {
font-size: 26px;
font-weight: 600;
margin: 0;
padding: 0;
}
.contact-text p {
font-size: 15px;
font-weight: 400;
line-height: 24px;
color: #838383;
margin: 0;
}
.contact-form .row {
flex-wrap: wrap;
}
.col-6 {
flex: 0 0 calc(50% - 15px);
max-width: calc(50% - 15px);
}
.col-6 input {
border-radius: 5px;
}
.col-12 {
flex: 0 0 100%;
max-width: 100%;
}
.form-control {
height: 45px;
width: 100%;
margin-bottom: 15px;
border: 1px solid #ced4da;
padding: 6px 12px;
font-size: 14px;
font-weight: 400;
font-family: "Montserrat", sans-serif;
}
.contact-form textarea.form-control {
height: 120px;
border-radius: 5px;
}
.form-control::placeholder {
color: #838383
}
.contact-form .button {
flex: 0 0 100%;
max-width: 100%;
}
.contact-form .btn a {
background-color: #5f88e0;
float: right;
}
.contact-form .btn a:hover {
color: #fff;
background-color: #01143e;
}