From 24733e178ccbf2008f8d8f0a9d03c3de86b5b4e9 Mon Sep 17 00:00:00 2001 From: Daniel Sinn Date: Wed, 23 Dec 2015 18:17:43 -0500 Subject: [PATCH] Keep the gradient only on the Simon board On my screen, white on light isn't great, and I don't think wire colour indicators really benefit from the gradient. --- index.html | 4 ++-- ktane.css | 22 +++++++++++++++++----- 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/index.html b/index.html index c0fd16c..831c3f3 100755 --- a/index.html +++ b/index.html @@ -74,10 +74,10 @@
-
 
 
+
 
 
-
 
 
+
 
 
diff --git a/ktane.css b/ktane.css index d19628b..41cfd6b 100755 --- a/ktane.css +++ b/ktane.css @@ -26,19 +26,19 @@ button { padding: 0.2em; } .red { - background: radial-gradient(#fb9a9a,#fc7373,red); + background-color: red; color: white; } .yellow { - background: radial-gradient(#fbfb9a,#fcfc73,yellow); + background-color: yellow; color: black; } .blue { - background: radial-gradient(#9a9afb,#7373fc,blue); + background-color: blue; color: white; } .green { - background: radial-gradient(#98c998,#72b772,green); + background-color: green; color: white; } .white { @@ -47,7 +47,7 @@ button { color: black; } .black { - background: radial-gradient(#969696,#757575,black); + background-color: black; color: white; } .button.white { @@ -147,6 +147,18 @@ h2 { #simonBoard > .simonRow > div:last-child { border-right-width: 4px; } +.simonRed { + background: radial-gradient(#fb9a9a, #fc7373, red); +} +.simonYellow { + background: radial-gradient(#fbfb9a, #fcfc73, yellow); +} +.simonBlue { + background: radial-gradient(#9a9afb, #7373fc, blue); +} +.simonGreen { + background: radial-gradient(#98c998, #72b772, green); +} .arrow { background-color: black;