├── dist ├── .gitkeep ├── assets │ ├── images │ │ ├── logo.png │ │ └── logo-gray.png │ ├── vendors │ │ ├── font-awesome │ │ │ └── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ ├── fontawesome-webfont.woff2 │ │ │ │ └── 4.4.0 │ │ │ │ └── index.html │ │ ├── bootstrap │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── stickytableheaders │ │ │ └── jquery.stickytableheaders.js │ │ └── sweetalert │ │ │ └── sweetalert.css │ ├── stylesheets │ │ ├── application.css │ │ ├── algaworks.min.css │ │ └── algaworks.css │ └── javascripts │ │ ├── algaworks.min.js │ │ └── algaworks.js ├── 403.html ├── 500.html ├── 404.html ├── esqueceu-a-senha.html ├── login.html ├── pagina-vazia.html ├── tabela-sem-dados.html ├── cadastro-produto.html ├── dashboard.html └── pesquisa-produtos.html ├── assets ├── vendors │ └── .gitkeep └── images │ ├── logo.png │ └── logo-gray.png ├── .bowerrc ├── .gitignore ├── sources ├── less │ ├── custom │ │ ├── aw-pagination.less │ │ ├── aw-fa-icons.less │ │ ├── aw-utilities.less │ │ ├── aw-form-control.less │ │ ├── aw-label.less │ │ ├── aw-table.less │ │ ├── aw-alert.less │ │ ├── aw-datatable-toolbar.less │ │ ├── aw-btn.less │ │ └── aw-page-header.less │ ├── layouts │ │ ├── aw-layout-page.less │ │ ├── aw-layout-simple-page.less │ │ ├── aw-layout-loading.less │ │ ├── aw-layout-content.less │ │ ├── aw-layout-footer.less │ │ └── aw-layout-sidebar.less │ ├── utils │ │ ├── aw-generic.less │ │ └── aw-text-align.less │ ├── components │ │ ├── aw-pagination-info.less │ │ ├── aw-footer-disclaimer.less │ │ ├── aw-logged-user.less │ │ ├── aw-box.less │ │ ├── aw-error-panel.less │ │ ├── aw-simple-panel.less │ │ ├── aw-graph-box.less │ │ ├── aw-menu.less │ │ ├── aw-search-modal.less │ │ └── aw-balls-spinner.less │ ├── vendors.less │ ├── pages │ │ └── pesquisa-produto.less │ ├── application.less │ ├── algaworks.less │ └── variables.less ├── html │ ├── pagina-vazia.html │ ├── templates │ │ ├── simple-page │ │ │ ├── rodape.html │ │ │ └── cabecalho.html │ │ └── default │ │ │ ├── rodape.html │ │ │ ├── cabecalho.html │ │ │ ├── menu.html │ │ │ └── navbar.html │ ├── 403.html │ ├── 500.html │ ├── 404.html │ ├── esqueceu-a-senha.html │ ├── login.html │ ├── tabela-sem-dados.html │ ├── cadastro-produto.html │ ├── dashboard.html │ └── pesquisa-produtos.html └── javascripts │ └── algaworks.js ├── bower.json ├── package.json ├── LICENSE └── Gruntfile.js /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/vendors/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "assets/vendors/bower" 3 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | assets/vendors/bower/* -------------------------------------------------------------------------------- /sources/less/custom/aw-pagination.less: -------------------------------------------------------------------------------- 1 | // Customização do Bootstrap 2 | .pagination { 3 | margin: 0px; 4 | } -------------------------------------------------------------------------------- /assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algaworks/layout-bootstrap-atacama/HEAD/assets/images/logo.png -------------------------------------------------------------------------------- /assets/images/logo-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algaworks/layout-bootstrap-atacama/HEAD/assets/images/logo-gray.png -------------------------------------------------------------------------------- /dist/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algaworks/layout-bootstrap-atacama/HEAD/dist/assets/images/logo.png -------------------------------------------------------------------------------- /sources/less/custom/aw-fa-icons.less: -------------------------------------------------------------------------------- 1 | .aw-fa-arrow-left:before { content: "\f0d9"; } 2 | .aw-fa-arrow-down:before { content: "\f0d7"; } -------------------------------------------------------------------------------- /dist/assets/images/logo-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algaworks/layout-bootstrap-atacama/HEAD/dist/assets/images/logo-gray.png -------------------------------------------------------------------------------- /sources/less/custom/aw-utilities.less: -------------------------------------------------------------------------------- 1 | .aw-checkbox-no-margin { 2 | margin-top: 0px !important; 3 | margin-bottom: 0px !important; 4 | } -------------------------------------------------------------------------------- /sources/less/custom/aw-form-control.less: -------------------------------------------------------------------------------- 1 | .aw-form-control-inline-sm { 2 | display: inline-block !important; 3 | width: 33% !important; 4 | } -------------------------------------------------------------------------------- /sources/less/custom/aw-label.less: -------------------------------------------------------------------------------- 1 | .aw-label-corner { 2 | position: absolute; 3 | top: 9px; 4 | right: 4px; 5 | 6 | padding: 2px 5px; 7 | } -------------------------------------------------------------------------------- /sources/less/custom/aw-table.less: -------------------------------------------------------------------------------- 1 | .aw-table-header-solid { 2 | background: #fff; 3 | } 4 | 5 | .aw-table-checkbox { 6 | min-width: 25px; 7 | 8 | .text-center(); 9 | } -------------------------------------------------------------------------------- /dist/assets/vendors/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algaworks/layout-bootstrap-atacama/HEAD/dist/assets/vendors/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /sources/less/layouts/aw-layout-page.less: -------------------------------------------------------------------------------- 1 | .aw-layout-page { 2 | position: relative; 3 | 4 | overflow-x: hidden; 5 | width: 100%; 6 | min-height: 100%; 7 | padding-bottom: 60px; 8 | } -------------------------------------------------------------------------------- /dist/assets/vendors/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algaworks/layout-bootstrap-atacama/HEAD/dist/assets/vendors/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /dist/assets/vendors/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algaworks/layout-bootstrap-atacama/HEAD/dist/assets/vendors/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /dist/assets/vendors/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algaworks/layout-bootstrap-atacama/HEAD/dist/assets/vendors/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /dist/assets/vendors/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/algaworks/layout-bootstrap-atacama/HEAD/dist/assets/vendors/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /sources/html/pagina-vazia.html: -------------------------------------------------------------------------------- 1 | include "templates/default/cabecalho.html" 2 | 3 |