polished_css/function/mod.rs
1//! Statements that invoke special data processing or calculations to return a
2//! CSS value for a CSS property.
3//!
4//! ### Resources
5//!
6//! - [CSSWG specification]()
7//! - [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Functions)
8
9pub mod var;
10
11pub use var::*;