Skip to content

Instantly share code, notes, and snippets.

@vrusua
Last active August 29, 2015 14:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vrusua/86ba1ac7fa054aa3f691 to your computer and use it in GitHub Desktop.
Save vrusua/86ba1ac7fa054aa3f691 to your computer and use it in GitHub Desktop.
some useful snippets
                        ### SNIPPETS ###

#patterns More-or-Less Mixins

LESS mixins + + + + + + + site source

#patterns A List Apart's pattern library

CSS mixins + + + + + site source

#patterns Preboot Mixins

LESS mixins + + + + site source

// == BEM == //==========================================================================

block {
  &__element {
    &--modifier-one {
       color: red;
    }
    &--modifier--two {
       color: blue;
    }
  }
} 

// == / BEM ==

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment