From c5b2523a5c052e50bf1804f5e5426068d9949360 Mon Sep 17 00:00:00 2001 From: Cynthia Rich Date: Mon, 24 Aug 2015 23:06:57 -0400 Subject: [PATCH 1/2] 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 f6fc880a0a979fe7bc52b49216c8c9b7755ed888 Mon Sep 17 00:00:00 2001 From: Mark Apolinski Date: Thu, 20 Oct 2016 15:11:22 -0700 Subject: [PATCH 2/2] Changes colors of site --- inde.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/inde.html b/inde.html index a42c9ee..b8e9458 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 o = { size: 2, blocks: [0xCC00, 0xCC00, 0xCC00, 0xCC00], color: 'yellow' }; - var s = { size: 3, blocks: [0x06C0, 0x8C40, 0x6C00, 0x4620], color: 'green' }; + var i = { size: 4, blocks: [0x0F00, 0x2222, 0x00F0, 0x4444], color: 'red' }; + var j = { size: 3, blocks: [0x44C0, 0x8E00, 0x6440, 0x0E20], color: 'yellow' }; + var l = { size: 3, blocks: [0x4460, 0x0E80, 0xC440, 0x2E00], color: 'blue' }; + var o = { size: 2, blocks: [0xCC00, 0xCC00, 0xCC00, 0xCC00], color: 'green' }; + var s = { size: 3, blocks: [0x06C0, 0x8C40, 0x6C00, 0x4620], color: 'orange' }; 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: 'cyan' }; //------------------------------------------------ // do the bit manipulation and iterate through each