common.less 950 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. @no: 15;
  2. // 320px
  3. @media screen and (min-width: 320px) {
  4. html {
  5. font-size: (320px / @no);
  6. }
  7. }
  8. // 360px
  9. @media screen and (min-width: 360px) {
  10. html {
  11. font-size: (360px / @no);
  12. }
  13. }
  14. // 375px iphone 678
  15. @media screen and (min-width: 375px) {
  16. html {
  17. font-size: (375px / @no);
  18. }
  19. }
  20. // 384px
  21. @media screen and (min-width: 384px) {
  22. html {
  23. font-size: (384px / @no);
  24. }
  25. }
  26. // 400px
  27. @media screen and (min-width: 400px) {
  28. html {
  29. font-size: (400px / @no);
  30. }
  31. }
  32. // 414px
  33. @media screen and (min-width: 414px) {
  34. html {
  35. font-size: (414px / @no);
  36. }
  37. }
  38. // 424px
  39. @media screen and (min-width: 424px) {
  40. html {
  41. font-size: (424px / @no);
  42. }
  43. }
  44. // 540px
  45. @media screen and (min-width: 540px) {
  46. html {
  47. font-size: (540px / @no);
  48. }
  49. }
  50. // 720px
  51. @media screen and (min-width: 720px) {
  52. html {
  53. font-size: (720px / @no);
  54. }
  55. }
  56. // 750px
  57. @media screen and (min-width: 750px) {
  58. html {
  59. font-size: (750px / @no);
  60. }
  61. }