├── .gitignore ├── Gruntfile.js ├── LICENSE.md ├── README.md ├── css └── customize-template.css ├── demo ├── README.md ├── custom-view.html ├── dashboard.html ├── demo-horizontal-fixed-nav.html ├── demo-horizontal-nav.html ├── demo-vertical-fixed-nav.html ├── demo-vertical-nav.html ├── form.html ├── guide │ ├── form-guide.html │ └── tour │ │ └── form-tour.html └── login.html ├── font ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf └── fontawesome-webfont.woff ├── images ├── glyphicons-halflings-white.png ├── glyphicons-halflings.png └── pattern │ ├── black-linen.png │ ├── concrete-wall.png │ ├── deep-blue.png │ ├── dust.png │ ├── gray-dark.png │ ├── gray-squares.png │ ├── green-fibers.png │ ├── sandstone.png │ ├── white-grid.png │ └── white-linen.png ├── js ├── bootstrap │ ├── bootstrap-affix.js │ ├── bootstrap-alert.js │ ├── bootstrap-button.js │ ├── bootstrap-carousel.js │ ├── bootstrap-collapse.js │ ├── bootstrap-datepicker.js │ ├── bootstrap-dropdown.js │ ├── bootstrap-modal.js │ ├── bootstrap-popover.js │ ├── bootstrap-scrollspy.js │ ├── bootstrap-tab.js │ ├── bootstrap-tooltip.js │ ├── bootstrap-transition.js │ └── bootstrap-typeahead.js └── jquery │ ├── jquery-1.8.2.min.js │ ├── jquery-chosen.js │ ├── jquery-tablesorter.js │ └── virtual-tour.js ├── less ├── customize-template.less └── template │ ├── core │ ├── bootstrap │ │ ├── accordion.less │ │ ├── alerts.less │ │ ├── bootstrap.less │ │ ├── breadcrumbs.less │ │ ├── button-groups.less │ │ ├── buttons.less │ │ ├── carousel.less │ │ ├── close.less │ │ ├── code.less │ │ ├── component-animations.less │ │ ├── datepicker.less │ │ ├── dropdowns.less │ │ ├── forms.less │ │ ├── grid.less │ │ ├── hero-unit.less │ │ ├── labels-badges.less │ │ ├── layouts.less │ │ ├── mixins.less │ │ ├── modals.less │ │ ├── navbar.less │ │ ├── navs.less │ │ ├── pager.less │ │ ├── pagination.less │ │ ├── popovers.less │ │ ├── progress-bars.less │ │ ├── reset.less │ │ ├── responsive-1200px-min.less │ │ ├── responsive-767px-max.less │ │ ├── responsive-768px-979px.less │ │ ├── responsive-navbar.less │ │ ├── responsive-utilities.less │ │ ├── responsive.less │ │ ├── scaffolding.less │ │ ├── sprites.less │ │ ├── tables.less │ │ ├── thumbnails.less │ │ ├── tooltip.less │ │ ├── type.less │ │ ├── utilities.less │ │ ├── variables.less │ │ └── wells.less │ ├── chosen │ │ ├── chosen.less │ │ └── variables.less │ ├── font-awesome │ │ └── font-awesome.less │ └── tablesorter │ │ └── jquery-tablesorter.less │ ├── template-responsive.less │ ├── template.less │ └── variables.less └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/README.md -------------------------------------------------------------------------------- /css/customize-template.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/css/customize-template.css -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/custom-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/demo/custom-view.html -------------------------------------------------------------------------------- /demo/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/demo/dashboard.html -------------------------------------------------------------------------------- /demo/demo-horizontal-fixed-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/demo/demo-horizontal-fixed-nav.html -------------------------------------------------------------------------------- /demo/demo-horizontal-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/demo/demo-horizontal-nav.html -------------------------------------------------------------------------------- /demo/demo-vertical-fixed-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/demo/demo-vertical-fixed-nav.html -------------------------------------------------------------------------------- /demo/demo-vertical-nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/demo/demo-vertical-nav.html -------------------------------------------------------------------------------- /demo/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/demo/form.html -------------------------------------------------------------------------------- /demo/guide/form-guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/demo/guide/form-guide.html -------------------------------------------------------------------------------- /demo/guide/tour/form-tour.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/demo/guide/tour/form-tour.html -------------------------------------------------------------------------------- /demo/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/demo/login.html -------------------------------------------------------------------------------- /font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /font/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/font/fontawesome-webfont.svg -------------------------------------------------------------------------------- /font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /images/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/images/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /images/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/images/glyphicons-halflings.png -------------------------------------------------------------------------------- /images/pattern/black-linen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/images/pattern/black-linen.png -------------------------------------------------------------------------------- /images/pattern/concrete-wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/images/pattern/concrete-wall.png -------------------------------------------------------------------------------- /images/pattern/deep-blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/images/pattern/deep-blue.png -------------------------------------------------------------------------------- /images/pattern/dust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/images/pattern/dust.png -------------------------------------------------------------------------------- /images/pattern/gray-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/images/pattern/gray-dark.png -------------------------------------------------------------------------------- /images/pattern/gray-squares.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/images/pattern/gray-squares.png -------------------------------------------------------------------------------- /images/pattern/green-fibers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/images/pattern/green-fibers.png -------------------------------------------------------------------------------- /images/pattern/sandstone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/images/pattern/sandstone.png -------------------------------------------------------------------------------- /images/pattern/white-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/images/pattern/white-grid.png -------------------------------------------------------------------------------- /images/pattern/white-linen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/images/pattern/white-linen.png -------------------------------------------------------------------------------- /js/bootstrap/bootstrap-affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/bootstrap/bootstrap-affix.js -------------------------------------------------------------------------------- /js/bootstrap/bootstrap-alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/bootstrap/bootstrap-alert.js -------------------------------------------------------------------------------- /js/bootstrap/bootstrap-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/bootstrap/bootstrap-button.js -------------------------------------------------------------------------------- /js/bootstrap/bootstrap-carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/bootstrap/bootstrap-carousel.js -------------------------------------------------------------------------------- /js/bootstrap/bootstrap-collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/bootstrap/bootstrap-collapse.js -------------------------------------------------------------------------------- /js/bootstrap/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/bootstrap/bootstrap-datepicker.js -------------------------------------------------------------------------------- /js/bootstrap/bootstrap-dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/bootstrap/bootstrap-dropdown.js -------------------------------------------------------------------------------- /js/bootstrap/bootstrap-modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/bootstrap/bootstrap-modal.js -------------------------------------------------------------------------------- /js/bootstrap/bootstrap-popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/bootstrap/bootstrap-popover.js -------------------------------------------------------------------------------- /js/bootstrap/bootstrap-scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/bootstrap/bootstrap-scrollspy.js -------------------------------------------------------------------------------- /js/bootstrap/bootstrap-tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/bootstrap/bootstrap-tab.js -------------------------------------------------------------------------------- /js/bootstrap/bootstrap-tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/bootstrap/bootstrap-tooltip.js -------------------------------------------------------------------------------- /js/bootstrap/bootstrap-transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/bootstrap/bootstrap-transition.js -------------------------------------------------------------------------------- /js/bootstrap/bootstrap-typeahead.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/bootstrap/bootstrap-typeahead.js -------------------------------------------------------------------------------- /js/jquery/jquery-1.8.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/jquery/jquery-1.8.2.min.js -------------------------------------------------------------------------------- /js/jquery/jquery-chosen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/jquery/jquery-chosen.js -------------------------------------------------------------------------------- /js/jquery/jquery-tablesorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/jquery/jquery-tablesorter.js -------------------------------------------------------------------------------- /js/jquery/virtual-tour.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/js/jquery/virtual-tour.js -------------------------------------------------------------------------------- /less/customize-template.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/customize-template.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/accordion.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/accordion.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/alerts.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/bootstrap.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/breadcrumbs.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/button-groups.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/buttons.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/carousel.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/close.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/code.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/component-animations.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/datepicker.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/datepicker.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/dropdowns.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/forms.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/grid.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/hero-unit.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/hero-unit.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/labels-badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/labels-badges.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/layouts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/layouts.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/mixins.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/modals.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/navbar.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/navs.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/pager.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/pagination.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/popovers.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/progress-bars.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/reset.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/reset.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/responsive-1200px-min.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/responsive-1200px-min.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/responsive-767px-max.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/responsive-767px-max.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/responsive-768px-979px.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/responsive-768px-979px.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/responsive-navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/responsive-navbar.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/responsive-utilities.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/responsive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/responsive.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/scaffolding.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/sprites.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/sprites.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/tables.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/thumbnails.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/tooltip.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/type.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/utilities.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/variables.less -------------------------------------------------------------------------------- /less/template/core/bootstrap/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/bootstrap/wells.less -------------------------------------------------------------------------------- /less/template/core/chosen/chosen.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/chosen/chosen.less -------------------------------------------------------------------------------- /less/template/core/chosen/variables.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /less/template/core/font-awesome/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/font-awesome/font-awesome.less -------------------------------------------------------------------------------- /less/template/core/tablesorter/jquery-tablesorter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/core/tablesorter/jquery-tablesorter.less -------------------------------------------------------------------------------- /less/template/template-responsive.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/template-responsive.less -------------------------------------------------------------------------------- /less/template/template.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/template.less -------------------------------------------------------------------------------- /less/template/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/less/template/variables.less -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billyyarosh/Bootstrap-Clean-Dashboard-Theme/HEAD/package.json --------------------------------------------------------------------------------