18 lines
145 B
CSS
18 lines
145 B
CSS
|
html {
|
||
|
some: -test(val1);
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
some-other: -test(val1);
|
||
|
}
|
||
|
|
||
|
@media screen {
|
||
|
html {
|
||
|
some: -test(val2);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#unrelated {
|
||
|
other: yes;
|
||
|
}
|