style/media_queries/
mod.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5//! [Media queries][mq].
6//!
7//! [mq]: https://drafts.csswg.org/mediaqueries/
8
9mod media_list;
10mod media_query;
11
12pub use self::media_list::MediaList;
13pub use self::media_query::{MediaQuery, MediaQueryType, MediaType, Qualifier};
14
15#[cfg(feature = "gecko")]
16pub use crate::gecko::media_queries::Device;
17#[cfg(feature = "servo")]
18pub use crate::servo::media_queries::Device;