styles.css 527 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. body {
  2. font-family: Helvetica,Tahoma;
  3. }
  4. *,
  5. *:before,
  6. *:after {
  7. box-sizing: border-box;
  8. }
  9. .aos-all {
  10. width: 1000px;
  11. max-width: 98%;
  12. margin: 10vh auto 0 auto;
  13. }
  14. .aos-item {
  15. display: inline-block;
  16. float: left;
  17. width: 33.3333%;
  18. height: 300px;
  19. padding: 20px;
  20. }
  21. .aos-item__inner {
  22. position: relative;
  23. width: 100%;
  24. height: 100%;
  25. float: left;
  26. background: #1da4e2;
  27. line-height: 260px;
  28. text-align: center;
  29. color: #fff;
  30. }
  31. @media screen and (max-width: 800px) {
  32. .aos-item {
  33. width: 50%;
  34. }
  35. }