From dd2ea330009c11c135827c22231a9a2c539770bb Mon Sep 17 00:00:00 2001 From: Rob Date: Sun, 8 Mar 2020 15:46:14 -0700 Subject: [PATCH] Add missing "and" keywords in media queries. Fixes GH issue #10, thank you for the report. --- sscaffold.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sscaffold.css b/sscaffold.css index 6b2500d..3b2ae58 100644 --- a/sscaffold.css +++ b/sscaffold.css @@ -407,7 +407,7 @@ only screen and (-webkit-max-device-pixel-ratio: 0.9) and (min-width: 750px) { 12px at 2560 x 1600 and larger. */ @media only screen and (min-resolution: 91dpi) and (max-resolution: 119dpi), -only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) { +only screen and (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) { html { font-size: 62.5%; } @@ -416,7 +416,7 @@ only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel @media only screen and (min-resolution: 91dpi) and (max-resolution: 119dpi) and (min-width: 1500px), -only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1500px) { +only screen and (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) and (min-width: 1500px) { html { font-size: 68.75%; } @@ -425,7 +425,7 @@ only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel @media only screen and (min-resolution: 91dpi) and (max-resolution: 119dpi) and (min-width: 2500px), -only screen (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) and (min-width: 2500px) { +only screen and (-webkit-min-device-pixel-ratio: 0.91) and (-webkit-max-device-pixel-ratio: 1) and (min-width: 2500px) { html { font-size: 75%; }