MaterialCSS

A set of pure CSS Material Design styles


Keywords
css, material, design, scss, less
License
MIT
Install
bower install MaterialCSS

Documentation

MaterialCSS

A set of pure CSS Material Design styles

Demo - http://dudeofawesome.github.io/MaterialCSS/

How to use:

  1. Import material.scss into your main SASS stylesheet

    @import 'material';
  2. Set your color scheme in _colors.scss

  3. Apply the appropriate classes to each element you want styled

    <input class="material light" type="checkbox">
    <input disabled class="material light raised" value="ok" type="button">

    Switches need a little bit of extra work

    <div class="material light switch">
      <input id="toggle-1" type="checkbox">
      <label for="toggle-1"></label>
    </div>
  4. ????
  5. PROFIT!!!