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; } }

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;
}
}