From 551497ef94f6239b109316d8fab32f0909b13f73 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sat, 15 Mar 2014 14:42:42 -0300 Subject: Squashed 'mod/less/' content from commit 380edad git-subtree-dir: mod/less git-subtree-split: 380edadb3a5e524a8e6ef6df063b678f2f00516f --- vendors/lessphp/tests/outputs/media.css | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 vendors/lessphp/tests/outputs/media.css (limited to 'vendors/lessphp/tests/outputs/media.css') diff --git a/vendors/lessphp/tests/outputs/media.css b/vendors/lessphp/tests/outputs/media.css new file mode 100644 index 000000000..cb5683fd4 --- /dev/null +++ b/vendors/lessphp/tests/outputs/media.css @@ -0,0 +1,28 @@ +@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: 110px) { + body { color:red; } +} +@media screen and (height: 100px) and (width: 110px), (size: 120px) { + body { color:red; } +} \ No newline at end of file -- cgit v1.2.3