_login.scss 893 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // Pulling these images from Unsplash
  2. // Toshi the dog from https://unsplash.com/@charlesdeluvio - what a funny dog...
  3. .bg-login-image {
  4. background: url($login-image);
  5. background-position: center;
  6. background-size: cover;
  7. }
  8. .bg-register-image {
  9. background: url($register-image);
  10. background-position: center;
  11. background-size: cover;
  12. }
  13. .bg-password-image {
  14. background: url($password-image);
  15. background-position: center;
  16. background-size: cover;
  17. }
  18. form.user {
  19. .custom-checkbox.small {
  20. label {
  21. line-height: 1.5rem;
  22. }
  23. }
  24. .form-control-user {
  25. font-size: 0.8rem;
  26. border-radius: 10rem;
  27. padding: 1.5rem 1rem;
  28. }
  29. .btn-user {
  30. font-size: 0.8rem;
  31. border-radius: 10rem;
  32. padding: 0.75rem 1rem;
  33. }
  34. }
  35. .btn-google {
  36. @include button-variant($brand-google, $white);
  37. }
  38. .btn-facebook {
  39. @include button-variant($brand-facebook, $white);
  40. }