fleet/website/assets/styles/pages/contact.less
eashaw 48f66a3da5
Website redirect updates and bug fixes (#3859)
* fix logout redirect

* clear form input when clearing a quote

* reset password redirect

* fix new-password styes, fix broken links on unauthorized view

* disable IOS dropdown appearance
2022-01-25 11:12:41 +09:00

45 lines
746 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;
-webkit-appearance: none;
}
@media (max-width: 575px) {
h2, p, .btn-container {
text-align: center;
}
button {
display: inline;
width: 100%;
max-width: 325px;
}
}
}