Rusty Cascading Style Sheets - The next big CSS preprocessor?

Github Repo Rusty Cascading Style Sheets (RCSS) is a CSS preprocessor with rust syntax! (It is also similar to a LOT of other langs out there, go check it out!) Example Syntax: use common::variables::*; let var: “40px”; fn padding() { padding: 10px; } .container { width: 50%; padding(); &:hover { padding: &var; } }

May 4, 2025 - 03:14
 0
Rusty Cascading Style Sheets - The next big CSS preprocessor?

Github Repo

Rusty Cascading Style Sheets (RCSS) is a CSS preprocessor with rust syntax! (It is also similar to a LOT of other langs out there, go check it out!)

Example Syntax:

use common::variables::*;

let var: “40px”;


fn padding() {
    padding: 10px;
}

.container {
    width: 50%;
    padding();

    &:hover {
        padding: &var;
    }
}