css_ast 0.0.23

CSS Abstract Syntax Trees with visitable nodes and style value types.
Documentation
mod any_hover;
mod any_pointer;
mod aspect_ratio;
mod color;
mod color_gamut;
mod color_index;
mod device_aspect_ratio;
mod device_height;
mod device_width;
mod display_mode;
mod dynamic_range;
mod environment_blending;
mod forced_colors;
mod grid;
mod hack;
mod height;
mod horizontal_viewport_segments;
mod hover;
mod inverted_colors;
mod monochrome;
mod moz;
mod ms;
mod nav_controls;
mod o;
mod orientation;
mod overflow_block;
mod overflow_inline;
mod pointer;
mod prefers_color_scheme;
mod prefers_contrast;
mod prefers_reduced_data;
mod prefers_reduced_motion;
mod prefers_reduced_transparency;
mod resolution;
mod scan;
mod scripting;
mod update;
mod vertical_viewport_segments;
mod video_color_gamut;
mod video_dynamic_range;
mod webkit;
mod width;

pub use any_hover::*;
pub use any_pointer::*;
pub use aspect_ratio::*;
pub use color::*;
pub use color_gamut::*;
pub use color_index::*;
pub use device_aspect_ratio::*;
pub use device_height::*;
pub use device_width::*;
pub use display_mode::*;
pub use dynamic_range::*;
pub use environment_blending::*;
pub use forced_colors::*;
pub use grid::*;
pub use hack::*;
pub use height::*;
pub use horizontal_viewport_segments::*;
pub use hover::*;
pub use inverted_colors::*;
pub use monochrome::*;
pub use moz::*;
pub use ms::*;
pub use nav_controls::*;
pub use o::*;
pub use orientation::*;
pub use overflow_block::*;
pub use overflow_inline::*;
pub use pointer::*;
pub use prefers_color_scheme::*;
pub use prefers_contrast::*;
pub use prefers_reduced_data::*;
pub use prefers_reduced_motion::*;
pub use prefers_reduced_transparency::*;
pub use resolution::*;
pub use scan::*;
pub use scripting::*;
pub use update::*;
pub use vertical_viewport_segments::*;
pub use video_color_gamut::*;
pub use video_dynamic_range::*;
pub use webkit::*;
pub use width::*;

mod prelude {
	pub(crate) use crate::CssAtomSet;
	pub(crate) use css_parse::{T, boolean_feature, discrete_feature, ranged_feature};
	pub(crate) use csskit_derives::{Parse, Peek, SemanticEq, ToCursors, ToSpan};
}