Created
December 31, 2019 05:52
-
-
Save PatheticMustan/553d808c523a83af08ad737b2b823921 to your computer and use it in GitHub Desktop.
HTML Page for quick viewing of LEVELS Events
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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