css-parser 0.2.0

CSS parser and compiler written in Rust. Can be used as standalone library or cli tool
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
h1 {
    color: red;
    display: inline;
    
    h2 {
        position: relative;
    }
}
    
h3 {
    position: relative;
}