Files
gtk/testsuite/css/parser/variables.css
2024-05-10 18:29:48 +04:00

15 lines
224 B
CSS

:root {
--color1: red;
--color2: initial;
}
label {
color: var(--color1);
background-color: var(--color2, green);
}
@keyframes aaaa {
from { --test: red; --test2: green; }
to { --test: blue; --test3: cyan; }
}