Skip to content

Instantly share code, notes, and snippets.

@vpodk
Created April 20, 2020 01:47
Show Gist options
  • Save vpodk/ba0cd3fc88bcc55f5522676be28b92df to your computer and use it in GitHub Desktop.
Save vpodk/ba0cd3fc88bcc55f5522676be28b92df to your computer and use it in GitHub Desktop.
Clean Application - Block Positions
body {
font-family: arial, sans-serif;
-webkit-font-smoothing: antialiased;
}
#main {
margin: 5em auto 0;
}
header,
footer {
height: 5em;
width: 100%;
}
header {
position: fixed;
}
header h1 {
float: left;
}
@media only screen and (min-width: 768px) {
header,
footer,
#main {
max-width: 1440px;
}
header,
footer {
margin: 0 auto;
}
header {
left: 50%;
transform: translateX(-50%);
}
}
@vpodk
Copy link
Author

vpodk commented Apr 20, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment