-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path_contact.scss
113 lines (112 loc) · 2.31 KB
/
_contact.scss
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
/*============== contact_area css ================*/
.contact_area {
}
.mapBox {
height: 420px;
margin-bottom: 80px;
}
.contact_info {
.info_item {
position: relative;
padding-left: 45px;
i {
position: absolute;
left: 0;
top: 0;
font-size: 20px;
line-height: 24px;
color: $title-color;
font-weight: 600;
}
h6 {
font-size: 16px;
line-height: 24px;
color: $primary-font;
font-weight: bold;
margin-bottom: 0px;
color: $title-color;
a {
color: $title-color;
}
}
p {
font-size: 14px;
line-height: 24px;
padding: 2px 0px;
}
}
}
.contact_form {
.form-group {
margin-bottom: 10px;
.form-control {
line-height: 26px;
color: #999;
border: 1px solid #eeeeee;
font-family: $primary-font;
border-radius: 0px;
padding-left: 20px;
&:focus {
box-shadow: none;
outline: none;
}
@include placeholder {
color: $title-color;
font-size: 13px;
}
}
textarea {
resize: none;
&.form-control {
height: 140px;
}
}
}
.primary-btn {
margin-top: 20px;
cursor: pointer;
}
}
/* Contact Success and error Area css
============================================================================================ */
.modal-message {
.modal-dialog {
position: absolute;
top: 36%;
left: 50%;
transform: translateX(-50%) translateY(-50%) !important;
margin: 0px;
max-width: 500px;
width: 100%;
.modal-content {
.modal-header {
text-align: center;
display: block;
border-bottom: none;
padding-top: 50px;
padding-bottom: 50px;
.close {
position: absolute;
right: -15px;
top: -15px;
padding: 0px;
color: #fff;
opacity: 1;
cursor: pointer;
}
h2 {
display: block;
text-align: center;
color: $primary-color;
padding-bottom: 10px;
font-family: $primary-font;
}
p {
display: block;
}
}
}
}
}
/* End Contact Success and error Area css
============================================================================================ */