Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 314 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 314 Bytes

css-groups

Reuse CSS groups in your stylesheets.

Syntax:

@group group1 { /* Create a group. */
  ...
}

@group group2 {
  ... /* Add styles. */
}

.selector {
  groups: group1 group2; /* Add as many groups as you want. Will be replaced at runtime with the styles associated with each group. */
}