From ff9e3ed9324334426d82f411422efd5480692dff Mon Sep 17 00:00:00 2001 From: Mischa POSLAWSKY Date: Thu, 7 Aug 2008 18:48:12 +0000 Subject: [PATCH] automatically apply monochrome/terse styling In browsers supporting CSS3 media selectors, load the mono stylesheet for monochrome environments, and terse if available width is insufficient for default key formatting. --- base.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/base.css b/base.css index 0bc7a13..00871f7 100644 --- a/base.css +++ b/base.css @@ -1,3 +1,11 @@ +/* media features */ + +@import url(terse.css) all and (max-width: 80em); + +@import url(mono.css) all and (monochrome); + +/* general */ + body { background: #FFF; color: #000; -- 2.30.0