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.

README.md 635B

123456789101112131415161718192021222324252627282930313233343536
  1. # custom-media-pattern
  2. Specify a pattern for custom media query names.
  3. <!-- prettier-ignore -->
  4. ```css
  5. @custom-media --foo (max-width: 30em);
  6. /** ↑
  7. * The pattern of this */
  8. ```
  9. ## Options
  10. `regex|string`
  11. A string will be translated into a RegExp like so `new RegExp(yourString)` — so be sure to escape properly.
  12. Given the string:
  13. ```
  14. "foo-.+"
  15. ```
  16. The following patterns are considered violations:
  17. <!-- prettier-ignore -->
  18. ```css
  19. @custom-media --bar (min-width: 30em);
  20. ```
  21. The following patterns are _not_ considered violations:
  22. <!-- prettier-ignore -->
  23. ```css
  24. @custom-media --foo-bar (min-width: 30em);
  25. ```