Describe the project, what is it. What problem does the application look to solve.
Show how other people can use your project (i.e. API, library, framework).
code sample
@mixin prefixr( $property, $value, $prefixes: webkit moz ) { | |
@each $prefix in $prefixes { | |
-#{$prefix}-#{$property}: $value; | |
} | |
#{$property}: $value; | |
} |
// ----------------------------------------------------------------------------- | |
// Transitions | |
// ----------------------------------------------------------------------------- | |
// Uses prefixr mixin gist: | |
// https://gist.github.com/defo550/7073344 | |
// Example: | |
// @include transition( all 0.2s ease ); | |
// @include transtion( opacity 0.2s ease, height 0.3s ease ) |
Single CSS component class that uses modifier classes to emulate Bootstraps "well", "panel", "thumbnail" components, and how to modify main component class to offer alternative styles.
A Pen by Christopher DeFelice on CodePen.
._pan, ._ptn, ._pvn { | |
padding-top: 0 !important; | |
} | |
._pan, ._prn, ._phn { | |
padding-right: 0 !important; | |
} | |
._pan, ._pbn, ._pvn { | |
padding-bottom: 0 !important; |