summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <yuval@y3xz.com>2015-07-12 12:23:28 +0300
committerYuval Adam <yuval@y3xz.com>2015-07-12 12:23:28 +0300
commitfd3015ad03ddc67d72a679bbd2ad427a740aef27 (patch)
treee776588cc31c4f41945795615d47264e8f7e9e71
parentb03889604a6025567af5593fdc25d81a6f07d607 (diff)
153x153 grid
-rw-r--r--client/colors.less14
-rw-r--r--client/effects.js6
2 files changed, 10 insertions, 10 deletions
diff --git a/client/colors.less b/client/colors.less
index 53ca797..af2b7f9 100644
--- a/client/colors.less
+++ b/client/colors.less
@@ -193,20 +193,20 @@ body {
justify-content: left;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
- max-width: 700px;
+ max-width: 920px;
margin: 0 auto;
padding-left: 40px;
div.photo {
margin: 3px 8px;
- width: 72px;
- height: 92px;
+ width: 153px;
+ height: 173px;
img {
- height: 72px;
- width: 72px;
+ height: 153px;
+ width: 153px;
}
canvas {
- width: 72px;
- height: 72px;
+ width: 153px;
+ height: 153px;
}
div.title {
color: #999;
diff --git a/client/effects.js b/client/effects.js
index 836ea1e..afa744f 100644
--- a/client/effects.js
+++ b/client/effects.js
@@ -6,7 +6,7 @@ Effects = (function() {
var raster = new paper.Raster('img-' + id);
raster.visible = false;
- var gridSize = 8;
+ var gridSize = 17;
var gridDim = 9;
var cols = [];
@@ -95,7 +95,7 @@ Effects = (function() {
p.setup(canvas);
// params
- var gridSize = 8;
+ var gridSize = 17;
var gridDim = 9;
// fetch the new colors
@@ -188,7 +188,7 @@ Effects = (function() {
p.setup(canvas);
// params
- var gridSize = 8;
+ var gridSize = 17;
var gridDim = 9;
var p1 = new paper.Color(palette[0][0] / 256, palette[0][1] / 256, palette[0][2] / 256);