You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
893 B
50 lines
893 B
// Pulling these images from Unsplash |
|
// Toshi the dog from https://unsplash.com/@charlesdeluvio - what a funny dog... |
|
|
|
.bg-login-image { |
|
background: url($login-image); |
|
background-position: center; |
|
background-size: cover; |
|
} |
|
|
|
.bg-register-image { |
|
background: url($register-image); |
|
background-position: center; |
|
background-size: cover; |
|
} |
|
|
|
.bg-password-image { |
|
background: url($password-image); |
|
background-position: center; |
|
background-size: cover; |
|
} |
|
|
|
form.user { |
|
|
|
.custom-checkbox.small { |
|
label { |
|
line-height: 1.5rem; |
|
} |
|
} |
|
|
|
.form-control-user { |
|
font-size: 0.8rem; |
|
border-radius: 10rem; |
|
padding: 1.5rem 1rem; |
|
} |
|
|
|
.btn-user { |
|
font-size: 0.8rem; |
|
border-radius: 10rem; |
|
padding: 0.75rem 1rem; |
|
} |
|
|
|
} |
|
|
|
.btn-google { |
|
@include button-variant($brand-google, $white); |
|
} |
|
|
|
.btn-facebook { |
|
@include button-variant($brand-facebook, $white); |
|
}
|
|
|