From: Robert Kaiser Date: Fri, 7 Sep 2012 05:58:47 +0000 (+0200) Subject: add a media query for smaller screens, as a test X-Git-Tag: production~14 X-Git-Url: https://git-public.kairo.at/?p=mandelbrot-web.git;a=commitdiff_plain;h=13165b310d5d84ffbc393e2be2f7a9af5d043f3c add a media query for smaller screens, as a test --- diff --git a/style/mandelbrot.css b/style/mandelbrot.css index 8aa65ac..04bc960 100644 --- a/style/mandelbrot.css +++ b/style/mandelbrot.css @@ -22,3 +22,9 @@ body { #mbrotImage { background-color: lightblue; } + +@media screen and (max-width: 500px) { + body { + font-size: 10px; + } +}