main.css 665 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. html,
  2. body {
  3. height: 100%;
  4. width: 100%;
  5. padding: 0;
  6. margin: 0;
  7. }
  8. body {
  9. background: #fafafa;
  10. font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  11. color: #333;
  12. -webkit-font-smoothing: antialiased;
  13. overflow-x: hidden;
  14. }
  15. #ads,
  16. #ads2 {
  17. display: none;
  18. }
  19. @media screen and (min-width: 520px) {
  20. #ads {
  21. display: block;
  22. position: absolute;
  23. top: 8px;
  24. left: 50%;
  25. margin-left: -150px;
  26. }
  27. }
  28. @media screen and (min-width: 720px) {
  29. #ads{
  30. display: none;
  31. }
  32. #ads2 {
  33. display: block;
  34. position: absolute;
  35. bottom: 4px;
  36. left: 4px;
  37. }
  38. }