-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_contact.scss
47 lines (47 loc) · 928 Bytes
/
_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
// Styling for the contact section
section#contact {
background-color: $gray-900;
background-image: url('../img/map-image.png');
background-repeat: no-repeat;
background-position: center;
.section-heading {
color: $white;
}
.form-group {
margin-bottom: 25px;
input,
textarea {
padding: 20px;
}
input.form-control {
height: auto;
}
textarea.form-control {
height: 248px;
}
}
.form-control:focus {
border-color: $primary;
box-shadow: none;
}
::-webkit-input-placeholder {
font-weight: 700;
color: $gray-400;
@include heading-font;
}
:-moz-placeholder {
font-weight: 700;
color: $gray-400;
@include heading-font;
}
::-moz-placeholder {
font-weight: 700;
color: $gray-400;
@include heading-font;
}
:-ms-input-placeholder {
font-weight: 700;
color: $gray-400;
@include heading-font;
}
}