nunta/scss/_contact.scss

48 lines
928 B
SCSS
Raw Normal View History

// Styling for the contact section
section#contact {
background-color: $gray-900;
2017-08-11 21:12:34 +02:00
background-image: url('../img/map-image.png');
background-repeat: no-repeat;
background-position: center;
.section-heading {
color: $white;
2017-08-11 21:12:34 +02:00
}
.form-group {
margin-bottom: 25px;
input,
textarea {
padding: 20px;
}
input.form-control {
height: auto;
}
textarea.form-control {
height: 248px;
2017-08-11 21:12:34 +02:00
}
}
.form-control:focus {
border-color: $primary;
2017-08-11 21:12:34 +02:00
box-shadow: none;
}
::-webkit-input-placeholder {
font-weight: 700;
color: $gray-400;
2017-08-11 21:12:34 +02:00
@include heading-font;
}
:-moz-placeholder {
font-weight: 700;
color: $gray-400;
2017-08-11 21:12:34 +02:00
@include heading-font;
}
::-moz-placeholder {
font-weight: 700;
color: $gray-400;
2017-08-11 21:12:34 +02:00
@include heading-font;
}
:-ms-input-placeholder {
font-weight: 700;
color: $gray-400;
2017-08-11 21:12:34 +02:00
@include heading-font;
}
}