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 Alert Dialog</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-100 flex items-center justify-center min-h-screen p-6 antialiased" x-data="{ open: true }"> <button @click="open = true" class="px-8 py-3 bg-amber-500 text-white rounded-2xl font-bold shadow-xl hover:bg-amber-600 transition cursor-pointer">Protocol Status</button> <div x-show="open" class="fixed inset-0 z-50 flex items-center justify-center p-6" role="alertdialog" aria-modal="true" style="display: none;" > <!-- Simple backdrop --> <div x-show="open" @click="open = false" class="fixed inset-0 bg-black/30 backdrop-blur-[2px]"></div> <div x-show="open" class="relative bg-white rounded-3xl p-8 shadow-3xl w-full max-w-sm border border-amber-100" > <div class="flex gap-4 mb-6"> <div class="h-10 w-10 bg-amber-50 rounded-xl flex items-center justify-center text-amber-600 shrink-0"> <svg class="h-6 w-6" 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> <h3 class="text-sm font-black text-slate-900 uppercase tracking-widest leading-none mb-1">Network Instability</h3> <p class="text-[10px] text-slate-400 font-bold uppercase tracking-widest">Global Sector 4 Alert</p> </div> </div> <p class="text-slate-500 text-xs italic font-medium leading-relaxed mb-8">Detected unusual neural activity in the secondary mesh clusters. Scaling performance may be temporarily impacted while the system recalibrates.</p> <button @click="open = false" class="w-full h-12 bg-amber-500 text-white rounded-xl font-bold text-xs uppercase tracking-widest hover:bg-slate-900 transition shadow-lg">Acknowledged</button> </div> </div> <script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script> </body> </html>