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
| /** Every element includes borders and padding as part of the width */ | |
| *,*:before,*:after { | |
| -moz-box-sizing:border-box; | |
| -webkit-box-sizing:border-box; | |
| box-sizing:border-box; | |
| } | |
| $screen-sm:750px; | |
| $screen-md:970px; | |
| $screen-lg:1024px; |
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
| /* | |
| * Row with equal height columns | |
| * -------------------------------------------------- | |
| */ | |
| .row-eq-height { | |
| display: -webkit-box; | |
| display: -webkit-flex; | |
| display: -ms-flexbox; | |
| display: flex; | |
| } |
NewerOlder