takumi-css 0.1.2

Internal CSS layer for takumi. Not a public API; do not depend on it directly.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! CSS parsing and computed-style layer for takumi.
//!
//! Holds the (cold) CSS parsing, cascade, and value types so they can be
//! compiled independently from the hot rendering paths in `takumi`. Selector
//! *matching* against the node tree lives in `takumi` (`layout::matching`),
//! not here, keeping this crate free of any node/render dependency.

pub mod error;
pub mod keyframes;
pub mod style;
mod viewport;

// Public surface re-exported at the crate root (e.g. `takumi_css::Display`).
pub use style::*;
pub use viewport::*;