From b5c37c53fd37c1ef9142ff56de16ae344430a42c Mon Sep 17 00:00:00 2001 From: BorisLevitskiy Date: Thu, 9 Apr 2015 16:57:33 +0300 Subject: [PATCH] Fixed bug with switching to light theme in IE --- src/css/styles.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/css/styles.css b/src/css/styles.css index 5895526..d60b899 100644 --- a/src/css/styles.css +++ b/src/css/styles.css @@ -1,4 +1,4 @@ -body { font-family: Verdana; font-size: 0.8em; padding: 20px 100px 0px 100px; margin: 0 } +body { font-family: Verdana; font-size: 0.8em; padding: 20px 100px 0 100px; margin: 0 } code { font-size: 1.2em; font-weight: bold; } .links { float: right; position: absolute; right: 10px; top: 10px; } @@ -33,4 +33,6 @@ code { font-size: 1.2em; font-weight: bold; } /* Dark */ .dark { background: black; color: white;} .dark .expressionInput { background: black; color: white; } -.dark a, .dark a:visited { color: white; } \ No newline at end of file +.dark a, .dark a:visited { color: white; } + +.light { background: ghostwhite; } \ No newline at end of file