Created
January 31, 2018 20:04
-
-
Save dfa1234/5ca255220011deec782bd7551eb215af to your computer and use it in GitHub Desktop.
css magic box
This file contains hidden or 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
<html> | |
<head> | |
<title>Snippets</title> | |
<style> | |
body{ | |
margin:0; | |
} | |
.container{ | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
background: midnightblue; | |
width: 100%; | |
height: 100%; | |
} | |
.box{ | |
background: lightblue; | |
} | |
@media(orientation: portrait){ | |
.box{ | |
width: 80%; | |
padding-top: 80vw; | |
} | |
} | |
@media(orientation: landscape){ | |
.box{ | |
height: 80%; | |
padding-right: 80vh; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="box"></div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment