From 2322b55723a50eccd523a19e0878f70c68e626e1 Mon Sep 17 00:00:00 2001 From: Jens B Date: Mon, 12 Aug 2024 13:46:28 +0200 Subject: [PATCH] fix: description --- dist/{index-DRipMOn9.js => index-4iPTR9a3.js} | 0 dist/index-BfA9Jpbl.css | 1 - dist/index-DfVzePdI.css | 1 + dist/index.html | 5 +++-- dist/views/fusilli/index.html | 12 ++++++------ sketches/2024-07-23-fusilli/index.html | 12 ++++++------ sketches/index.css | 11 +++++++++-- sketches/index.html | 1 + 8 files changed, 26 insertions(+), 17 deletions(-) rename dist/{index-DRipMOn9.js => index-4iPTR9a3.js} (100%) delete mode 100644 dist/index-BfA9Jpbl.css create mode 100644 dist/index-DfVzePdI.css diff --git a/dist/index-DRipMOn9.js b/dist/index-4iPTR9a3.js similarity index 100% rename from dist/index-DRipMOn9.js rename to dist/index-4iPTR9a3.js diff --git a/dist/index-BfA9Jpbl.css b/dist/index-BfA9Jpbl.css deleted file mode 100644 index f00972b..0000000 --- a/dist/index-BfA9Jpbl.css +++ /dev/null @@ -1 +0,0 @@ -#container{position:relative;padding:4rem 2rem}main ul{list-style:none}main ul li{display:block;padding:.5rem}main ul a{color:#ddd}main ul a:hover{color:#ed225d}main ul span{display:inline-block;margin-left:.625rem;font-size:.8rem;color:#999} diff --git a/dist/index-DfVzePdI.css b/dist/index-DfVzePdI.css new file mode 100644 index 0000000..6b64877 --- /dev/null +++ b/dist/index-DfVzePdI.css @@ -0,0 +1 @@ +#container{position:relative;padding:4rem 2rem}main span{display:inline-block;margin-left:.625rem;font-size:.8rem;color:#999}main ul{list-style:none}main ul li{display:block;padding:.5rem}main ul a{color:#ddd}main ul a:hover{color:#ed225d} diff --git a/dist/index.html b/dist/index.html index c6fb14f..434351d 100644 --- a/dist/index.html +++ b/dist/index.html @@ -6,8 +6,8 @@ Sketches - - + +
@@ -18,6 +18,7 @@

p5 js sketches

+ ... in progress ...
diff --git a/dist/views/fusilli/index.html b/dist/views/fusilli/index.html index b6928c1..759ecd3 100644 --- a/dist/views/fusilli/index.html +++ b/dist/views/fusilli/index.html @@ -17,15 +17,15 @@

2024-07-23

Click on canvas to regenerate.

-type EdgeData = {
-	lane: 'B' | 'L' | 'F' | 'R';
-	color: 'hsl(hue, sat, lgt)' | 'rgb(r, g, b)';
-}
-
 type TileData = {
 	coords: [number, number];
 	hasIntersections: boolean;
-	edges: Record<'N' | 'E' | 'S' | 'W', ParsedEdgeData>;
+	edges: Record<'N' | 'E' | 'S' | 'W', EdgeData>;
+};
+
+type EdgeData = {
+	lane: 'B' | 'L' | 'F' | 'R';
+	color: 'hsl(hue, sat, lgt)' | 'rgb(r, g, b)';
 };
diff --git a/sketches/2024-07-23-fusilli/index.html b/sketches/2024-07-23-fusilli/index.html index 5d6135b..d9508cd 100644 --- a/sketches/2024-07-23-fusilli/index.html +++ b/sketches/2024-07-23-fusilli/index.html @@ -16,15 +16,15 @@

2024-07-23

Click on canvas to regenerate.

-type EdgeData = {
-	lane: 'B' | 'L' | 'F' | 'R';
-	color: 'hsl(hue, sat, lgt)' | 'rgb(r, g, b)';
-}
-
 type TileData = {
 	coords: [number, number];
 	hasIntersections: boolean;
-	edges: Record<'N' | 'E' | 'S' | 'W', ParsedEdgeData>;
+	edges: Record<'N' | 'E' | 'S' | 'W', EdgeData>;
+};
+
+type EdgeData = {
+	lane: 'B' | 'L' | 'F' | 'R';
+	color: 'hsl(hue, sat, lgt)' | 'rgb(r, g, b)';
 };
diff --git a/sketches/index.css b/sketches/index.css index 935002e..e9c1a0f 100644 --- a/sketches/index.css +++ b/sketches/index.css @@ -3,6 +3,13 @@ padding: 4rem 2rem; } +main span { + display: inline-block; + margin-left: 0.625rem; + font-size: 0.8rem; + color: #999; +} + main ul { list-style: none; @@ -19,10 +26,10 @@ main ul { color: #ed225d; } - span { + /* span { display: inline-block; margin-left: 0.625rem; font-size: 0.8rem; color: #999; - } + } */ } \ No newline at end of file diff --git a/sketches/index.html b/sketches/index.html index 62d937e..35d2b97 100644 --- a/sketches/index.html +++ b/sketches/index.html @@ -16,6 +16,7 @@

p5 js sketches

  • Foo2024-08-05
+ ... in progress ...