You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
52 lines
1.2 KiB
// Styling for the contact section |
|
section#contact { |
|
background-color: $gray-darker; |
|
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: 236px; |
|
} |
|
} |
|
.form-control:focus { |
|
border-color: $theme-primary; |
|
box-shadow: none; |
|
} |
|
::-webkit-input-placeholder { |
|
font-weight: 700; |
|
color: $gray-lighter; |
|
@include heading-font; |
|
} |
|
:-moz-placeholder { |
|
font-weight: 700; |
|
color: $gray-lighter; |
|
/* Firefox 18- */ |
|
@include heading-font; |
|
} |
|
::-moz-placeholder { |
|
font-weight: 700; |
|
color: $gray-lighter; |
|
/* Firefox 19+ */ |
|
@include heading-font; |
|
} |
|
:-ms-input-placeholder { |
|
font-weight: 700; |
|
color: $gray-lighter; |
|
@include heading-font; |
|
} |
|
.text-danger { |
|
color: $theme-danger; |
|
} |
|
}
|
|
|