HyperTrack: Live View Dashboard Template
by agraebe
HTML
<div id="area">
<div id="map-wrapper">
<!-- replace [your_key] with your Publishable Key -->
<iframe id="map" src="https://embed.hypertrack.com/devices?publishable_key=[your_key]" />
</div>
</div>
CSS
html,
body {
background-color: #f3f3f3;
}
#area {
width: 100%;
height: 100%;
padding: 20px;
}
#map {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
#map-wrapper {
position: relative;
overflow: hidden;
padding-top: 75%;
/* percentage of height / width for a desirable ratio (e.g. 9/16) */
box-shadow: 0px 3px 5px 1px rgba(171, 171, 171, 0.75);
}