Skip to content

Instantly share code, notes, and snippets.

@inanutshell86
Last active March 15, 2017 12:48
Show Gist options
  • Save inanutshell86/c31bceec6bd131245b399dbb190cd200 to your computer and use it in GitHub Desktop.
Save inanutshell86/c31bceec6bd131245b399dbb190cd200 to your computer and use it in GitHub Desktop.
body,
html {
width: 100%;
height: 100%;
padding: 0;
margin: 0;
}
body {
font-size: 18px;
font-family: @base-font;
line-height: 27px;
-webkit-font-smoothing: antialiased;
background: @bg-color;
}
.wrapper {
position: relative;
min-height: 100%;
height: auto !important;
overflow: hidden;
min-width: @container-width + 20px;
}
.wrapper:after {
content: "";
display: block;
height: @footer-height;
}
.container {
width: @container-width;
margin: 0 auto;
}
.page-footer {
height: @footer-height;
width: 100%;
margin-top: -@footer-height;
position: relative;
min-width: @container-width + 20px;
}
*, *:before, *:after {
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
li {
list-style: none;
}
ul {
padding: 0;
margin: 0;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
font-weight: normal;
}
a {
text-decoration: none;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment