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
//! The styles **prelude** - alleviate imports of many common types.
//!
//! ```
//! use styles::prelude::*;
//! ```
#[cfg(feature = "atomic")]
pub use crate::atomic::Atomic;
pub use crate::{data_type::*, function::*, property::*, selector::*, style::*, utils::*};