You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
triangles.fun/src/About.svelte

45 lines
1.1 KiB

<script>
export let hidden
</script>
<style>
* {
@apply text-sm;
}
h1 {
@apply text-lg;
}
h1,
h2,
a {
@apply font-bold mt-2;
}
div.absolute {
background-color: white;
}
</style>
<div class="relative">
<div
class="absolute z-10 rounded text-blue-darker text-left border-1 border-orange"
class:hidden>
<h1>Triangles.fun</h1>
A game. Leave only a single dot to win. Eliminate other dots by jumping
them over!
<h2>Instructions</h2>
Click or touch the dot. If the dot can jump, it becomes lighter and the
spots where it can land become darker. Perform jump by touching or
clicking on the darker spot.
<h2>Installation</h2>
This game can be installed into your device. Look for "Add to Home
Screen" in the browser tab menu.
<h2>Support</h2>
You can send me your feedback or complains via
<a href="mailto:peter@triangles.fun">peter@triangles.fun</a>
and help me keep this game running via
<a href="https://www.buymeacoffee.com/peterbabic">Buy Me a Coffee.</a>
</div>
</div>