Admin UI - Admin Template Light, simple, custom interface and bootstrap v3.3.7 based admin panel free template
Download from GitHub or clone project to your machine
git clone https://github.com/03bgls25/AdminUI.git
You can easily customized stylesheet with SCSS file provided.
Prerequisite
SCSS compiler using Gulp JS
Step 1: Go to project directory using command prompt or terminalStep 2: Install node package module using commandnpm install
Step 3: Run Gulp JS task runner using commandgulp
this will watch all scss compilation taskSCSS Documentation
SCSS folder has 4 sub-folders (components ,helpers ,themes ,vendors ) and 1 scss file (portal.scss ).
SCSS fileportal.scss import all scss file and is compile toportal.css file incss folder of project.
Foldercomponents has 3 scss files (base ,layout ,reset )
scss filebase has stylesheet of html component scss filelayout has stylesheet of layout that are create in template scss filereset has stylsheet of bootstrap customization Folderhelpers has 4 scss files (breakpoints ,functions ,mixins ,variables )
scss filebreakpoint contain mixin for generating responsive stylesheet scss filefunction contain function of handling stylesheet scss filemixin contain mixin for cross browser prefix stylesheet scss filevariable contain all variable used for entire theme Foldertheme containportal scss file that has stylesheet of admin panel
Foldervendors containvendor scss file that has overriding stylesheet of third party plugins.
Customize theme color, changing listed variable invariable.scss
/* THEME-COLOR DEFINATION */$primary-color: YOUR_COLOR;$accent-color: YOUR_COLOR;/* EXTRA-COLOR DEFINATION */$highlight-color: YOUR_COLOR;$balance-color: YOUR_COLOR;$calm-color: YOUR_COLOR;$positive-color: YOUR_COLOR;$assertive-color: YOUR_COLOR;$dark-color: YOUR_COLOR;$shade-color: YOUR_COLOR;$divider-color: YOUR_COLOR;/* BACKGROUND-COLOR DEFINATION */$background: YOUR_COLOR;$dark-background: YOUR_COLOR;$light-background: YOUR_COLOR;/* FUNCTION-COLOR DEFINATION */$default-color: YOUR_COLOR;$success-color: YOUR_COLOR;$warning-color: YOUR_COLOR;$danger-color: YOUR_COLOR;$info-color: YOUR_COLOR;
Customize theme fonts, changing listed variable invariable.scss
/* FONT-FAMILY DEFINATION */$heading-font: YOUR_FONT_NAME;$title-font: YOUR_FONT_NAME;$text-font: YOUR_FONT_NAME;/* FONT-SIZE DEFINATION */$xl-font-size: YOUR_FONT_SIZE;$lg-font-size: YOUR_FONT_SIZE;$md-font-size: YOUR_FONT_SIZE;$sm-font-size: YOUR_FONT_SIZE;$xs-font-size: YOUR_FONT_SIZE;/* FONT-WEIGHT DEFINATION */$xl-font-weight: YOUR_FONT_WEIGHT;$lg-font-weight: YOUR_FONT_WEIGHT;$md-font-weight: YOUR_FONT_WEIGHT;$sm-font-weight: YOUR_FONT_WEIGHT;$xs-font-weight: YOUR_FONT_WEIGHT;/* TEXT-COLOR DEFINATION */$text-color: YOUR_FONT_COLOR;$light-text-color: YOUR_FONT_COLOR;