CLI tool to quickly generate CSS structure for HTML components.
- JRE 8
- Maven
- Clone this repository and find in the target folder a compiled jar file.
mvn test
$ java -jar target/cssgenerator-1.0-SNAPSHOT-jar-with-dependencies.jar sample.html
<div class="c-card">
<div class="header">
<div class="title"></div>
</div>
<div class="body">
<div class="img"><img src="" alt=""></div>
<div class="content"></div>
</div>
<div class="footer">
<div class="text"></div>
<div class="button"></div>
</div>
</div>
.c-card {}
.c-card > .header {}
.c-card > .header > .title {}
.c-card > .body {}
.c-card > .body > .img {}
.c-card > .body > .img > img {}
.c-card > .body > .content {}
.c-card > .footer {}
.c-card > .footer > .text {}
.c-card > .footer > .button {}
- Minh Son Huynh - Minh Son Huynh
This project is licensed under the MIT License - see the LICENSE file for details