login.scss 499 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. @import "colors";
  2. @import "breakpoints";
  3. p {
  4. color: $musare_color_primary_gray;
  5. }
  6. @include responsive(smallest) {
  7. p {
  8. font-size: 12px;
  9. line-height: 16px;
  10. margin-bottom: 12px;
  11. }
  12. }
  13. @include responsive(small) {
  14. p {
  15. font-size: 21px;
  16. line-height: 28px;
  17. margin-bottom: 26px;
  18. }
  19. }
  20. @include responsive(medium) {
  21. p {
  22. font-size: 31px;
  23. line-height: 41px;
  24. margin-bottom: 39px;
  25. }
  26. }
  27. @include responsive(large) {
  28. p {
  29. font-size: 17px;
  30. line-height: 22px;
  31. margin-bottom: 32px;
  32. }
  33. }