Guest User

Untitled

a guest
Dec 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. .flex, .cards, .card {
  2. display: flex;
  3. }
  4.  
  5. .flex {
  6. flex-wrap:wrap;
  7. }
  8.  
  9. .cards, .card {
  10. align-items:center;
  11. }
  12.  
  13. .cards {
  14. padding: 1em;
  15. background-color: $color-lightest;
  16. box-shadow: 0px 1px 22px 4px rgba(0, 0, 0, 0.07);
  17. }
  18.  
  19. @media screen and (min-width: 480px) {
  20. .cards {
  21. width: 49%;
  22. margin: 1%;
  23. }
  24.  
  25. .cards:nth-of-type(even) {
  26. margin-right: 0;
  27. }
  28.  
  29. .cards:nth-of-type(odd) {
  30. margin-left: 0;
  31. }
  32. }
  33.  
  34. @media screen and (min-width: 1024px) {
  35. .cards {
  36. width: 32%;
  37. margin: 1%;
  38. }
  39.  
  40. .cards:nth-of-type(3n) {
  41. margin-right: 0;
  42. }
  43.  
  44. .cards:nth-of-type(3n+1) {
  45. margin-left: 0;
  46. }
  47. }
Add Comment
Please, Sign In to add comment