Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sureshpandiyan1/cssreporter
improve your css and avoid maximum repetitions
https://github.com/sureshpandiyan1/cssreporter
analyzer css css-source css-tools css-userstyle optimization reduce reporting-tool webdev
Last synced: 5 days ago
JSON representation
improve your css and avoid maximum repetitions
- Host: GitHub
- URL: https://github.com/sureshpandiyan1/cssreporter
- Owner: sureshpandiyan1
- License: unlicense
- Created: 2022-09-22T16:30:58.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-09-22T16:36:14.000Z (over 2 years ago)
- Last Synced: 2023-08-05T14:12:51.398Z (over 1 year ago)
- Topics: analyzer, css, css-source, css-tools, css-userstyle, optimization, reduce, reporting-tool, webdev
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Introduction
cssreporter is small tools for detect how many properties and values you are typed.it's next css generation reporter who want to improve your css and avoid maximum repetition as much you can.
# how to run
```
from cssreporter import css_reportercss_reporter('your css filename with extension')
Hello !!
successfully created a complete report about your css file
file name - css_complete_report.txt
------thank you for using cssreporter :)----------------
```
# benefits
- reduce repetition
- avoid bloat css codes
- how many lines of code written
- complete code report specifically based by properties you are typed# Most Highlights About cssreporter:
- you can clearly see how much time you were repeats same values and properties.
# how it's exactly output from your css file?
### css_complete_report.txt =>
```
--------------------------------
background-color - 6 lnofcode
--------------------------------
- hsla(0,0%,100%,.99);
- SelectedItem;
- hsl(0, 0%, 97%);
- SelectedItem;
- hsl(0, 0%, 90%);
- hsl(0, 0%, 85%);--------------------------------
color - 9 lnofcode
--------------------------------
- hsla(0,0%,100%,.99);
- black;
- SelectedItem;
- SelectedItemText;
- hsl(0, 0%, 97%);
- #666;
- SelectedItem;
- hsl(0, 0%, 90%);
- hsl(0, 0%, 85%);--------------------------------
border - 10 lnofcode
--------------------------------
- 1px solid hsla(0, 0%, 0%, .2);
- none;
- 1px solid hsl(0, 0%, 92%);
- 0;
- 1px solid hsl(0, 0%, 92%);
- 0;
- none;
- 1px solid hsl(0, 0%, 92%);
- none;
- 1px solid hsla(0, 0%, 0%, .08);--------------------------------
border-top - 2 lnofcode
--------------------------------
- none;
- 1px solid hsla(0, 0%, 0%, .08);--------------------------------
box-shadow - 1 lnofcode
--------------------------------
- 0 5px 10px hsla(0, 0%, 0%, .1);--------------------------------
position - 3 lnofcode
--------------------------------
- absolute;
- right center;
- left;
```# friendly output when it's successfully reports :)
```
Hello !!successfully created a complete report about your css file
file name - css_complete_report.txt
------thank you for using cssreporter :)------------------
```# Copyright & License
Suresh P @ 2022 | cssreporter | Unlicense