Skip to content

Instantly share code, notes, and snippets.

View diegowifi's full-sized avatar

Diego Ponce diegowifi

View GitHub Profile
/** 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;
@diegowifi
diegowifi / gist:5dfcc6d83600e3af2b92
Created March 16, 2015 01:01
Equal height for divs inside a row
/*
* Row with equal height columns
* --------------------------------------------------
*/
.row-eq-height {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
}