(function (window) { var setHtmlSize = function (w) { var b = 750 / 100; var c = window.innerWidth; if (w) { c = w } var a = c / b; if (a < 42) { a = 42 } else if (a > 60) { a = 60 } document.querySelector("html").style.fontSize = a + "px"; if (navigator.userAgent.indexOf("iPad") != -1) { document.querySelector("html").style.fontSize = "60px" } }; setHtmlSize(); window.onresize = function () { var w = window.innerWidth; setHtmlSize(w) } }(window));