merakiui/components/skeleton/Card.html

39 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meraki UI Components</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="flex w-full max-w-md mx-auto overflow-hidden bg-white rounded-lg shadow-lg animate-pulse dark:bg-gray-800">
<div class="w-1/3 bg-gray-300 dark:bg-gray-600"></div>
<div class="w-2/3 p-4 md:p-4">
<h1 class="w-40 h-2 bg-gray-200 rounded-lg dark:bg-gray-700"></h1>
<p class="w-48 h-2 mt-4 bg-gray-200 rounded-lg dark:bg-gray-700"></p>
<div class="flex mt-4 item-center gap-x-2">
<p class="w-5 h-2 bg-gray-200 rounded-lg dark:bg-gray-700"></p>
<p class="w-5 h-2 bg-gray-200 rounded-lg dark:bg-gray-700"></p>
<p class="w-5 h-2 bg-gray-200 rounded-lg dark:bg-gray-700"></p>
<p class="w-5 h-2 bg-gray-200 rounded-lg dark:bg-gray-700"></p>
<p class="w-5 h-2 bg-gray-200 rounded-lg dark:bg-gray-700"></p>
</div>
<div class="flex justify-between mt-6 item-center">
<h1 class="w-10 h-2 bg-gray-200 rounded-lg dark:bg-gray-700"></h1>
<div class="h-4 bg-gray-200 rounded-lg w-28 dark:bg-gray-700"></div>
</div>
</div>
</div>
</body>
</html>