mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 01:15:22 +00:00
48f66a3da5
* 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
45 lines
746 B
Plaintext
Vendored
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;
|
|
}
|
|
}
|
|
}
|