fleet/website/assets/styles/pages/entrance/forgot-password.less
eashaw 8740682a1e
Customer portal style updates (#3615)
* style changes

* changes from fine art pass 2

* Update dashboard.less

* Update signup.less

* changes from call

* Update dashboard.ejs

* update padding

* Update dashboard.ejs

* Update forgot-password.ejs

* keep full signup form visible after input

* revert formrules change
2022-01-07 19:52:55 -06:00

86 lines
1.4 KiB
Plaintext
Vendored

#forgot-password {
padding-top: 80px;
h1 {
font-size: 28px;
line-height: 38px;
}
a {
color: @core-vibrant-blue;
}
p {
font-size: 16px;
}
[purpose='customer-portal-form'] {
label {
font-weight: 700;
margin-bottom: 4px;
}
input {
height: 40px;
border-radius: 4px;
}
.card {
border-radius: 6px;
}
.card-body {
padding: 2em;
}
}
[purpose='submit-button'] {
margin-left: auto;
margin-right: auto;
border-radius: 4px;
padding-top: 10px;
padding-bottom: 10px;
display: flex;
span {
display: inline;
margin-left: auto;
margin-right: auto;
font-size: 16px;
line-height: 20px;
text-align: center;
font-weight: 400;
}
}
[purpose='back-button'] {
border-radius: 4px;
padding-top: 10px;
padding-bottom: 10px;
display: inline-block;
width: 200px;
height: 40px;
span {
color: white;
display: block;
margin-left: auto;
margin-right: auto;
font-size: 16px;
line-height: 20px;
vertical-align: center;
font-weight: 400;
}
}
@media (max-width: 768px) {
padding-top: 60px;
}
@media (max-width: 576px) {
padding-top: 40px;
[purpose='customer-portal-form'] {
.card-body {
padding: 1.5em 1em;
}
}
}
}