Advertisement
Guest User

Untitled

a guest
Mar 1st, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. @media (min-width: 50em) and (min-height: 50em) {
  2. /* guarantees at least 1em in all viewports */
  3. ul {font-size: 2vmin; -webkit-columns: 4;}
  4. }
  5.  
  6. /* automatically magnify business-card-style page in large viewports */
  7. /* please don't use this unless you yourself posses a large monitor! */
  8. @media (min-width: 50em) and (min-height: 64em) {
  9. /* start with 100% at 50em, we'll have 150% magnification at 75em */
  10. html {font-size: 2vmin;}
  11. }
  12. @media (min-width: 75em) and (min-height: 96em) {
  13. /* start with 225% magnification at 75em (75 / 100 * 3 = 2.25) */
  14. html {font-size: 3vmin;}
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement