Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

_login.scss 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .c-login {
  2. &.c-login--user {
  3. .c-login__form {
  4. .c-input:first-child {
  5. margin-bottom: pxToRem(20px);
  6. }
  7. }
  8. }
  9. @include media-below($bp-xl) {
  10. .c-login__link {
  11. margin-top: pxToRemMd(70px);
  12. }
  13. }
  14. @include media-below($bp-md) {
  15. .c-login__form {
  16. margin: pxToRemMd(36px) 0 0;
  17. }
  18. .c-login__button {
  19. margin-bottom: pxToRemMd(40px);
  20. margin-top: pxToRemMd(36px);
  21. }
  22. .c-login__link {
  23. margin-top: pxToRemMd(80px);
  24. }
  25. &.c-login--user {
  26. .c-login__form {
  27. .c-input:first-child {
  28. margin-bottom: pxToRemMd(20px);
  29. }
  30. }
  31. }
  32. }
  33. }
  34. .c-login__link {
  35. color: $color-primary;
  36. font-weight: 600;
  37. margin-top: pxToRem(40px);
  38. width: max-content;
  39. }
  40. .c-login__form {
  41. margin: pxToRem(36px) 0 0;
  42. > form {
  43. @include flex-column;
  44. }
  45. }
  46. .c-login__button {
  47. width: 100%;
  48. margin-top: pxToRem(68px);
  49. margin-bottom: pxToRem(24px);
  50. }
  51. .c-login__text {
  52. text-align: center;
  53. width: 100%;
  54. color: $blue;
  55. a {
  56. color: $color-primary;
  57. font-weight: bold;
  58. letter-spacing: inherit;
  59. font-size: inherit;
  60. line-height: inherit;
  61. }
  62. }