Last active
August 29, 2015 14:01
-
-
Save nbatalla03/2e58ced68ab810d0bed7 to your computer and use it in GitHub Desktop.
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
*, *: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