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
| /* | |
| This rule uses the universal selector, *, to apply the border-box model to all elements on a site | |
| see Paul Irish article for where these styles came from and more on why to do it: | |
| http://www.paulirish.com/2012/box-sizing-border-box-ftw/ | |
| */ | |
| /* apply a natural box layout model to all elements */ | |
| *, *:before, *:after { | |
| -moz-box-sizing: border-box; |
NewerOlder