LightCSS Reset is a simple & scalable CSS Reset for SCSS users.
- Source: https://github.com/sivan/lightcss-reset
- Twitter: @SivanSun
- Weibo: @Sivan
- Simple(3KB) but scalable(with components and modules) AND very easy to use, you can modify your own version by only three steps;
- Work with normalize.css or Eric Meyer's CSS Reset;
- HTML5 ready. Use the new elements with confidence;
- Cross-browser compatible (Chrome, Opera, Safari, Firefox 3.6+, IE6+);
- Includes useful CSS helpers;
- Includes a optional reset for WordPress theme authors;
- Also include a simple CSS version.
There are only three steps to modify LightCSS Reset in your project.
Now just copy _base
directory to your SCSS directory and follow _base/reset.scss
to use it.
With LightCSS Reset, you can use normalize.css or Eric Meyer's CSS Reset.
@import "libs/_normalize";
If you like normalize.css and need to support legacy browsers(IE6), you should use @import "libs/_normalize-legacy";
instead.
Config the basic code style you like in _custom.scss
, if you have additional SCSS files from plugins, just move to modules
and import them.
* Include WordPress reset file if your project is a WordPress theme
@import "libs/_wordpress.scss";
Now just import _base/reset.scss
in your project(e.g style.scss) and begin to work!
@import "_base/reset.scss";
* If you don't use SCSS preprocessor, just use the css version from css/reset.min.css
.*
-- EOF --