whisker-css 0.2.0

Type-safe CSS builder for Whisker. Mirrors the Lynx CSS surface.
Documentation
//! Compound shorthand builders for properties whose CSS shorthand
//! combines multiple longhands.
//!
//! Each submodule provides one Rust type (`Border`, `Background`,
//! …) plus a builder method on [`Css`](crate::Css) that expands
//! the compound into its longhand entries.

pub mod animation;
pub mod background;
pub mod border;
pub mod flex;
pub mod padding_margin;
pub mod transform;
pub mod transition;

pub use animation::Animation;
pub use background::{Background, BackgroundLayer};
pub use border::Border;
pub use flex::Flex;
pub use padding_margin::{Margin, MarginValue, Padding};
pub use transform::{Transform, TransformFn};
pub use transition::Transition;