Skip to content

Instantly share code, notes, and snippets.

@PatheticMustan
Created December 31, 2019 05:52
Show Gist options
  • Save PatheticMustan/553d808c523a83af08ad737b2b823921 to your computer and use it in GitHub Desktop.
Save PatheticMustan/553d808c523a83af08ad737b2b823921 to your computer and use it in GitHub Desktop.
HTML Page for quick viewing of LEVELS Events
<!DOCTYPE html>
<html>
<head>
<title>Levels Quickview</title>
<style>
#flexbox {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
overflow: auto;
background: black;
display: flex;
justify-content: space-around;
align-items: center;
align-content: center;
}
#cell {
max-width: 100%
}
#img {
position: fixed;
left: 0;
right: 0;
color: white;
border: 1px solid white;
}
</style>
</head>
<body>
<div id="flexbox">
<div id="cell">
<p>test</p>
</div>
<div id="cell">
<img src="https://www.greatnecklibrary.org/levels/images/upcoming/weekdays.jpg">
</div>
<div id="cell">
<img src="https://www.greatnecklibrary.org/levels/images/upcoming/weekdays.jpg">
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment