Post structure
We are use 7-1 tire Post css folder structure in our
template
We are use vite for the Post css to css compilation
Note: First, you must download and install node.js You can
check it in your terminal window using these commands node --version and npm
--version.
your node version should be v20.15.0.
If you want to use Post css so you need to follow some steps for compilation process
-
npm icommand (install node js)
- Post css
- base
- components
- layout
- pages
- themes
- utils
- base
Tips
If you want to add new scss so you can add in _custom.css file
because we are update template in future at that time you can take
update template easily and use it
only one custom scss file you need to put from your side
Intelligent customization using scss
You can change in assets/scss/utils/_variables.css file
Common settings
| Variables set | Content |
|---|---|
$theme-body-font-color: #404040; |
whole template body font color set here |
$theme-font-color: #242934; |
whole template body font color set here |
For font family
$font-rubik: Rubik; |
set body font family |
$font-roboto: Roboto; |
set second font family |
For main color settings
$primary-color: #7366ff; |
All color template settings |
$secondary-color: #838383; |
|
$success-color: #65c15c; |
|
$info-color: #40b8f5; |
|
$warning-color: #ffb829; |
|
$danger-color: #fc564a; |
|
$light-color: #f4f4f4; |
|
For sidebar settings
$sidebar-width: 255px; |
set sidebar width |
$sidebar-background-color: $white; |
set sidebar background color |
$sidebar-shadow: 0 0 11px rgba(69, 110, 243, 0.13); |
set sidebar shadow color |
$sidebar-overflow: auto; |
set sidebar overflow scroll |
$sidebar-z-index: 9; |
set sidebar z index |
For card settings
$card-padding: 20px; |
set common card spacing |
$card-margin-bottom: 20px; |
set common card outside spacing |
$card-border-color: 1px solid $light-gray; |
set card border |
$card-border-radius: 15px; |
set card border radius |
$card-box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07); |
set card box shadow |