styles.scss 543 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. body {
  2. margin: 0;
  3. }
  4. /* use this to put borders around things... */
  5. .thin_border {
  6. border: 1px solid black;
  7. }
  8. div {
  9. border: 1px solid gray;
  10. box-sizing: border-box;
  11. margin: 0;
  12. padding: 0;
  13. float: left;
  14. }
  15. @media (min-width: 750px) {
  16. .responsive {
  17. display: inline-block;
  18. width: 400px;
  19. }
  20. }
  21. @media (min-width: 1000px) {
  22. .responsive {
  23. display: inline;
  24. width: 500px;
  25. }
  26. }
  27. @media (min-width: 500px) {
  28. body {
  29. background: #ff8060;
  30. }
  31. }
  32. @media (min-width: 1000px) {
  33. body {
  34. background: #80e0a0;
  35. }
  36. }