Skip to content

Commit

Permalink
fix: description
Browse files Browse the repository at this point in the history
  • Loading branch information
error-four-o-four committed Aug 12, 2024
1 parent 5bd38cb commit 2322b55
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 17 deletions.
File renamed without changes.
1 change: 0 additions & 1 deletion dist/index-BfA9Jpbl.css

This file was deleted.

1 change: 1 addition & 0 deletions dist/index-DfVzePdI.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions dist/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<link rel="icon" type="image/svg+xml" href="/sketches/static/favicon.svg" >
<link rel="stylesheet" href="/sketches/static/global.css">
<title>Sketches</title>
<script type="module" crossorigin src="/sketches/index-DRipMOn9.js"></script>
<link rel="stylesheet" crossorigin href="/sketches/index-BfA9Jpbl.css">
<script type="module" crossorigin src="/sketches/index-4iPTR9a3.js"></script>
<link rel="stylesheet" crossorigin href="/sketches/index-DfVzePdI.css">
</head>
<body>
<div id="container">
Expand All @@ -18,6 +18,7 @@ <h1>p5 <img src="/sketches/static/favicon.svg"> js sketches</h1>
<ul id="sketches">
<li><a href="/sketches/views/fusilli/" alt="Link to fusilli">Fusilli</a><span>(2024-07-23)</span></li>
</ul>
<span>... in progress ...</span>
</main>
</div>
</body>
Expand Down
12 changes: 6 additions & 6 deletions dist/views/fusilli/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ <h4>2024-07-23</h4>
<p>Click on canvas to regenerate.</p>

<pre>
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&lt;'N' | 'E' | 'S' | 'W', ParsedEdgeData&gt;&semi;
edges: Record&lt;'N' | 'E' | 'S' | 'W', EdgeData&gt;&semi;
};

type EdgeData = {
lane: 'B' | 'L' | 'F' | 'R';
color: 'hsl(hue, sat, lgt)' | 'rgb(r, g, b)';
};</pre>
<div class="col-2">
<div>
Expand Down
12 changes: 6 additions & 6 deletions sketches/2024-07-23-fusilli/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ <h4>2024-07-23</h4>
<p>Click on canvas to regenerate.</p>

<pre>
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&lt;'N' | 'E' | 'S' | 'W', ParsedEdgeData&gt;&semi;
edges: Record&lt;'N' | 'E' | 'S' | 'W', EdgeData&gt;&semi;
};

type EdgeData = {
lane: 'B' | 'L' | 'F' | 'R';
color: 'hsl(hue, sat, lgt)' | 'rgb(r, g, b)';
};</pre>
<div class="col-2">
<div>
Expand Down
11 changes: 9 additions & 2 deletions sketches/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -19,10 +26,10 @@ main ul {
color: #ed225d;
}

span {
/* span {
display: inline-block;
margin-left: 0.625rem;
font-size: 0.8rem;
color: #999;
}
} */
}
1 change: 1 addition & 0 deletions sketches/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ <h1>p5 <img src="/static/favicon.svg"> js sketches</h1>
<ul id="sketches">
<li><a href="./views/foo/" alt="Link to foo">Foo</a><span>2024-08-05</span></li>
</ul>
<span>... in progress ...</span>
</main>
</div>
<script type="module">
Expand Down

0 comments on commit 2322b55

Please sign in to comment.