├── .gitignore ├── 404.html ├── Gruntfile.js ├── LICENSE ├── README.md ├── css └── material.css ├── demo-files ├── avatar.jpg ├── card-hero.jpg ├── demo.css ├── demo.js └── sidemenu-hero.jpg ├── dist ├── material.min.css └── material.min.js ├── fonts ├── material-design-icons.eot ├── material-design-icons.svg ├── material-design-icons.ttf └── material-design-icons.woff ├── img ├── avatar.jpg └── sidemenu-hero.jpg ├── index.html ├── js └── material.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/404.html -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/README.md -------------------------------------------------------------------------------- /css/material.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/css/material.css -------------------------------------------------------------------------------- /demo-files/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/demo-files/avatar.jpg -------------------------------------------------------------------------------- /demo-files/card-hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/demo-files/card-hero.jpg -------------------------------------------------------------------------------- /demo-files/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/demo-files/demo.css -------------------------------------------------------------------------------- /demo-files/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/demo-files/demo.js -------------------------------------------------------------------------------- /demo-files/sidemenu-hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/demo-files/sidemenu-hero.jpg -------------------------------------------------------------------------------- /dist/material.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/dist/material.min.css -------------------------------------------------------------------------------- /dist/material.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/dist/material.min.js -------------------------------------------------------------------------------- /fonts/material-design-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/fonts/material-design-icons.eot -------------------------------------------------------------------------------- /fonts/material-design-icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/fonts/material-design-icons.svg -------------------------------------------------------------------------------- /fonts/material-design-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/fonts/material-design-icons.ttf -------------------------------------------------------------------------------- /fonts/material-design-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/fonts/material-design-icons.woff -------------------------------------------------------------------------------- /img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/img/avatar.jpg -------------------------------------------------------------------------------- /img/sidemenu-hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/img/sidemenu-hero.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/index.html -------------------------------------------------------------------------------- /js/material.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/js/material.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nt1m/material-framework/HEAD/package.json --------------------------------------------------------------------------------