You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 6, 2021. It is now read-only.
/* midway - simplified responsive elements centering v1.0.1
* Crafted in Finland by a Dutchman called Fabian de Laender
* Copyright (c) 2014 Fabian de Laender; Licensed MIT
*/
function _initMidway(){"use strict";var e=document.querySelectorAll(".midway-horizontal"),t=document.querySelectorAll(".midway-vertical"),n=0;for(n=0;n<e.length;n++){e[n].style.marginLeft=-e[n].offsetWidth/2+"px";e[n].style.display="inline";e[n].style.position="absolute";e[n].style.left="50%"}for(n=0;n<t.length;n++){t[n].style.marginTop=-t[n].offsetWidth/2+"px";t[n].style.display="inline";t[n].style.position="absolute";t[n].style.top="50%"}}window.onload=function(){_initMidway()};window.onresize=function(){_initMidway()}