aboutsummaryrefslogtreecommitdiff
path: root/vendors/lessphp/tests/inputs/media.less
diff options
context:
space:
mode:
Diffstat (limited to 'vendors/lessphp/tests/inputs/media.less')
-rw-r--r--vendors/lessphp/tests/inputs/media.less38
1 files changed, 0 insertions, 38 deletions
diff --git a/vendors/lessphp/tests/inputs/media.less b/vendors/lessphp/tests/inputs/media.less
deleted file mode 100644
index 0e65d942f..000000000
--- a/vendors/lessphp/tests/inputs/media.less
+++ /dev/null
@@ -1,38 +0,0 @@
-@media screen, 3D {
- P { color: green; }
-}
-@media print {
- body { font-size: 10pt }
-}
-@media screen {
- body { font-size: 13px }
-}
-@media screen, print {
- body { line-height: 1.2 }
-}
-
-@media all and (min-width: 0px) {
- body { line-height: 1.2 }
-}
-
-@media all and (min-width: 0) {
- body { line-height: 1.2 }
-}
-
-@media
- screen and (min-width: 102.5em) and (max-width: 117.9375em),
- screen and (min-width: 150em) {
- body { color: blue }
-}
-
-
-@media screen and (min-height: 100px + 10px) {
- body { color: red; }
-}
-
-@cool: 100px;
-
-@media screen and (height: @cool) and (width: @cool + 10), (size: @cool + 20) {
- body { color: red; }
-}
-