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 Notification List</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex items-center justify-center min-h-screen p-6 antialiased"> <div class="w-full max-w-sm space-y-4"> <div class="bg-white rounded-3xl p-6 shadow-xl border border-white flex gap-5 relative overflow-hidden group"> <div class="absolute left-0 top-0 bottom-0 w-1.5 bg-indigo-600"></div> <div class="h-10 w-10 bg-indigo-100 rounded-xl flex items-center justify-center text-indigo-600 shrink-0"> <svg class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"/></svg> </div> <div class="flex-1"> <h4 class="text-xs font-black text-slate-900 uppercase tracking-widest mb-1">System Update</h4> <p class="text-[10px] text-slate-500 font-bold italic leading-relaxed">Core v4.2 engine scaling protocol initialized in all primary nodes.</p> <span class="block mt-3 text-[8px] font-black text-slate-300 uppercase tracking-widest italic">Node 0x42 • 5m ago</span> </div> </div> <div class="bg-white rounded-3xl p-6 shadow-xl border border-white flex gap-5 relative overflow-hidden group"> <div class="absolute left-0 top-0 bottom-0 w-1.5 bg-rose-600"></div> <div class="h-10 w-10 bg-rose-100 rounded-xl flex items-center justify-center text-rose-600 shrink-0 animate-pulse"> <svg class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"/></svg> </div> <div class="flex-1"> <h4 class="text-xs font-black text-slate-900 uppercase tracking-widest mb-1">Security Alert</h4> <p class="text-[10px] text-slate-500 font-bold italic leading-relaxed">Unauthorized access attempt detected in Sector 7-G. Immediate lockdown.</p> <span class="block mt-3 text-[8px] font-black text-slate-300 uppercase tracking-widest italic">Grid Guard • 12m ago</span> </div> </div> <div class="bg-white rounded-3xl p-6 shadow-xl border border-white flex gap-5 relative overflow-hidden group opacity-60"> <div class="absolute left-0 top-0 bottom-0 w-1.5 bg-emerald-600"></div> <div class="h-10 w-10 bg-emerald-100 rounded-xl flex items-center justify-center text-emerald-600 shrink-0"> <svg class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M5 13l4 4L19 7"/></svg> </div> <div class="flex-1"> <h4 class="text-xs font-black text-slate-900 uppercase tracking-widest mb-1">Sync Complete</h4> <p class="text-[10px] text-slate-500 font-bold italic leading-relaxed">Global manifest distributed and verified across all 12 edge clusters.</p> <span class="block mt-3 text-[8px] font-black text-slate-300 uppercase tracking-widest italic">Alpha Node • 1h ago</span> </div> </div> </div> </body> </html>