Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
ReneTC committed Sep 23, 2024
1 parent f0ce678 commit b62bd4a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 40 deletions.
10 changes: 5 additions & 5 deletions docs/_includes/banner_flow.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
stars.push({
x: Math.random() * canvas.width,
y: Math.random() * canvas.height,
radius: Math.random() * 1 + 1,
radius: Math.random() * 2 + 1,
vx: Math.floor(Math.random() * 50) - 25,
vy: Math.floor(Math.random() * 50) - 25
});
Expand All @@ -48,11 +48,11 @@
for (var i = 0, x = stars.length; i < x; i++) {
var s = stars[i];

ctx.fillStyle = "#000000";
ctx.fillStyle = "#4C60E6";
ctx.beginPath();
ctx.arc(s.x, s.y, s.radius, 0, 2 * Math.PI);
ctx.fill();
ctx.fillStyle = 'black';
ctx.fillStyle = "#4C60E6";
ctx.stroke();
}

Expand All @@ -69,8 +69,8 @@
}
}
}
ctx.lineWidth = 0.1;
ctx.strokeStyle = 'black';
ctx.lineWidth = 0.5;
ctx.strokeStyle = "#4C60E6";
ctx.stroke();
}

Expand Down
35 changes: 0 additions & 35 deletions notes/1_skab_værdi_for_kunden_og_loes_et_problem_ikke_omevendt.md

This file was deleted.

0 comments on commit b62bd4a

Please sign in to comment.