5.1.4 • Published 8 years ago
stylecow-plugin-variables v5.1.4
stylecow plugin variables
Stylecow plugin to work with variables using the standard var()
, available in CSS Custom Properties for Cascading Variables Module Level 1.
For global variables (available in all properties), you have to define them in the selectors :root
or html
. Use nested rules to create scoped variables.
:root {
--mycolor: red;
}
.foo {
color: var(--mycolor);
}
.foo h2 {
--mycolor: blue;
color: var(--mycolor);
font-size: var(--mySize, 24px);
}
And stylecow converts to:
.foo {
color: red;
}
.foo h2 {
color: blue;
font-size: 24px;
}
More demos in the tests folder
5.1.4
8 years ago
5.1.3
8 years ago
5.1.2
8 years ago
5.1.1
10 years ago
5.1.0
10 years ago
5.0.0
10 years ago
4.2.0
10 years ago
4.1.2
10 years ago
4.1.1
10 years ago
4.1.0
10 years ago
4.0.0
10 years ago
3.0.0
11 years ago
2.0.4
11 years ago
2.0.3
11 years ago
2.0.2
11 years ago
2.0.1
11 years ago
2.0.0
11 years ago
1.1.0
11 years ago
1.0.0
11 years ago