Toggle navigation
☰
HTML
CSS
Scripting
Database
<!doctype html> <html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Tailwind CSS Activity List</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-indigo-50 flex items-center justify-center min-h-screen p-6 antialiased"> <div class="w-full max-w-sm bg-white rounded-[3rem] p-10 shadow-3xl border border-white"> <div class="flex justify-between items-center mb-10"> <h3 class="text-xl font-black text-slate-900 tracking-tighter italic">Live Feed.</h3> <div class="h-3 w-3 bg-rose-500 rounded-full animate-ping"></div> </div> <ul class="space-y-8"> <li class="flex gap-4 relative"> <!-- Connector --> <div class="absolute left-5 top-10 bottom-0 w-px bg-slate-100"></div> <div class="h-10 w-10 rounded-full border-2 border-slate-50 p-0.5 shrink-0 bg-white shadow-sm z-10"> <img src="https://i.pravatar.cc/100?u=a1" class="h-full w-full rounded-full object-cover"> </div> <div class="flex-1 pt-1"> <p class="text-[11px] font-bold text-slate-600 leading-snug"><span class="font-black text-slate-900">Marcus Vault</span> scaling node-01 to <span class="bg-indigo-50 text-indigo-600 px-2 py-0.5 rounded italic">Primary</span></p> <span class="text-[9px] font-black text-slate-300 uppercase tracking-widest mt-2 block">2m ago</span> </div> </li> <li class="flex gap-4 relative"> <div class="absolute left-5 top-10 bottom-0 w-px bg-slate-100"></div> <div class="h-10 w-10 rounded-full border-2 border-slate-50 p-0.5 shrink-0 bg-white shadow-sm z-10"> <img src="https://i.pravatar.cc/100?u=a2" class="h-full w-full rounded-full object-cover"> </div> <div class="flex-1 pt-1"> <p class="text-[11px] font-bold text-slate-600 leading-snug"><span class="font-black text-slate-900">Sarah Logic</span> authorized global manifest <span class="underline underline-offset-4 decoration-rose-500">Distribution</span></p> <span class="text-[9px] font-black text-slate-300 uppercase tracking-widest mt-2 block">14m ago</span> </div> </li> <li class="flex gap-4"> <div class="h-10 w-10 rounded-full border-2 border-slate-50 p-0.5 shrink-0 bg-white shadow-sm z-10"> <img src="https://i.pravatar.cc/100?u=a3" class="h-full w-full rounded-full object-cover"> </div> <div class="flex-1 pt-1"> <p class="text-[11px] font-bold text-slate-600 leading-snug"><span class="font-black text-slate-900">Devon Mesh</span> initialized neural link with Sector 4</p> <span class="text-[9px] font-black text-slate-300 uppercase tracking-widest mt-2 block">1h ago</span> </div> </li> </ul> </div> </body> </html>