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 Fullscreen Modal</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-100 antialiased" x-data="{ open: true }"> <div class="min-h-screen flex items-center justify-center"> <button @click="open = true" class="px-10 py-4 bg-slate-900 text-white rounded-full font-black text-xs uppercase tracking-[0.2em] shadow-3xl hover:bg-slate-800 transition transform active:scale-95 cursor-pointer">Launch Fullscreen Workspace</button> </div> <!-- Fullscreen Modal Cover --> <div x-show="open" x-transition:enter="transition ease-out duration-500" x-transition:enter-start="opacity-0" x-transition:enter-end="opacity-100" x-transition:leave="transition ease-in duration-400" x-transition:leave-start="opacity-100" x-transition:leave-end="opacity-0" class="fixed inset-0 z-50 bg-white flex flex-col" style="display: none;" > <!-- Header --> <header class="h-24 px-10 border-b border-slate-100 flex items-center justify-between shrink-0"> <div class="flex items-center gap-4"> <div class="h-10 w-10 bg-indigo-600 rounded-xl flex items-center justify-center text-white shadow-lg"> <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="M11 4a2 2 0 114 0v1a1 1 0 001 1h3a1 1 0 011 1v3a1 1 0 01-1 1h-1a2 2 0 100 4h1a1 1 0 011 1v3a1 1 0 01-1 1h-3a1 1 0 01-1-1v-1a2 2 0 10-4 0v1a1 1 0 01-1 1H7a1 1 0 01-1-1v-3a1 1 0 00-1-1H4a2 2 0 110-4h1a1 1 0 001-1V7a1 1 0 011-1h3a1 1 0 001-1V4z"/></svg> </div> <div> <h2 class="text-xs font-black text-slate-900 uppercase tracking-widest leading-none">Global Architecture Hub</h2> <p class="text-[10px] text-slate-400 font-bold italic mt-1 uppercase tracking-widest">Active Workspace Alpha</p> </div> </div> <button @click="open = false" class="h-12 w-12 bg-slate-50 text-slate-400 rounded-2xl flex items-center justify-center hover:bg-rose-50 hover:text-rose-600 transition group cursor-pointer"> <svg class="h-6 w-6 group-hover:rotate-90 transition-transform duration-500" fill="none" viewBox="0 0 24 24" stroke="currentColor"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M6 18L18 6M6 6l12 12"/></svg> </button> </header> <!-- Content --> <main class="flex-1 overflow-y-auto p-10 lg:p-24 flex items-center justify-center"> <div class="max-w-4xl w-full text-center"> <h1 class="text-7xl font-black text-slate-900 tracking-tighter mb-10 italic">Distributed Network Scaling.</h1> <div class="grid grid-cols-1 md:grid-cols-3 gap-8 mb-16"> <div class="bg-indigo-50/50 p-8 rounded-[2.5rem] border border-indigo-100"> <span class="block text-4xl font-black text-indigo-600 mb-2">94%</span> <span class="text-[10px] font-black text-slate-400 uppercase tracking-widest italic">Sync Precision</span> </div> <div class="bg-slate-50 p-8 rounded-[2.5rem] border border-slate-100"> <span class="block text-4xl font-black text-slate-900 mb-2">1,024</span> <span class="text-[10px] font-black text-slate-400 uppercase tracking-widest italic">Node Clusters</span> </div> <div class="bg-emerald-50/50 p-8 rounded-[2.5rem] border border-emerald-100"> <span class="block text-4xl font-black text-emerald-600 mb-2">0.2ms</span> <span class="text-[10px] font-black text-slate-400 uppercase tracking-widest italic">Global Latency</span> </div> </div> <button @click="open = false" class="px-12 h-18 bg-indigo-600 text-white rounded-3xl font-black text-xs uppercase tracking-[0.2em] shadow-3xl hover:bg-slate-900 transition-all active:scale-95 cursor-pointer">Deploy Manifest Now</button> </div> </main> </div> <script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script> </body> </html>