rsass 0.29.2

Sass implementation in pure rust (not complete yet)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* Some raw css for testing. */
@media screen and (min-width: 42em) {
    /* Do this for wide viewports */
    div.something {
        display: flex;
    }
}
@font-face {
    font-family: Cocanut;
    font-style: regular;
    font-weight: regular;
    src: local("Cocanut.otf"), url("cocanut.otf");
}
#foo {
    /* Draw a border on this. */
    border: solid 1px black;
}