├── .idea ├── .name ├── angujarjsNaPratica.iml ├── encodings.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml ├── vcs.xml └── workspace.xml ├── 1.html ├── 2.html ├── 3.html ├── 4.html ├── 5.html ├── 6.html ├── 7.html ├── README.md ├── app └── gdg │ └── gdg.controller.js ├── bower.json ├── bower_components ├── angular │ ├── .bower.json │ ├── README.md │ ├── angular-csp.css │ ├── angular.js │ ├── angular.min.js │ ├── angular.min.js.gzip │ ├── angular.min.js.map │ ├── bower.json │ └── package.json └── flat-ui │ ├── .bower.json │ ├── CHANGELOG.md │ ├── Gruntfile.js │ ├── README.md │ ├── bower.json │ ├── dist │ ├── css │ │ ├── flat-ui.css │ │ ├── flat-ui.css.map │ │ ├── flat-ui.min.css │ │ └── vendor │ │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons │ │ │ ├── flat-ui-icons-regular.eot │ │ │ ├── flat-ui-icons-regular.svg │ │ │ ├── flat-ui-icons-regular.ttf │ │ │ ├── flat-ui-icons-regular.woff │ │ │ └── selection.json │ │ └── lato │ │ │ ├── lato-black.eot │ │ │ ├── lato-black.svg │ │ │ ├── lato-black.ttf │ │ │ ├── lato-black.woff │ │ │ ├── lato-bold.eot │ │ │ ├── lato-bold.svg │ │ │ ├── lato-bold.ttf │ │ │ ├── lato-bold.woff │ │ │ ├── lato-bolditalic.eot │ │ │ ├── lato-bolditalic.svg │ │ │ ├── lato-bolditalic.ttf │ │ │ ├── lato-bolditalic.woff │ │ │ ├── lato-italic.eot │ │ │ ├── lato-italic.svg │ │ │ ├── lato-italic.ttf │ │ │ ├── lato-italic.woff │ │ │ ├── lato-light.eot │ │ │ ├── lato-light.svg │ │ │ ├── lato-light.ttf │ │ │ ├── lato-light.woff │ │ │ ├── lato-regular.eot │ │ │ ├── lato-regular.svg │ │ │ ├── lato-regular.ttf │ │ │ └── lato-regular.woff │ ├── img │ │ ├── favicon.ico │ │ ├── icons │ │ │ ├── png │ │ │ │ ├── Book.png │ │ │ │ ├── Calendar.png │ │ │ │ ├── Chat.png │ │ │ │ ├── Clipboard.png │ │ │ │ ├── Compas.png │ │ │ │ ├── Gift-Box.png │ │ │ │ ├── Infinity-Loop.png │ │ │ │ ├── Mail.png │ │ │ │ ├── Map.png │ │ │ │ ├── Pensils.png │ │ │ │ ├── Pocket.png │ │ │ │ ├── Retina-Ready.png │ │ │ │ ├── Toilet-Paper.png │ │ │ │ └── Watches.png │ │ │ └── svg │ │ │ │ ├── book.svg │ │ │ │ ├── calendar.svg │ │ │ │ ├── chat.svg │ │ │ │ ├── clipboard.svg │ │ │ │ ├── clocks.svg │ │ │ │ ├── compas.svg │ │ │ │ ├── gift-box.svg │ │ │ │ ├── loop.svg │ │ │ │ ├── mail.svg │ │ │ │ ├── map.svg │ │ │ │ ├── paper-bag.svg │ │ │ │ ├── pencils.svg │ │ │ │ ├── retina.svg │ │ │ │ ├── ribbon.svg │ │ │ │ └── toilet-paper.svg │ │ ├── login │ │ │ ├── icon.png │ │ │ ├── imac-2x.png │ │ │ └── imac.png │ │ └── tile │ │ │ ├── ribbon-2x.png │ │ │ └── ribbon.png │ ├── index.html │ └── js │ │ ├── flat-ui.js │ │ ├── flat-ui.min.js │ │ └── vendor │ │ ├── html5shiv.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ ├── respond.min.js │ │ ├── video-js.swf │ │ └── video.js │ ├── docs │ ├── assets │ │ ├── css │ │ │ ├── demo.css │ │ │ ├── demo.css.map │ │ │ ├── docs.css │ │ │ ├── docs.css.map │ │ │ └── src │ │ │ │ ├── demo.less │ │ │ │ ├── docs.less │ │ │ │ └── prettyprint.less │ │ ├── img │ │ │ ├── demo │ │ │ │ ├── browser-2x.png │ │ │ │ ├── browser-author.jpg │ │ │ │ ├── browser-pic-1.jpg │ │ │ │ ├── browser-pic-2.jpg │ │ │ │ ├── browser-pic-3.jpg │ │ │ │ ├── browser-pic-4.jpg │ │ │ │ ├── browser-pic-5.jpg │ │ │ │ ├── browser-pic-6.jpg │ │ │ │ ├── browser.png │ │ │ │ ├── html-icon.png │ │ │ │ ├── logo-mask-2x.png │ │ │ │ ├── logo-mask.png │ │ │ │ └── video.jpg │ │ │ ├── example-image.jpg │ │ │ ├── footer │ │ │ │ └── logo.png │ │ │ ├── getting-started │ │ │ │ └── icomoon_import.jpg │ │ │ └── video │ │ │ │ └── poster.jpg │ │ └── js │ │ │ ├── application.js │ │ │ └── prettify.js │ ├── components.html │ ├── examples │ │ ├── buttons.html │ │ ├── dropdowns.html │ │ ├── forms.html │ │ ├── navbar-fixed-top.html │ │ ├── navbar-static-top.html │ │ ├── navbars-with-elements.html │ │ ├── navbars.html │ │ ├── pagination.html │ │ ├── radiocheck.html │ │ ├── select.html │ │ ├── switches.html │ │ ├── tagsinput.html │ │ ├── thumbnails.html │ │ ├── tiles.html │ │ ├── todo-list.html │ │ ├── tooltips.html │ │ ├── typography.html │ │ └── vertical-slider.html │ ├── getting-started.html │ └── template.html │ ├── fonts │ ├── glyphicons │ │ ├── flat-ui-icons-regular.eot │ │ ├── flat-ui-icons-regular.svg │ │ ├── flat-ui-icons-regular.ttf │ │ ├── flat-ui-icons-regular.woff │ │ └── selection.json │ └── lato │ │ ├── lato-black.eot │ │ ├── lato-black.svg │ │ ├── lato-black.ttf │ │ ├── lato-black.woff │ │ ├── lato-bold.eot │ │ ├── lato-bold.svg │ │ ├── lato-bold.ttf │ │ ├── lato-bold.woff │ │ ├── lato-bolditalic.eot │ │ ├── lato-bolditalic.svg │ │ ├── lato-bolditalic.ttf │ │ ├── lato-bolditalic.woff │ │ ├── lato-italic.eot │ │ ├── lato-italic.svg │ │ ├── lato-italic.ttf │ │ ├── lato-italic.woff │ │ ├── lato-light.eot │ │ ├── lato-light.svg │ │ ├── lato-light.ttf │ │ ├── lato-light.woff │ │ ├── lato-regular.eot │ │ ├── lato-regular.svg │ │ ├── lato-regular.ttf │ │ └── lato-regular.woff │ ├── img │ ├── favicon.ico │ ├── icons │ │ ├── png │ │ │ ├── Book.png │ │ │ ├── Calendar.png │ │ │ ├── Chat.png │ │ │ ├── Clipboard.png │ │ │ ├── Compas.png │ │ │ ├── Gift-Box.png │ │ │ ├── Infinity-Loop.png │ │ │ ├── Mail.png │ │ │ ├── Map.png │ │ │ ├── Pensils.png │ │ │ ├── Pocket.png │ │ │ ├── Retina-Ready.png │ │ │ ├── Toilet-Paper.png │ │ │ └── Watches.png │ │ └── svg │ │ │ ├── book.svg │ │ │ ├── calendar.svg │ │ │ ├── chat.svg │ │ │ ├── clipboard.svg │ │ │ ├── clocks.svg │ │ │ ├── compas.svg │ │ │ ├── gift-box.svg │ │ │ ├── loop.svg │ │ │ ├── mail.svg │ │ │ ├── map.svg │ │ │ ├── paper-bag.svg │ │ │ ├── pencils.svg │ │ │ ├── retina.svg │ │ │ ├── ribbon.svg │ │ │ └── toilet-paper.svg │ ├── login │ │ ├── icon.png │ │ ├── imac-2x.png │ │ └── imac.png │ └── tile │ │ ├── ribbon-2x.png │ │ └── ribbon.png │ ├── index.html │ ├── js │ └── radiocheck.js │ ├── less │ ├── flat-ui.less │ ├── mixins.less │ ├── mixins │ │ ├── background-clip.less │ │ ├── background-variant.less │ │ ├── border-radius.less │ │ ├── buttons.less │ │ ├── center-block.less │ │ ├── clearfix.less │ │ ├── forms.less │ │ ├── gradients.less │ │ ├── grid.less │ │ ├── hide-text.less │ │ ├── image.less │ │ ├── nav-divider.less │ │ ├── navbar-vertical-align.less │ │ ├── opacity.less │ │ ├── pagination.less │ │ ├── pallets.less │ │ ├── reset-filter.less │ │ ├── resize.less │ │ ├── responsive-visibility.less │ │ ├── select.less │ │ ├── size.less │ │ ├── switches.less │ │ ├── tab-focus.less │ │ ├── text-emphasis.less │ │ ├── text-overflow.less │ │ └── vendor-prefixes.less │ ├── modules │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── code.less │ │ ├── dropdowns.less │ │ ├── footer.less │ │ ├── forms.less │ │ ├── glyphicons.less │ │ ├── input-groups.less │ │ ├── local-fonts.less │ │ ├── login.less │ │ ├── navbar.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── palette.less │ │ ├── progress-bars.less │ │ ├── radiocheck.less │ │ ├── scaffolding.less │ │ ├── select.less │ │ ├── share.less │ │ ├── slider.less │ │ ├── switch.less │ │ ├── tagsinput.less │ │ ├── thumbnails.less │ │ ├── tiles.less │ │ ├── todo-list.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── typeahead.less │ │ └── video.less │ ├── spaces.less │ └── variables.less │ └── package.json ├── img └── angularjs.png ├── package.json └── style.css /.idea/.name: -------------------------------------------------------------------------------- 1 | angujarjsNaPratica -------------------------------------------------------------------------------- /.idea/angujarjsNaPratica.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/.idea/angujarjsNaPratica.iml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/1.html -------------------------------------------------------------------------------- /2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/2.html -------------------------------------------------------------------------------- /3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/3.html -------------------------------------------------------------------------------- /4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/4.html -------------------------------------------------------------------------------- /5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/5.html -------------------------------------------------------------------------------- /6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/6.html -------------------------------------------------------------------------------- /7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/7.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/README.md -------------------------------------------------------------------------------- /app/gdg/gdg.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/app/gdg/gdg.controller.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower.json -------------------------------------------------------------------------------- /bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/angular/README.md -------------------------------------------------------------------------------- /bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/angular/angular.js -------------------------------------------------------------------------------- /bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /bower_components/angular/angular.min.js.gzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/angular/angular.min.js.gzip -------------------------------------------------------------------------------- /bower_components/angular/angular.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/angular/angular.min.js.map -------------------------------------------------------------------------------- /bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/angular/bower.json -------------------------------------------------------------------------------- /bower_components/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/angular/package.json -------------------------------------------------------------------------------- /bower_components/flat-ui/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/.bower.json -------------------------------------------------------------------------------- /bower_components/flat-ui/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/CHANGELOG.md -------------------------------------------------------------------------------- /bower_components/flat-ui/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/Gruntfile.js -------------------------------------------------------------------------------- /bower_components/flat-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/README.md -------------------------------------------------------------------------------- /bower_components/flat-ui/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/bower.json -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/css/flat-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/css/flat-ui.css -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/css/flat-ui.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/css/flat-ui.css.map -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/css/flat-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/css/flat-ui.min.css -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/css/vendor/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/css/vendor/bootstrap.min.css -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/glyphicons/flat-ui-icons-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/glyphicons/flat-ui-icons-regular.eot -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/glyphicons/flat-ui-icons-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/glyphicons/flat-ui-icons-regular.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/glyphicons/flat-ui-icons-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/glyphicons/flat-ui-icons-regular.ttf -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/glyphicons/flat-ui-icons-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/glyphicons/flat-ui-icons-regular.woff -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/glyphicons/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/glyphicons/selection.json -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-black.eot -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-black.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-black.ttf -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-black.woff -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-bold.eot -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-bold.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-bold.ttf -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-bold.woff -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-bolditalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-bolditalic.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-italic.eot -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-italic.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-italic.ttf -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-italic.woff -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-light.eot -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-light.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-light.ttf -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-light.woff -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-regular.eot -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-regular.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-regular.ttf -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/fonts/lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/fonts/lato/lato-regular.woff -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/favicon.ico -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/png/Book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/png/Book.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/png/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/png/Calendar.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/png/Chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/png/Chat.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/png/Clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/png/Clipboard.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/png/Compas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/png/Compas.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/png/Gift-Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/png/Gift-Box.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/png/Infinity-Loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/png/Infinity-Loop.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/png/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/png/Mail.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/png/Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/png/Map.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/png/Pensils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/png/Pensils.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/png/Pocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/png/Pocket.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/png/Retina-Ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/png/Retina-Ready.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/png/Toilet-Paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/png/Toilet-Paper.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/png/Watches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/png/Watches.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/book.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/calendar.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/chat.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/clipboard.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/clocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/clocks.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/compas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/compas.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/gift-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/gift-box.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/loop.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/mail.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/map.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/paper-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/paper-bag.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/pencils.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/pencils.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/retina.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/retina.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/ribbon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/ribbon.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/icons/svg/toilet-paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/icons/svg/toilet-paper.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/login/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/login/icon.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/login/imac-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/login/imac-2x.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/login/imac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/login/imac.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/tile/ribbon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/tile/ribbon-2x.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/img/tile/ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/img/tile/ribbon.png -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/index.html -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/js/flat-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/js/flat-ui.js -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/js/flat-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/js/flat-ui.min.js -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/js/vendor/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/js/vendor/html5shiv.js -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/js/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/js/vendor/jquery.min.js -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/js/vendor/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/js/vendor/jquery.min.map -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/js/vendor/respond.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/js/vendor/respond.min.js -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/js/vendor/video-js.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/js/vendor/video-js.swf -------------------------------------------------------------------------------- /bower_components/flat-ui/dist/js/vendor/video.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/dist/js/vendor/video.js -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/css/demo.css -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/css/demo.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/css/demo.css.map -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/css/docs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/css/docs.css -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/css/docs.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/css/docs.css.map -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/css/src/demo.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/css/src/demo.less -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/css/src/docs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/css/src/docs.less -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/css/src/prettyprint.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/css/src/prettyprint.less -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/demo/browser-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/demo/browser-2x.png -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/demo/browser-author.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/demo/browser-author.jpg -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/demo/browser-pic-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/demo/browser-pic-1.jpg -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/demo/browser-pic-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/demo/browser-pic-2.jpg -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/demo/browser-pic-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/demo/browser-pic-3.jpg -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/demo/browser-pic-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/demo/browser-pic-4.jpg -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/demo/browser-pic-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/demo/browser-pic-5.jpg -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/demo/browser-pic-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/demo/browser-pic-6.jpg -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/demo/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/demo/browser.png -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/demo/html-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/demo/html-icon.png -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/demo/logo-mask-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/demo/logo-mask-2x.png -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/demo/logo-mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/demo/logo-mask.png -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/demo/video.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/demo/video.jpg -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/example-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/example-image.jpg -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/footer/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/footer/logo.png -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/getting-started/icomoon_import.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/getting-started/icomoon_import.jpg -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/img/video/poster.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/img/video/poster.jpg -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/js/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/js/application.js -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/assets/js/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/assets/js/prettify.js -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/components.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/buttons.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/dropdowns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/dropdowns.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/forms.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/navbar-fixed-top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/navbar-fixed-top.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/navbar-static-top.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/navbar-static-top.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/navbars-with-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/navbars-with-elements.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/navbars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/navbars.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/pagination.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/radiocheck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/radiocheck.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/select.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/switches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/switches.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/tagsinput.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/tagsinput.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/thumbnails.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/thumbnails.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/tiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/tiles.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/todo-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/todo-list.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/tooltips.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/tooltips.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/typography.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/typography.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/examples/vertical-slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/examples/vertical-slider.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/getting-started.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/getting-started.html -------------------------------------------------------------------------------- /bower_components/flat-ui/docs/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/docs/template.html -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/glyphicons/flat-ui-icons-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/glyphicons/flat-ui-icons-regular.eot -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/glyphicons/flat-ui-icons-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/glyphicons/flat-ui-icons-regular.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/glyphicons/flat-ui-icons-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/glyphicons/flat-ui-icons-regular.ttf -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/glyphicons/flat-ui-icons-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/glyphicons/flat-ui-icons-regular.woff -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/glyphicons/selection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/glyphicons/selection.json -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-black.eot -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-black.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-black.ttf -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-black.woff -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-bold.eot -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-bold.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-bold.ttf -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-bold.woff -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-bolditalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-bolditalic.eot -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-bolditalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-bolditalic.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-bolditalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-bolditalic.ttf -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-bolditalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-bolditalic.woff -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-italic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-italic.eot -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-italic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-italic.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-italic.ttf -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-italic.woff -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-light.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-light.eot -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-light.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-light.ttf -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-light.woff -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-regular.eot -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-regular.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-regular.ttf -------------------------------------------------------------------------------- /bower_components/flat-ui/fonts/lato/lato-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/fonts/lato/lato-regular.woff -------------------------------------------------------------------------------- /bower_components/flat-ui/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/favicon.ico -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/png/Book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/png/Book.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/png/Calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/png/Calendar.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/png/Chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/png/Chat.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/png/Clipboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/png/Clipboard.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/png/Compas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/png/Compas.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/png/Gift-Box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/png/Gift-Box.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/png/Infinity-Loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/png/Infinity-Loop.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/png/Mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/png/Mail.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/png/Map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/png/Map.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/png/Pensils.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/png/Pensils.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/png/Pocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/png/Pocket.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/png/Retina-Ready.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/png/Retina-Ready.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/png/Toilet-Paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/png/Toilet-Paper.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/png/Watches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/png/Watches.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/book.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/calendar.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/chat.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/chat.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/clipboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/clipboard.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/clocks.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/clocks.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/compas.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/compas.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/gift-box.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/gift-box.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/loop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/loop.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/mail.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/map.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/paper-bag.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/paper-bag.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/pencils.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/pencils.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/retina.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/retina.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/ribbon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/ribbon.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/icons/svg/toilet-paper.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/icons/svg/toilet-paper.svg -------------------------------------------------------------------------------- /bower_components/flat-ui/img/login/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/login/icon.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/login/imac-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/login/imac-2x.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/login/imac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/login/imac.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/tile/ribbon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/tile/ribbon-2x.png -------------------------------------------------------------------------------- /bower_components/flat-ui/img/tile/ribbon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/img/tile/ribbon.png -------------------------------------------------------------------------------- /bower_components/flat-ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/index.html -------------------------------------------------------------------------------- /bower_components/flat-ui/js/radiocheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/js/radiocheck.js -------------------------------------------------------------------------------- /bower_components/flat-ui/less/flat-ui.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/flat-ui.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/background-clip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/background-clip.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/background-variant.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/background-variant.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/border-radius.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/border-radius.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/buttons.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/center-block.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/clearfix.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/forms.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/gradients.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/grid.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/hide-text.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/image.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/nav-divider.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/navbar-vertical-align.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/navbar-vertical-align.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/opacity.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/pagination.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/pallets.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/pallets.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/reset-filter.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/resize.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/responsive-visibility.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/select.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/select.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/size.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/switches.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/switches.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/tab-focus.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/text-emphasis.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/text-overflow.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/mixins/vendor-prefixes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/mixins/vendor-prefixes.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/button-groups.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/buttons.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/code.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/dropdowns.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/footer.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/footer.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/forms.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/glyphicons.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/input-groups.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/local-fonts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/local-fonts.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/login.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/login.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/navbar.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/pager.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/pagination.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/palette.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/palette.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/progress-bars.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/radiocheck.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/radiocheck.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/scaffolding.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/select.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/select.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/share.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/share.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/slider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/slider.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/switch.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/switch.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/tagsinput.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/tagsinput.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/thumbnails.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/tiles.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/tiles.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/todo-list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/todo-list.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/tooltip.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/type.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/typeahead.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/typeahead.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/modules/video.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/modules/video.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/spaces.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/spaces.less -------------------------------------------------------------------------------- /bower_components/flat-ui/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/less/variables.less -------------------------------------------------------------------------------- /bower_components/flat-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/bower_components/flat-ui/package.json -------------------------------------------------------------------------------- /img/angularjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/img/angularjs.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/package.json -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tiagocedrim/angularjsNaPratica/HEAD/style.css --------------------------------------------------------------------------------