takumi-css 0.1.1

Internal CSS layer for takumi. Not a public API; do not depend on it directly.
Documentation
mod animation;
mod calc;
mod css_input;
mod math;
mod media_query;
mod properties;
pub mod selector;
mod sizing;
mod stylesheets;
mod supports;
pub mod tw;

pub use animation::apply_stylesheet_animations;
pub use animation::{KeyframeRule, KeyframesRule};
pub use calc::{CalcArena, CalcFormula, CalcLinear, parse_calc_number_expression};
pub(crate) use css_input::{CssInput, CssNumber, CssUnexpected, CssValueSeed};
pub(crate) use math::lerp;
pub use math::{fast_div_255, fast_div_255_u32};
pub(crate) use properties::unexpected_token;
pub use properties::*;
// Selector matching internals (CssRule, SelectorImpl, Ident, …) stay namespaced
// under `selector::` for the renderer's `layout::matching`; only the stylesheet
// entry point is part of the public surface.
pub use selector::StyleSheet;
pub use sizing::SizingContext;
pub use stylesheets::*;