2017-03-31 23:05:07 +02:00
|
|
|
// Styling for the contact section
|
|
|
|
section#contact {
|
|
|
|
background-color: $gray-darker;
|
|
|
|
background-image: url('../img/map-image.png');
|
|
|
|
background-repeat: no-repeat;
|
2017-05-08 20:57:42 +02:00
|
|
|
background-position: center;
|
2017-03-31 23:05:07 +02:00
|
|
|
.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;
|
2017-05-08 20:57:42 +02:00
|
|
|
@include heading-font;
|
2017-03-31 23:05:07 +02:00
|
|
|
}
|
|
|
|
:-moz-placeholder {
|
|
|
|
font-weight: 700;
|
|
|
|
color: $gray-lighter;
|
2017-05-08 20:57:42 +02:00
|
|
|
/* Firefox 18- */
|
|
|
|
@include heading-font;
|
2017-03-31 23:05:07 +02:00
|
|
|
}
|
|
|
|
::-moz-placeholder {
|
|
|
|
font-weight: 700;
|
|
|
|
color: $gray-lighter;
|
2017-05-08 20:57:42 +02:00
|
|
|
/* Firefox 19+ */
|
|
|
|
@include heading-font;
|
2017-03-31 23:05:07 +02:00
|
|
|
}
|
|
|
|
:-ms-input-placeholder {
|
|
|
|
font-weight: 700;
|
|
|
|
color: $gray-lighter;
|
2017-05-08 20:57:42 +02:00
|
|
|
@include heading-font;
|
2017-03-31 23:05:07 +02:00
|
|
|
}
|
|
|
|
.text-danger {
|
|
|
|
color: $theme-danger;
|
|
|
|
}
|
|
|
|
}
|