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
| @keyframes fadeInDown { | |
| 0% { | |
| opacity: 0; | |
| transform: translate3d(0, -100%, 0); | |
| } | |
| 100% { | |
| opacity: 1; | |
| transform: none; | |
| } |
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
| # 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. |
OlderNewer