1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- @no: 15;
- // 320px
- @media screen and (min-width: 320px) {
- html {
- font-size: (320px / @no);
- }
- }
- // 360px
- @media screen and (min-width: 360px) {
- html {
- font-size: (360px / @no);
- }
- }
- // 375px iphone 678
- @media screen and (min-width: 375px) {
- html {
- font-size: (375px / @no);
- }
- }
- // 384px
- @media screen and (min-width: 384px) {
- html {
- font-size: (384px / @no);
- }
- }
- // 400px
- @media screen and (min-width: 400px) {
- html {
- font-size: (400px / @no);
- }
- }
- // 414px
- @media screen and (min-width: 414px) {
- html {
- font-size: (414px / @no);
- }
- }
- // 424px
- @media screen and (min-width: 424px) {
- html {
- font-size: (424px / @no);
- }
- }
- // 540px
- @media screen and (min-width: 540px) {
- html {
- font-size: (540px / @no);
- }
- }
- // 720px
- @media screen and (min-width: 720px) {
- html {
- font-size: (720px / @no);
- }
- }
- // 750px
- @media screen and (min-width: 750px) {
- html {
- font-size: (750px / @no);
- }
- }
|