connect.scss 961 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. form{
  2. &.user-login-form{
  3. padding: 2rem;
  4. background: white;
  5. width: 100%;
  6. max-width: 300px;
  7. margin: auto;
  8. & > div {
  9. &:not(:last-child){
  10. margin-bottom: 2rem;
  11. }
  12. .js-form-required{
  13. margin-bottom: 0;
  14. font-family: 'Marianneregular';
  15. }
  16. label{
  17. font-size: 0.9rem;
  18. }
  19. input{
  20. border: 2px solid $color2;
  21. border-radius: 10px;
  22. padding: 0.5rem;
  23. width: 100%;
  24. &:focus{
  25. border: 2px solid $color1;
  26. border-radius: 10px!important;
  27. padding: 0.5rem!important;
  28. outline: none!important;
  29. }
  30. }
  31. .description{
  32. font-size: 0.6rem;
  33. margin-top: 0.4rem;
  34. font-family: 'Mariannelight';
  35. }
  36. }
  37. #edit-actions{
  38. display: flex;
  39. input{
  40. margin: auto;
  41. background: white;
  42. &:hover{
  43. @include shadow;
  44. }
  45. }
  46. }
  47. }
  48. }