@-rules
Right now hobo only supports @font-face and a subset of @media
@font-face
The block following @font-face is passed as initialization for css::font_face::FontFace. Check out the docs.
It looks something like this:
#![allow(unused)] fn main() { @font-face { src: vec![("https://fonts.gstatic.com/.../....woff2".into(), Some(Format::Woff2))], font_family: "Encode Sans".into(), font_weight: (Weight::Number(400), None), } }
@media
The syntax is different to @media rules in css:
- specifying media type is not optional
!instead ofnotCamelCaseinstead ofkebab-case&&instead ofand- no grouping rules in
notclauses
So these two would be equivalent:
#![allow(unused)] fn main() { @media All && MaxWidth(css::unit!(1023 px)) { html { css::background_color::rgb(0xFF_00_00), } } }
@media all and (max-width: 1023px) {
html {
background-color: #FF0000;
}
}