Layout.scss 561 B

123456789101112131415161718192021222324252627282930313233343536
  1. /**
  2. * React Static Boilerplate
  3. * https://github.com/koistya/react-static-boilerplate
  4. * Copyright (c) Konstantin Tarkus (@koistya) | MIT license
  5. */
  6. $darkgray: #333;
  7. $lightgray: #f7f7f7;
  8. html, body {
  9. font-family: 'Roboto', 'Helvetica', sans-serif;
  10. margin: 0;
  11. padding: 0;
  12. color: $darkgray;
  13. background-color: $lightgray;
  14. }
  15. @media (min-width: 768px) {
  16. .Layout {
  17. width: 750px;
  18. }
  19. }
  20. @media (min-width: 992px) {
  21. .Layout {
  22. width: 970px;
  23. }
  24. }
  25. @media (min-width: 1200px) {
  26. .Layout {
  27. width: 1170px;
  28. }
  29. }
  30. .Layout {
  31. margin: 0 auto;
  32. }