diff --git a/css/style.css.sass b/css/style.css.sass index 6ca827b..c17964b 100644 --- a/css/style.css.sass +++ b/css/style.css.sass @@ -56,7 +56,13 @@ body font: 100% / 1.4 "museo-sans-1", "museo-sans-2", sans-serif font-weight: 100 color: #262626 - background-color: transparent + background: white + background: -moz-linear-gradient(left, rgba(239,239,239,1) 0%, rgba(255,255,255,1) 35%, rgba(255,255,255,1) 65%, rgba(239,239,239,1) 100%) + background: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(239,239,239,1)), color-stop(35%,rgba(255,255,255,1)), color-stop(65%,rgba(255,255,255,1)), color-stop(100%,rgba(239,239,239,1))) + background: -webkit-linear-gradient(left, rgba(239,239,239,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,1) 65%,rgba(239,239,239,1) 100%) + background: -o-linear-gradient(left, rgba(239,239,239,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,1) 65%,rgba(239,239,239,1) 100%) + background: -ms-linear-gradient(left, rgba(239,239,239,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,1) 65%,rgba(239,239,239,1) 100%) + background: linear-gradient(to right, rgba(239,239,239,1) 0%,rgba(255,255,255,1) 35%,rgba(255,255,255,1) 65%,rgba(239,239,239,1) 100%) #stripe background: #262626 diff --git a/js/script.js.coffee b/js/script.js.coffee index 1195357..4fde5ed 100644 --- a/js/script.js.coffee +++ b/js/script.js.coffee @@ -13,5 +13,5 @@ $ -> offset = 0 for colour in colours context.fillStyle = colour - context.fillRect(offset, 0, 48, 12) - offset += 48 + context.fillRect(offset, 0, 72, 12) + offset += 72