Skip to main content

polished_css/data_type/
mod.rs

1//! The common values and units that CSS properties accept.
2//!
3//! ### Resources
4//!
5//! - [CSSWG specification](https://drafts.csswg.org/css-values)
6//! - [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Values_and_Units)
7
8pub mod alpha;
9pub mod angle;
10pub mod chroma;
11pub mod color;
12pub mod custom_indent;
13pub mod dashed_indent;
14pub mod dimension;
15pub mod flex;
16pub mod frequency;
17pub mod frequency_percentage;
18pub mod hue;
19pub mod integer;
20pub mod length;
21pub mod length_percentage;
22pub mod lightness;
23pub mod number;
24pub mod percentage;
25pub mod ratio;
26pub mod resolution;
27pub mod string;
28pub mod time;
29
30pub use alpha::*;
31pub use angle::*;
32pub use chroma::*;
33pub use color::*;
34pub use custom_indent::*;
35pub use dashed_indent::*;
36pub use dimension::*;
37pub use flex::*;
38pub use frequency::*;
39pub use frequency_percentage::*;
40pub use hue::*;
41pub use integer::*;
42pub use length::*;
43pub use length_percentage::*;
44pub use lightness::*;
45pub use number::*;
46pub use percentage::*;
47pub use ratio::*;
48pub use resolution::*;
49pub use string::*;
50pub use time::*;