fleet/website/assets/styles/pages/contact.less
gillespi314 74b4cd535f
Revise website contact form (#753)
* Add topic select, revise content of contact form

* Fix styling of btn-primary class

* Restore deliver-contact-form-message function

* Fix lesshint linting errors

* Fix on hover style of btn-primary

* Adjust box-shadow for btn-primary

* Update contact form

* Fix lesshint linting errors

* Add personalization to submitted form modal

* Add responsive styles to contact form
2021-05-13 09:13:34 -05:00

44 lines
716 B
Plaintext
Vendored

#contact {
label {
font-weight: 700;
font-size: 18px;
}
.btn-primary {
background-color: #ff5c83;
border-color: #ff5c83;
&:hover {
background-color: darken(#ff5c83, 10%);
border-color: darken(#ff5c83, 10%);
}
}
.selectbox {
position: relative;
}
.selectbox::after {
content: url('/images/chevron-12x8@2x.png');
right: 16px;
transform: scale(0.5);
top: 16px;
position: absolute;
pointer-events: none;
}
.selectbox select {
appearance: none;
}
@media (max-width: 575px) {
h2, p, .btn-container {
text-align: center;
}
button {
display: inline;
width: 100%;
max-width: 325px;
}
}
}