Content
File Structure
Heres the contents of luxize-leather-shop directory that you've extracted before.
luxize-html/
|-assets/
|--css/
|--icons/
|--img/
|--js/
|--vendor/
|-docs/
|-leather-shop/
|-leather-shop-color-2/
|-leather-shop-color-3/
|-scss/
|--luxize/
|--leather-shop.scss
|--leather-shop-color-2.scss
|--leather-shop-color-3.scss
|-.stylelintrc
|-package.json
|-postcssconfig.json
-
assetsdirectory is where we put static files that are necessary for a website to function and display content.- CSS used to define styles for your web pages.
cssdirectory is where we put all css files. All CSS files in this directory are compiled using SCSS build tool that included in this package and thats why it is not recommended to edit manually (directly) on those css files. iconsdirectory is where we put icons used in the this theme.imgdirectory is where we put images used in the this theme.jsdirectory is where we put javascript files used in the this theme.vendordirectory is where we put all thirt party library used in the this theme.
- CSS used to define styles for your web pages.
-
docsdirectory is where we put ducomentation html files. -
leather-shop,leather-shop-color-2,leather-shop-color-3directory is where we put main html files. -
scssdirectory is where we put SCSS files source for generating CSS files. learn more about SCSS -
.stylelintrcfile configuration for SASS/SCSS compiler. -
package.jsonis Node project configiguration file. -
postcssconfig.jsonis POST CSS configiguration file.