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 1016B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # at-rule-whitelist
  2. **_Deprecated: Instead use the [`at-rule-allowed-list`](../at-rule-allowed-list/README.md) rule._**
  3. Specify a list of allowed at-rules.
  4. <!-- prettier-ignore -->
  5. ```css
  6. @keyframes name {}
  7. /** ↑
  8. * At-rules like this */
  9. ```
  10. ## Options
  11. `array|string`: `["array", "of", "unprefixed", "at-rules"]|"at-rule"`
  12. Given:
  13. ```
  14. ["extend", "keyframes"]
  15. ```
  16. The following patterns are considered violations:
  17. <!-- prettier-ignore -->
  18. ```css
  19. @import "path/to/file.css";
  20. ```
  21. <!-- prettier-ignore -->
  22. ```css
  23. @media screen and (max-width: 1024px) {
  24. a { display: none; }
  25. }
  26. ```
  27. The following patterns are _not_ considered violations:
  28. <!-- prettier-ignore -->
  29. ```css
  30. a { @extend placeholder; }
  31. ```
  32. <!-- prettier-ignore -->
  33. ```css
  34. @keyframes name {
  35. from { top: 10px; }
  36. to { top: 20px; }
  37. }
  38. ```
  39. <!-- prettier-ignore -->
  40. ```css
  41. @KEYFRAMES name {
  42. from { top: 10px; }
  43. to { top: 20px; }
  44. }
  45. ```
  46. <!-- prettier-ignore -->
  47. ```css
  48. @-moz-keyframes name {
  49. from { top: 10px; }
  50. to { top: 20px; }
  51. }
  52. ```