├── .gitignore ├── .travis.yml ├── CNAME ├── CONTRIBUTING.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── _config.yml ├── dist ├── fonts │ ├── photon-entypo.eot │ ├── photon-entypo.svg │ ├── photon-entypo.ttf │ └── photon-entypo.woff └── template-app │ ├── app.js │ ├── index.html │ ├── js │ └── menu.js │ └── package.json ├── docs ├── LICENSE ├── _includes │ ├── footer.html │ ├── header.html │ ├── javascript.html │ └── nav.html ├── _layouts │ └── default.html ├── assets │ ├── img │ │ ├── avatar.jpg │ │ ├── avatar2.png │ │ ├── avatar3.jpg │ │ ├── avatar4.jpg │ │ ├── avatar5.png │ │ ├── avatar6.jpg │ │ ├── avatar7.jpg │ │ └── photo-couch.png │ └── js │ │ ├── docs.js │ │ ├── jq.js │ │ └── sticky.js ├── components.html ├── components │ ├── bars-actions.html │ ├── bars-tabs.html │ ├── bars.html │ ├── basic-sidebar.html │ ├── basic-window.html │ ├── button-groups.html │ ├── buttons-large.html │ ├── buttons-mini.html │ ├── buttons.html │ ├── common-layout.html │ ├── forms.html │ ├── icons.html │ ├── lists.html │ ├── mini-sidebar.html │ ├── navs.html │ ├── tables.html │ └── three-paned.html ├── demo-app.html ├── getting-started.html └── index.html ├── fonts ├── photon-entypo.eot ├── photon-entypo.svg ├── photon-entypo.ttf └── photon-entypo.woff ├── js ├── dragbar.js ├── photon.js ├── selection.js └── textfield.js ├── package.json └── sass ├── appify.scss ├── bars.scss ├── base.scss ├── button-groups.scss ├── buttons.scss ├── docs.scss ├── forms.scss ├── grid.scss ├── icons.scss ├── images.scss ├── lists.scss ├── mixins.scss ├── navs.scss ├── normalize.scss ├── photon.scss ├── tables.scss ├── tabs.scss ├── utilities.scss └── variables.scss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/.travis.yml -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | photonkit.com 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/_config.yml -------------------------------------------------------------------------------- /dist/fonts/photon-entypo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/dist/fonts/photon-entypo.eot -------------------------------------------------------------------------------- /dist/fonts/photon-entypo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/dist/fonts/photon-entypo.svg -------------------------------------------------------------------------------- /dist/fonts/photon-entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/dist/fonts/photon-entypo.ttf -------------------------------------------------------------------------------- /dist/fonts/photon-entypo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/dist/fonts/photon-entypo.woff -------------------------------------------------------------------------------- /dist/template-app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/dist/template-app/app.js -------------------------------------------------------------------------------- /dist/template-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/dist/template-app/index.html -------------------------------------------------------------------------------- /dist/template-app/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/dist/template-app/js/menu.js -------------------------------------------------------------------------------- /dist/template-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/dist/template-app/package.json -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/_includes/footer.html -------------------------------------------------------------------------------- /docs/_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/_includes/header.html -------------------------------------------------------------------------------- /docs/_includes/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/_includes/javascript.html -------------------------------------------------------------------------------- /docs/_includes/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/_includes/nav.html -------------------------------------------------------------------------------- /docs/_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/_layouts/default.html -------------------------------------------------------------------------------- /docs/assets/img/avatar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/assets/img/avatar.jpg -------------------------------------------------------------------------------- /docs/assets/img/avatar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/assets/img/avatar2.png -------------------------------------------------------------------------------- /docs/assets/img/avatar3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/assets/img/avatar3.jpg -------------------------------------------------------------------------------- /docs/assets/img/avatar4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/assets/img/avatar4.jpg -------------------------------------------------------------------------------- /docs/assets/img/avatar5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/assets/img/avatar5.png -------------------------------------------------------------------------------- /docs/assets/img/avatar6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/assets/img/avatar6.jpg -------------------------------------------------------------------------------- /docs/assets/img/avatar7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/assets/img/avatar7.jpg -------------------------------------------------------------------------------- /docs/assets/img/photo-couch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/assets/img/photo-couch.png -------------------------------------------------------------------------------- /docs/assets/js/docs.js: -------------------------------------------------------------------------------- 1 | $('.example-component-container').Stickyfill(); 2 | -------------------------------------------------------------------------------- /docs/assets/js/jq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/assets/js/jq.js -------------------------------------------------------------------------------- /docs/assets/js/sticky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/assets/js/sticky.js -------------------------------------------------------------------------------- /docs/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components.html -------------------------------------------------------------------------------- /docs/components/bars-actions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/bars-actions.html -------------------------------------------------------------------------------- /docs/components/bars-tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/bars-tabs.html -------------------------------------------------------------------------------- /docs/components/bars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/bars.html -------------------------------------------------------------------------------- /docs/components/basic-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/basic-sidebar.html -------------------------------------------------------------------------------- /docs/components/basic-window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/basic-window.html -------------------------------------------------------------------------------- /docs/components/button-groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/button-groups.html -------------------------------------------------------------------------------- /docs/components/buttons-large.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/buttons-large.html -------------------------------------------------------------------------------- /docs/components/buttons-mini.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/buttons-mini.html -------------------------------------------------------------------------------- /docs/components/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/buttons.html -------------------------------------------------------------------------------- /docs/components/common-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/common-layout.html -------------------------------------------------------------------------------- /docs/components/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/forms.html -------------------------------------------------------------------------------- /docs/components/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/icons.html -------------------------------------------------------------------------------- /docs/components/lists.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/lists.html -------------------------------------------------------------------------------- /docs/components/mini-sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/mini-sidebar.html -------------------------------------------------------------------------------- /docs/components/navs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/navs.html -------------------------------------------------------------------------------- /docs/components/tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/tables.html -------------------------------------------------------------------------------- /docs/components/three-paned.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/components/three-paned.html -------------------------------------------------------------------------------- /docs/demo-app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/demo-app.html -------------------------------------------------------------------------------- /docs/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/getting-started.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/docs/index.html -------------------------------------------------------------------------------- /fonts/photon-entypo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/fonts/photon-entypo.eot -------------------------------------------------------------------------------- /fonts/photon-entypo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/fonts/photon-entypo.svg -------------------------------------------------------------------------------- /fonts/photon-entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/fonts/photon-entypo.ttf -------------------------------------------------------------------------------- /fonts/photon-entypo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/fonts/photon-entypo.woff -------------------------------------------------------------------------------- /js/dragbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/js/dragbar.js -------------------------------------------------------------------------------- /js/photon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/js/photon.js -------------------------------------------------------------------------------- /js/selection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/js/selection.js -------------------------------------------------------------------------------- /js/textfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/js/textfield.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/package.json -------------------------------------------------------------------------------- /sass/appify.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/appify.scss -------------------------------------------------------------------------------- /sass/bars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/bars.scss -------------------------------------------------------------------------------- /sass/base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/base.scss -------------------------------------------------------------------------------- /sass/button-groups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/button-groups.scss -------------------------------------------------------------------------------- /sass/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/buttons.scss -------------------------------------------------------------------------------- /sass/docs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/docs.scss -------------------------------------------------------------------------------- /sass/forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/forms.scss -------------------------------------------------------------------------------- /sass/grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/grid.scss -------------------------------------------------------------------------------- /sass/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/icons.scss -------------------------------------------------------------------------------- /sass/images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/images.scss -------------------------------------------------------------------------------- /sass/lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/lists.scss -------------------------------------------------------------------------------- /sass/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/mixins.scss -------------------------------------------------------------------------------- /sass/navs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/navs.scss -------------------------------------------------------------------------------- /sass/normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/normalize.scss -------------------------------------------------------------------------------- /sass/photon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/photon.scss -------------------------------------------------------------------------------- /sass/tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/tables.scss -------------------------------------------------------------------------------- /sass/tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/tabs.scss -------------------------------------------------------------------------------- /sass/utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/utilities.scss -------------------------------------------------------------------------------- /sass/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProPuke/photon/HEAD/sass/variables.scss --------------------------------------------------------------------------------