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 Table Of Contents</title> <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4.2.1"></script> </head> <body class="bg-gray-50 flex justify-center items-start min-h-screen pt-24 p-6 antialiased"> <nav class="max-w-xs w-full bg-white p-10 rounded-[3rem] border border-slate-100 shadow-sm sticky top-12"> <div class="space-y-8"> <div class="flex items-center gap-3"> <div class="h-8 w-px bg-indigo-600"></div> <h3 class="text-xs font-black text-slate-900 uppercase tracking-[0.3em]">Sector Index</h3> </div> <div class="space-y-2"> <a href="#" class="group flex items-start gap-4 p-3 rounded-2xl bg-indigo-50 border border-indigo-100 transition-all"> <span class="text-[10px] font-black text-indigo-600 mt-1">01</span> <div> <p class="text-sm font-bold text-indigo-900 leading-tight">Handshake Core</p> <p class="text-[9px] font-black text-indigo-400 uppercase tracking-widest mt-0.5">Primary Entry</p> </div> </a> <a href="#" class="group flex items-start gap-4 p-3 rounded-2xl hover:bg-slate-50 transition-all"> <span class="text-[10px] font-black text-slate-300 group-hover:text-slate-900 mt-1 transition-colors">02</span> <div> <p class="text-sm font-bold text-slate-400 group-hover:text-slate-900 leading-tight transition-colors">Kinetic Shift</p> <p class="text-[9px] font-black text-slate-200 group-hover:text-slate-400 uppercase tracking-widest mt-0.5 transition-colors">System Adjustment</p> </div> </a> <a href="#" class="group flex items-start gap-4 p-3 rounded-2xl hover:bg-slate-50 transition-all"> <span class="text-[10px] font-black text-slate-300 group-hover:text-slate-900 mt-1 transition-colors">03</span> <div> <p class="text-sm font-bold text-slate-400 group-hover:text-slate-900 leading-tight transition-colors">Logic Authorization</p> <p class="text-[9px] font-black text-slate-200 group-hover:text-slate-400 uppercase tracking-widest mt-0.5 transition-colors">Security Manifest</p> </div> </a> <a href="#" class="group flex items-start gap-4 p-3 rounded-2xl hover:bg-slate-50 transition-all"> <span class="text-[10px] font-black text-slate-300 group-hover:text-slate-900 mt-1 transition-colors">04</span> <div> <p class="text-sm font-bold text-slate-400 group-hover:text-slate-900 leading-tight transition-colors">Regional Mirroring</p> <p class="text-[9px] font-black text-slate-200 group-hover:text-slate-400 uppercase tracking-widest mt-0.5 transition-colors">Cluster Scalability</p> </div> </a> <a href="#" class="group flex items-start gap-4 p-3 rounded-2xl hover:bg-slate-50 transition-all border border-transparent hover:border-slate-100"> <span class="text-[10px] font-black text-slate-300 group-hover:text-slate-900 mt-1 transition-colors">05</span> <div> <p class="text-sm font-bold text-slate-400 group-hover:text-slate-900 leading-tight transition-colors">Appendix</p> <p class="text-[9px] font-black text-slate-200 group-hover:text-slate-400 uppercase tracking-widest mt-0.5 transition-colors">Technical Logs</p> </div> </a> </div> <div class="pt-6 border-t border-slate-50"> <button class="w-full py-4 bg-slate-50 text-slate-900 text-[10px] font-black uppercase tracking-widest rounded-2xl border border-slate-100 hover:bg-slate-900 hover:text-white transition-all cursor-pointer">Export Manifest PDF</button> </div> </div> </nav> </body> </html>