respo.css 922 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. @media screen and (min-width: 768px) {
  2. .page-header h1 {
  3. margin: 0;
  4. padding: 40px 0 30px 0;
  5. color: #fff;
  6. text-align: center;
  7. font-size: 30px;
  8. }
  9. .games .detail .name {
  10. font-size: 32px;
  11. }
  12. .games p {
  13. font-size: 14px;
  14. }
  15. .games p.desc {
  16. font-size: 16px;
  17. line-height: 1.5em;
  18. margin-top: 5px;
  19. }
  20. .games .down {
  21. top: 40px;
  22. right: 10px;
  23. width: 90px;
  24. height: 50px;
  25. line-height: 50px;
  26. border-radius: 8px;
  27. border: 2px solid #0076ff;
  28. font-size: 24px;
  29. }
  30. .games .detail {
  31. width: 50%;
  32. width: -moz-calc(75% - 130px);
  33. width: -webkit-calc(75% - 130px);
  34. width: calc(75% - 130px);
  35. }
  36. .games .icon {
  37. margin-right: 15px;
  38. width: 25%;
  39. max-width: 148px;
  40. border-radius: 10px;
  41. }
  42. }