azul-css 0.0.7

Common datatypes used for styling applications using the Azul desktop GUI framework
Documentation
//! Basic CSS properties and their parsing code

pub mod angle;
pub mod animation;
pub mod color;
pub mod direction;
pub mod error;
pub mod font;
pub mod geometry;
pub mod image;
pub mod length;
pub mod parse;
pub mod pixel;
pub mod time;

pub use self::{
    angle::*, animation::*, color::*, direction::*, error::*, font::*, geometry::*, image::*,
    length::*, pixel::*, time::*,
};