azul-css 0.0.5

Common datatypes used for styling applications using the Azul desktop GUI framework
Documentation
1
2
3
4
5
6
7
8
9
//! Provides a reference implementation of a style parser for Azul, capable of parsing CSS
//! stylesheets into their respective `Css` counterparts.

#[macro_use]
mod macros;
mod css;
mod css_parser;

pub use self::{css::*, css_parser::*};