SPB Git

spb/llmindex Public

The discriminative, contamination-resistant, fully transparent LLM ranking — updated live.

TypeScript 77.9% TeX 15.2% Python 3.7% SQL 1.4% JavaScript 1.1% Shell 0.5%
546 B · 33 lines css
Raw Blame History
1/*2 * llmindex.io — global styles (clean light theme)3 * Author:  Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 * License: Proprietary — © Simon-Pierre Boucher, all rights reserved6 */7@tailwind base;8@tailwind components;9@tailwind utilities;1011:root {12  color-scheme: light;13}1415body {16  @apply bg-zinc-50 text-zinc-700 antialiased;17}1819@keyframes row-in {20  from {21    opacity: 0;22    transform: translateY(6px);23  }24  to {25    opacity: 1;26    transform: translateY(0);27  }28}2930.animate-row-in {31  animation: row-in 0.6s ease-out;32}33