Installation
Optimization
Fundamentals
Contribute
Responsiveness
Customization
Theme
Box Sizing
Container
Display
Floats
Overflow
Position
Z-Index
Flex Direction
Flex Wrap
Justify Content
Align Items
Grid
Padding
Margin
Width & Height
Min-Width
Max-Width
Avatar
Buttons
Cards
Forms
Modals
Tables
Toasts
Font Family
Font Size
Font Style
Font Weight
Letter Spacing
Line Height
Text Align
Text Color
Text Decoration
Text Transform
Border Radius
Border Width
Border Style
Box Shadow
Opacity
Cursor
Scroll Behavior
Installation
Lazyy CSS can be installed via CDN or command line.
CLI
The best way to import Lazyy CSS is to use CLI.
npm install lazyy-css
Create an index.scss file and import the index.scss file from node modules.
@import '../node_modules/lazyy-css/src/sass/index.scss';
Generally, browsers are incapable of parsing sass files. It must be converted to CSS. You may do this by using the watch-sass plugin in VS Code. Still, the preferable method is to use scripts. Add these scripts to your package.json file.
"lazyy": "sass --no-source-map styles/index.scss:styles/index.css",
"watch:lazyy": "sass --no-source-map styles/index.scss:styles/index.css --watch",
"purge:lazyy": "purgecss --css styles/index.css --content "*.html" --output styles/",
"build:lazyy": "npm run purge:lazyy && postcss styles/index.css -u autoprefixer cssnano -r --no-map"
You should change the directories of .scss and .css files according to yours.
Install these dependencies.
npm i @fullhuman/postcss-purgecss autoprefixer cssnano postcss-cli purgecss sass
npm run lazyy
This will import every class available. To optimize CSS for production, check optimization.
CDN
Import our CDN into your project. This will add lazyy CSS to your project.
<link rel="stylesheet" href="https://lazyy-css.vercel.app/dist/css/index.css" />