├── .gitignore ├── README.md ├── comming-soon.html ├── home.html ├── package.json └── public ├── assets ├── blur-tool.html ├── border-tool.html ├── box-shadow-tool.html ├── brightness-tool.html ├── contrast-tool.html ├── font-size-tool.html ├── font-weight-tool.html ├── grayscale-tool.html ├── hue-rotate-tool.html ├── invert-tool.html ├── letter-spacing-tool.html ├── line-height-tool.html ├── opacity-tool.html ├── saturate-tool.html ├── scaleX-tool.html ├── scaleY-tool.html ├── sepia-tool.html ├── skewX-tool.html ├── skewY-tool.html ├── text-align-tool.html ├── text-color-tool.html ├── text-decoration-tool.html ├── text-overflow-tool.html ├── text-shadow-tool.html ├── text-stroke-tool.html ├── text-transform-tool.html ├── translateX-tool.html ├── translateY-tool.html └── white-space-tool.html ├── components ├── aside │ └── aside.css ├── custom │ └── custom.css ├── filter-style │ └── filter-style.css └── image-comparison-slider │ ├── image-comparison-slider.css │ └── image-comparison-slider.min.js └── content ├── css ├── comming-soon.css ├── generate-pannel.css ├── home.css └── tools │ ├── border-tool.css │ ├── box-shadow-tool.css │ ├── font-size-tool.css │ ├── font-weight-tool.css │ ├── letter-spacing-tool.css │ ├── line-height-tool.css │ ├── opacity-tool.css │ ├── scaleX-tool.css │ ├── scaleY-tool.css │ ├── skewX-tool.css │ ├── skewY-tool.css │ ├── text-align-tool.css │ ├── text-color-tool.css │ ├── text-decoration-tool.css │ ├── text-overflow-tool.css │ ├── text-shadow-tool.css │ ├── text-stroke-tool.css │ ├── text-transform-tool.css │ ├── translateX-tool.css │ ├── translateY-tool.css │ └── white-space-tool.css ├── img ├── background-tool │ └── body-background.png ├── css-img │ ├── css.png │ └── css3.jpg ├── pannel │ └── pannel_back │ │ └── pannel_back.png ├── triangle │ └── triangle.png └── wallpaper │ └── main-image.jpg └── js ├── home.js ├── modules ├── functions.js ├── image-preview.js ├── pickr.js ├── resizer.js └── responsive-pannel.js ├── tools ├── blur-tool.js ├── border-tool.js ├── box-shadow-tool.js ├── brightness-tool.js ├── contrast-tool.js ├── font-size-tool.js ├── font-weight-tool.js ├── grayscale-tool.js ├── hue-rotate-tool.js ├── invert-tool.js ├── letter-spacing-tool.js ├── line-height-tool.js ├── opacity-tool.js ├── saturate-tool.js ├── scaleX-tool.js ├── scaleY-tool.js ├── sepia-tool.js ├── skewX-tool.js ├── skewY-tool.js ├── text-align-tool.js ├── text-color-tool.js ├── text-decoration-tool.js ├── text-overflow-tool.js ├── text-shadow-tool.js ├── text-stroke-tool.js ├── text-transform-tool.js ├── translateX-tool.js ├── translateY-tool.js └── white-space-tool.js └── validate-inputs-comming-soon.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json 3 | .vscode/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # CSS3 Generator 2 | Css Generator helps you to get acquainted with different types of properties in css. You can use many tools to get css code 😉🧨 3 | 4 | ## How to run project 5 | Clone this repo 6 | Install NodeJs 7 | Open Cmd or Terminal and go to Css Generator directory 8 | Enter npm i 9 | then open with live-server 10 | 11 | # Preview 12 |  13 | 14 | # Why I created my own css generator 🤔? 15 | I wanted to create something that have chalange for me and it will be useful. I decided create a css generator that is a special to others css generators.so I saw a lot of css generators to list what should my own css generator actually have? It should has a pretty pages and I have to pay attention to the design of tools pages. because more css generators doesn't attention to design pages. they just created tools but not many tools! so step 2 was I should make more tools that other generators doesn't have them. all of these tools that my generator having right now it be so many in future.I really wanted to make everything special and I hope it be useful for you 😉🤞 16 | 17 | # Best Features ( comming soon ): 18 | CSS Generator has some nice tools to make components for your project like: 19 | - Glassmorphism 20 | - Neomorphism 21 | - Animation 22 | - Button Generator 23 | - More nice tools are comming 24 | 25 | # Other Tools 26 | You have a lot of tools like: 27 | - Box tools: 28 | - Box-Shadow 29 | - Border 30 | - Border-Radius ( comming soon ) 31 | - Opacity 32 | - Other tools are comming 33 | - Text tools: 34 | - Color 35 | - Font-Size 36 | - Font-Weight 37 | - Text-Gradient ( comming soon ) 38 | - Text-Shadow 39 | - Letter-Spacing 40 | - Text-Stroke 41 | - Text-Align 42 | - Line-Height 43 | - Text-Decoration 44 | - Text-Transform 45 | - White-Space 46 | - Text-Overflow 47 | - Transform tools: 48 | - TranslateX 49 | - TransformY 50 | - ScaleX 51 | - ScaleY 52 | - SkewX 53 | - SkewY 54 | - Other tools are comming 55 | - Filter tools: 56 | - Blur 57 | - Brightness 58 | - Contrast 59 | - GrayScale 60 | - Hue-Rotate 61 | - Invert 62 | - Saturate 63 | - Sepia 64 | -------------------------------------------------------------------------------- /comming-soon.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |