Skip to content

Instantly share code, notes, and snippets.

@nbatalla03
Last active August 29, 2015 14:01
Show Gist options
  • Save nbatalla03/2e58ced68ab810d0bed7 to your computer and use it in GitHub Desktop.
Save nbatalla03/2e58ced68ab810d0bed7 to your computer and use it in GitHub Desktop.
*, *:before, *:after {
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
html {
font: normal 100% "open-sans";
-webkit-font-smoothing: antialiased;
text-rendering: optimizelegibility;
}
.container {
max-width: 1200px; /* Changes based on project */
width: 100%;
}
.row {
clear: both;
}
.column {
float: left;
margin-left: 2%; /* Changes based on project */
}
.column:first-child {
margin-left: none;
}
/* Clearfix */
.cf:before,
.cf:after {
content: " ";
display: table;
}
.cf:after {
clear: both;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment