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 Pill Tabs</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" x-data="{ activeTab: 'all' }"> <div class="w-full max-w-xl"> <div class="flex items-center gap-2 bg-slate-100 p-2 rounded-[2rem] border border-slate-200 shadow-inner mb-10 overflow-x-auto scroller-hidden"> <button @click="activeTab = 'all'" class="px-8 py-3 rounded-full text-[10px] font-black uppercase tracking-widest transition-all cursor-pointer whitespace-nowrap" :class="activeTab === 'all' ? 'bg-white text-slate-900 shadow-xl border border-slate-100' : 'text-slate-400 hover:text-slate-600'" > Global Cluster </button> <button @click="activeTab = 'active'" class="px-8 py-3 rounded-full text-[10px] font-black uppercase tracking-widest transition-all cursor-pointer whitespace-nowrap" :class="activeTab === 'active' ? 'bg-white text-slate-900 shadow-xl border border-slate-100' : 'text-slate-400 hover:text-slate-600'" > Active Sync </button> <button @click="activeTab = 'archived'" class="px-8 py-3 rounded-full text-[10px] font-black uppercase tracking-widest transition-all cursor-pointer whitespace-nowrap" :class="activeTab === 'archived' ? 'bg-white text-slate-900 shadow-xl border border-slate-100' : 'text-slate-400 hover:text-slate-600'" > Archived Logs </button> </div> <div class="bg-white p-12 rounded-[3.5rem] shadow-3xl border border-white"> <template x-if="activeTab === 'all'"> <div class="space-y-4"> <h4 class="text-sm font-black text-slate-900 uppercase tracking-widest italic">Global Node Cluster</h4> <p class="text-xs text-slate-500 font-medium leading-relaxed italic">Monitoring all 4,096 active segments across the neural backbone. Priority status: Stable.</p> </div> </template> <template x-if="activeTab === 'active'"> <div class="space-y-4"> <h4 class="text-sm font-black text-indigo-600 uppercase tracking-widest italic">Live Synchronization</h4> <p class="text-xs text-slate-500 font-medium leading-relaxed italic">Direct data stream established with edge sector 9. Current throughput: 1.2 GB/s.</p> </div> </template> <template x-if="activeTab === 'archived'"> <div class="space-y-4"> <h4 class="text-sm font-black text-slate-400 uppercase tracking-widest italic">Legacy Manifests</h4> <p class="text-xs text-slate-500 font-medium leading-relaxed italic">Read-only access to historical node data. Last audit completed on 2026-02-14.</p> </div> </template> </div> </div> <style> .scroller-hidden::-webkit-scrollbar { display: none; } .scroller-hidden { -ms-overflow-style: none; scrollbar-width: none; } </style> <script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script> </body> </html>