基于umi的开发模板

index.less 1020B

1234567891011121314151617181920212223242526272829303132
  1. .game_content {
  2. font-family: Georgia, sans-serif;
  3. text-align: center;
  4. }
  5. /* 2k以上分辨率 */
  6. @media screen and (min-width: 2560px) {
  7. }
  8. /* 正常分辨率 */
  9. @media only screen and (min-width: 1400px) and (max-width: 1920px) {
  10. }
  11. /* iPad Pro 分辨率 */
  12. @media only screen and (min-width: 1025px) and (max-width: 1399px) {
  13. }
  14. @media only screen and (min-width: 1024px) and (max-width: 1399px) and (orientation: portrait) {
  15. }
  16. /* iPad 分辨率 */
  17. @media only screen and (orientation: landscape) and (min-device-width: 768px) and (max-device-width: 1024px) {
  18. }
  19. @media only screen and (orientation: portrait) and (min-device-width: 768px) and (max-device-width: 1024px) and (min-device-height: 768px) and (max-device-height: 1024px) {
  20. }
  21. /* 手机分辨率 */
  22. @media only screen and (max-device-width: 960px) and (max-device-height: 960px) {
  23. }
  24. @media only screen and (max-device-width: 960px) and (max-device-height: 960px) and (orientation: portrait) {
  25. }
  26. @import "../utils/logic_tools/GameModal/game_modal.less";