css-parser 0.1.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
13
14
15
16
h1 {
    color: red;
    display: inline;

    h3 > h2 {
        color: blue;

        div {
            letter-spacing: normal;
        }
    }
}

h2 {
    position: relative;
}