mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
22 lines
433 B
CSS
22 lines
433 B
CSS
|
:root {
|
||
|
--number: 1;
|
||
|
--unit: 100vw;
|
||
|
--color: #06c;
|
||
|
|
||
|
--function: calc(1 + 1);
|
||
|
--variable: var(--unit);
|
||
|
|
||
|
--string: 'single quoted string';
|
||
|
--string: "double quoted string";
|
||
|
|
||
|
--square-block: [1, 2, 3];
|
||
|
--round-block: (1, 2, 3);
|
||
|
|
||
|
--bracket-block: {1, 2, 3};
|
||
|
--JSON: [1, "2", {"three": {"a":1}}, [4]];
|
||
|
--javascript: function(rule) { console.log(rule) };
|
||
|
|
||
|
--CDO: <!--;
|
||
|
--CDC: -->;
|
||
|
}
|