/* Main CSS */ section { float: left; display: inline-block; width: 50%; padding-top: 55px; height: 100vh; overflow: scroll; overflow-x: hidden; } section::-webkit-scrollbar { display: none; } svg { padding-top: 49px; fill: #454752; stroke-width: 1; stroke: #454752; height: 100vh; } /* Clock */ #timeBox { margin-left: 1rem; padding: 1rem; font-family: 'Open Sans', sans-serif; } .time { display: inline-block; font-size: 7rem; margin: 0; } #date { font-size: 2rem; margin: 0; } /* Mobile support */ @viewport { width: device-width; zoom: 1.0; } /* Support for mobile devices */ @media screen and (min-width:0px) and (max-width:1000px) { section { width: 100%!important; } svg { display: none; } .time { font-size: 4rem!important; } }