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 Warning Alert</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-md bg-amber-50 border border-amber-100 rounded-3xl p-6 flex gap-5 shadow-sm"> <div class="h-10 w-10 bg-amber-500 rounded-2xl flex items-center justify-center text-white shrink-0 shadow-lg shadow-amber-200"> <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 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /></svg> </div> <div class="pt-1"> <h3 class="text-sm font-bold text-amber-900 leading-none">Maintenance Pending</h3> <p class="text-sm text-amber-700/80 mt-2 leading-relaxed">The primary node will undergo a scheduled maintenance cycle in approximately 15 minutes.</p> </div> </div> </body> </html>