2025-03-17 09:16:00 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width">
|
|
|
|
<title>A thing made by CLP</title>
|
|
|
|
<script type="module" src="script.js"></script>
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<main>
|
2025-03-17 09:51:42 +00:00
|
|
|
<svg id="board" viewBox="-0.3 -0.3 1.6 1.6" style="max-height: 100svh">
|
2025-03-17 09:16:00 +00:00
|
|
|
<defs>
|
|
|
|
<linearGradient id="dots-gradient">
|
|
|
|
<stop offset="0%" stop-color="green" />
|
|
|
|
<stop offset="100%" stop-color="white" />
|
|
|
|
</linearGradient>
|
|
|
|
</defs>
|
2025-03-17 09:51:42 +00:00
|
|
|
<rect x="-100" y="-100" width="200" height="200" fill="hsl(140,60%,60%)"/>
|
2025-03-17 09:16:00 +00:00
|
|
|
<path class="curve" fill="none" stroke="hsl(24,50%,10%)" stroke-width="0.01" stroke-linejoin="round" stroke-linecap="square"/>
|
|
|
|
<path class="curve" fill="none" stroke="hsl(240,50%,50%)" stroke-width="0.01" stroke-linejoin="round" stroke-linecap="square"/>
|
2025-03-17 09:51:42 +00:00
|
|
|
<path id="dots" fill="none" stroke="hsl(240,20%,90%)" stroke-width="0.01" stroke-linejoin="round" stroke-linecap="round"/>
|
2025-03-17 09:16:00 +00:00
|
|
|
<text id="debug" fill="white" font-size="0.1"></debug>
|
|
|
|
</svg>
|
|
|
|
</main>
|
|
|
|
</body>
|
|
|
|
</html>
|