termsPrivacy.scss 659 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. @import "colors";
  2. @import "breakpoints";
  3. main#terms, main#privacy {
  4. h2, h3, p {
  5. color: $musare_color_primary_gray;
  6. }
  7. h2, h3 {
  8. text-align: center;
  9. }
  10. h2 {
  11. font-size: 16px;
  12. line-height: 21px;
  13. margin-bottom: 16px;
  14. }
  15. h3 {
  16. font-size: 20px;
  17. line-height: 27px;
  18. margin-bottom: 16px;
  19. }
  20. p {
  21. font-size: 12px;
  22. line-height: 16px;
  23. margin-bottom: 24px;
  24. &:last-child {
  25. margin-bottom: 0;
  26. }
  27. }
  28. @include responsive(smallest) {
  29. width: calc(100% - 48px);
  30. margin-left: 24px;
  31. margin-right: 24px; // TODO Maybe change this to 12 later
  32. }
  33. @include responsive(small) {
  34. width: 552px;
  35. margin-left: auto;
  36. margin-right: auto;
  37. }
  38. }