polished-css 0.1.0

Craft polished CSS in Rust following CSSWG standards. Achieve type-safety, modularity, atomicity, and ergonomic styling for front-end applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Statements that invoke special data processing or calculations to return a
//! CSS value for a CSS property.
//!
//! ### Resources
//!
//! - [CSSWG specification]()
//! - [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Functions)

pub mod var;

pub use var::*;