mirror of
https://github.com/empayre/fleet.git
synced 2024-11-07 09:18:59 +00:00
74b4cd535f
* 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
44 lines
716 B
Plaintext
Vendored
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;
|
|
}
|
|
}
|
|
}
|