Skip to content

Instantly share code, notes, and snippets.

View ogbaoghene's full-sized avatar

Ogbaoghene ogbaoghene

View GitHub Profile
@ogbaoghene
ogbaoghene / Animations
Created April 21, 2015 10:20
Lime animations library
@keyframes fadeInDown {
0% {
opacity: 0;
transform: translate3d(0, -100%, 0);
}
100% {
opacity: 1;
transform: none;
}
@ogbaoghene
ogbaoghene / styleguide
Created April 21, 2015 12:00
Lime overview and best practises
# Lime Utilities
## A library of Sass modules - functions, mixins, placeholders and variables.
Welcome to the Lime Utilities overview. Before continuing, you should have a general understanding of the [SCSS](http://sass-lang.com/) syntax, and [KSS](https://github.com/kneath/kss) documentation.
### Coding Style
#### Spacing
- Use soft-tabs with a two space indent. Spaces are the only way to guarantee code renders the same in any person's environment.