├── .gitignore ├── LICENSE ├── README.md ├── bower.json ├── demo ├── material-cards_jquery-plugin.html ├── material-cards_jquery-plugin_masonry.html └── material-cards_simple.html ├── dist ├── material-cards-auto-height.css └── material-cards.css ├── js ├── jquery.material-cards.js └── jquery.material-cards.min.js └── less ├── gm-variables.less ├── material-cards-auto-height.less ├── material-cards.less ├── material-color.less └── mixin.less /.gitignore: -------------------------------------------------------------------------------- 1 | bower_components 2 | 3 | .idea 4 | /demo/codepen.html 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/README.md -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/bower.json -------------------------------------------------------------------------------- /demo/material-cards_jquery-plugin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/demo/material-cards_jquery-plugin.html -------------------------------------------------------------------------------- /demo/material-cards_jquery-plugin_masonry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/demo/material-cards_jquery-plugin_masonry.html -------------------------------------------------------------------------------- /demo/material-cards_simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/demo/material-cards_simple.html -------------------------------------------------------------------------------- /dist/material-cards-auto-height.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/dist/material-cards-auto-height.css -------------------------------------------------------------------------------- /dist/material-cards.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/dist/material-cards.css -------------------------------------------------------------------------------- /js/jquery.material-cards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/js/jquery.material-cards.js -------------------------------------------------------------------------------- /js/jquery.material-cards.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/js/jquery.material-cards.min.js -------------------------------------------------------------------------------- /less/gm-variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/less/gm-variables.less -------------------------------------------------------------------------------- /less/material-cards-auto-height.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/less/material-cards-auto-height.less -------------------------------------------------------------------------------- /less/material-cards.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/less/material-cards.less -------------------------------------------------------------------------------- /less/material-color.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/less/material-color.less -------------------------------------------------------------------------------- /less/mixin.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marlenesco/material-cards/HEAD/less/mixin.less --------------------------------------------------------------------------------