mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-19 11:58:20 -07:00
47 lines
920 B
Plaintext
47 lines
920 B
Plaintext
@import url(foo.css);
|
|
@media print {}
|
|
@media (min-width: 640px) and (min-height: 1000px) {}
|
|
@main-color: red;
|
|
|
|
----------------------------------------------------
|
|
|
|
[
|
|
["atrule", [
|
|
["rule", "@import"],
|
|
["url", "url(foo.css)"],
|
|
["punctuation", ";"]
|
|
]],
|
|
["atrule", [
|
|
["rule", "@media"],
|
|
" print"
|
|
]],
|
|
["punctuation", "{"],
|
|
["punctuation", "}"],
|
|
["atrule", [
|
|
["rule", "@media"],
|
|
["punctuation", "("],
|
|
["property", "min-width"],
|
|
["punctuation", ":"],
|
|
" 640px",
|
|
["punctuation", ")"],
|
|
" and ",
|
|
["punctuation", "("],
|
|
["property", "min-height"],
|
|
["punctuation", ":"],
|
|
" 1000px",
|
|
["punctuation", ")"]
|
|
]],
|
|
["punctuation", "{"],
|
|
["punctuation", "}"],
|
|
["atrule", [
|
|
["rule", "@main-color"],
|
|
["punctuation", ":"],
|
|
" red",
|
|
["punctuation", ";"]
|
|
]]
|
|
]
|
|
|
|
----------------------------------------------------
|
|
|
|
Checks for at-rules.
|
|
Also checks for LESS variables. |