mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 20:08:20 -07:00
31 lines
737 B
Plaintext
31 lines
737 B
Plaintext
|
@media print
|
||
|
@import "reset.css"
|
||
|
@font-face {
|
||
|
@keyframes {
|
||
|
@media (max-{foo}: bar)
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
[
|
||
|
["atrule-declaration", [["atrule", "@media"], " print"]],
|
||
|
["atrule-declaration", [["atrule", "@import"], ["string", "\"reset.css\""]]],
|
||
|
["atrule-declaration", [["atrule", "@font-face"], ["punctuation", "{"]]],
|
||
|
["atrule-declaration", [["atrule", "@keyframes"], ["punctuation", "{"]]],
|
||
|
["atrule-declaration", [
|
||
|
["atrule", "@media"],
|
||
|
["punctuation", "("],
|
||
|
"max-",
|
||
|
["interpolation", [
|
||
|
["punctuation", "{"],
|
||
|
"foo",
|
||
|
["punctuation", "}"]
|
||
|
]],
|
||
|
["punctuation", ":"],
|
||
|
" bar",
|
||
|
["punctuation", ")"]
|
||
|
]]
|
||
|
]
|
||
|
|
||
|
----------------------------------------------------
|
||
|
|
||
|
Checks for at-rules.
|