Skip to content

Instantly share code, notes, and snippets.

@farishan
Created July 3, 2023 09:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save farishan/ed871b6bd4713cfdce25a55ad9fe1eda to your computer and use it in GitHub Desktop.
Save farishan/ed871b6bd4713cfdce25a55ad9fe1eda to your computer and use it in GitHub Desktop.
<main class="p-8">
<!-- Menu -->
<div class="MENU select-none border border-neutral-400 hover:border-neutral-600 rounded duration-200 p-4 text-neutral-600 text-center mb-8">
<p class="mb-4">Menu</p>
<nav class="space-y-2">
<button class="w-full border border-neutral-400 rounded hover:border-neutral-600 active:scale-95 py-2 px-4 hover:bg-neutral-100">
New Game
</button>
<button class="w-full border border-neutral-400 rounded hover:border-neutral-600 active:scale-95 py-2 px-4 hover:bg-neutral-100">
Load Game
</button>
<button class="w-full border border-neutral-400 rounded hover:border-neutral-600 active:scale-95 py-2 px-4 hover:bg-neutral-100">
Settings
</button>
<button class="w-full border border-neutral-400 rounded hover:border-neutral-600 active:scale-95 py-2 px-4 hover:bg-neutral-100">
Credits
</button>
</nav>
</div>
<!-- Inventory -->
<div class="INVENTORY select-none border border-neutral-400 hover:border-neutral-600 rounded duration-200 text-neutral-600 mb-8">
<p class="my-4 text-center">Inventory</p>
<div class="border-t border-neutral-400 px-4 py-2 hover:bg-neutral-100 cursor-pointer">
Rock
</div>
<div class="border-t border-neutral-400 px-4 py-2 hover:bg-neutral-100 cursor-pointer">
Rock
</div>
<div class="border-t border-neutral-400 px-4 py-2 hover:bg-neutral-100 cursor-pointer">
Rock
</div>
<div class="border-t border-neutral-400 px-4 py-2 hover:bg-neutral-100 cursor-pointer">
Rock
</div>
<div class="border-t border-neutral-400 px-4 py-2 hover:bg-neutral-100 cursor-pointer">
Rock
</div>
<div class="border-t border-neutral-400 px-4 py-2 hover:bg-neutral-100 cursor-pointer">
Rock
</div>
<div class="border-t border-neutral-400 px-4 py-2 hover:bg-neutral-100 cursor-pointer">
Rock
</div>
<div class="border-t border-neutral-400 px-4 py-2 hover:bg-neutral-100 cursor-pointer">
Rock
</div>
</div>
</main>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment