From c5b2523a5c052e50bf1804f5e5426068d9949360 Mon Sep 17 00:00:00 2001 From: Cynthia Rich Date: Mon, 24 Aug 2015 23:06:57 -0400 Subject: [PATCH 1/3] change stats display color to yellow --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 37d4af0..d4f93ab 100644 --- a/index.html +++ b/index.html @@ -11,7 +11,7 @@ #menu p { margin: 0.5em 0; text-align: center; } #menu p a { text-decoration: none; color: black; } #upcoming { display: block; margin: 0 auto; background-color: #E0E0E0; } - #score { color: red; font-weight: bold; vertical-align: middle; } + #score { color: yellow; font-weight: bold; vertical-align: middle; } #rows { color: blue; font-weight: bold; vertical-align: middle; } #stats { position: absolute; bottom: 0em; right: 1em; } @media screen and (min-width: 0px) and (min-height: 0px) { #tetris { font-size: 0.75em; width: 250px; } #menu { width: 100px; height: 200px; } #upcoming { width: 50px; height: 50px; } #canvas { width: 100px; height: 200px; } } /* 10px chunks */ From 25936b7e15653fed960ec85849f773b764e557f7 Mon Sep 17 00:00:00 2001 From: DonaldPederson Date: Wed, 24 Feb 2016 09:57:26 -0800 Subject: [PATCH 2/3] Revert "change index.html to inde.html" This reverts commit 2710412040512a0f05dae7be3e89972946307864. --- inde.html => index.html | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename inde.html => index.html (100%) diff --git a/inde.html b/index.html similarity index 100% rename from inde.html rename to index.html From 7e02d30dd220dcd9a856d707e20769dcf32a31e7 Mon Sep 17 00:00:00 2001 From: DonaldPederson Date: Wed, 24 Feb 2016 10:28:02 -0800 Subject: [PATCH 3/3] changing the colors --- inde.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/inde.html b/inde.html index a42c9ee..eb054aa 100644 --- a/inde.html +++ b/inde.html @@ -112,13 +112,13 @@ // //------------------------------------------------------------------------- - var i = { size: 4, blocks: [0x0F00, 0x2222, 0x00F0, 0x4444], color: 'cyan' }; - var j = { size: 3, blocks: [0x44C0, 0x8E00, 0x6440, 0x0E20], color: 'blue' }; - var l = { size: 3, blocks: [0x4460, 0x0E80, 0xC440, 0x2E00], color: 'orange' }; + var i = { size: 4, blocks: [0x0F00, 0x2222, 0x00F0, 0x4444], color: 'red' }; + var j = { size: 3, blocks: [0x44C0, 0x8E00, 0x6440, 0x0E20], color: 'orange' }; + var l = { size: 3, blocks: [0x4460, 0x0E80, 0xC440, 0x2E00], color: 'blue' }; var o = { size: 2, blocks: [0xCC00, 0xCC00, 0xCC00, 0xCC00], color: 'yellow' }; var s = { size: 3, blocks: [0x06C0, 0x8C40, 0x6C00, 0x4620], color: 'green' }; var t = { size: 3, blocks: [0x0E40, 0x4C40, 0x4E00, 0x4640], color: 'purple' }; - var z = { size: 3, blocks: [0x0C60, 0x4C80, 0xC600, 0x2640], color: 'red' }; + var z = { size: 3, blocks: [0x0C60, 0x4C80, 0xC600, 0x2640], color: 'black' }; //------------------------------------------------ // do the bit manipulation and iterate through each