gymnosstyle v1.0.0
PostCSS Project - Application Designs
Welcome to the PostCSS project repository containing the layouts of an application!
This repository houses the files and styles necessary for creating the layouts of an application using PostCSS. PostCSS is a CSS processing tool that allows us to use advanced features and improve efficiency in style development.
Project configuration
To use this PostCSS project, follow these steps:
- Clone this repository on your local machine using the
git clonecommand. - Make sure you have Node.js installed on your system.
- Run
npm installin the root directory of the project to install the necessary dependencies. - Make the necessary changes and customizations to the CSS files inside the
cssdirectory. - Use the files generated in the
cssdirectory in your application.
Style construction and processing
The processing of the styles is done automatically using PostCSS and the settings defined in the package.json file. By executing the following command, CSS files will be generated and saved in the .css directory.
npm run buildIn addition, you can use the following command to enable automatic generation of styles whenever changes are made to the source files:
npm run watchThis is especially useful during development, as it speeds up the process of viewing changes made to styles.
2 years ago