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

at-rule-property-requirelist

Deprecated: Instead use the at-rule-property-required-list rule.

Specify a list of required properties for an at-rule.

    @font-face { font-display: swap; font-family: 'foo'; }
/**  ↑           ↑                   ↑
 *  At-rule and required property names */

Options

object: { "at-rule-name": ["array", "of", "properties"] }

Given:

{
  "font-face": ["font-display", "font-family", "font-style"]
}

The following patterns are considered violations:

@font-face {
    font-family: 'foo';
    src: url('./fonts/foo.woff2') format('woff2');
}
@font-face {
    font-family: 'foo';
    font-style: normal;
    src: url('./fonts/foo.woff2') format('woff2');
}

The following patterns are not considered violations:

@font-face {
    font-display: swap;
    font-family: 'foo';
    font-style: normal;
    src: url('./fonts/foo.woff2') format('woff2');
}