silex_css 0.1.0-beta.9

Next Generation High-Performance Rust Web Framework based on fine-grained reactivity and no-virtual-DOM architecture.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod builder;
pub mod properties;
pub mod runtime;
pub mod theme;
pub mod types;

pub mod prelude {
    pub use crate::builder::{Style, sty};
    pub use crate::runtime::{DynamicCss, DynamicStyleManager, inject_style};
    pub use crate::theme::{
        ThemePatchToCss, ThemeVariables, set_global_theme, theme_patch, theme_variables, use_theme,
    };
    pub use crate::types::*;
}

pub use runtime::{DynamicCss, DynamicStyleManager, inject_style, make_dynamic_val_for};