Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Philipp Partosch 46a936d7de added all files to project 2 years ago
..
README.md added all files to project 2 years ago
index.js added all files to project 2 years ago

README.md

media-feature-name-whitelist

Deprecated: Instead use the media-feature-name-allowed-list rule.

Specify a list of allowed media feature names.

@media (min-width: 700px) {}
/**     ↑
 * This media feature name */

Options

array|string|regex: ["array", "of", "unprefixed", /media-features/ or "regex"]|"media-feature"|/regex/

Given:

["max-width", "/^my-/"]

The following patterns are considered violations:

@media (min-width: 50em) {}
@media print and (min-resolution: 300dpi) {}
@media (min-width < 50em) {}
@media (10em < min-width < 50em) {}

The following patterns are not considered violations:

@media (max-width: 50em) {}
@media (my-width: 50em) {}
@media (max-width > 50em) {}
@media (10em < my-width < 50em) {}