agent-evals/leaderboard
0
1/* Base styles and variables */2:root {3 --primary-color: #3498db;4 --secondary-color: #2c3e50;5 --background-color: #f8f9fa;6 --text-color: #333;7 --accent-color: #e74c3c;8 --space: 1rem;9 --base-font-size: 1.1rem;10}11 12/* Add global text styles */13body, p, div, span, .gradio-container {14 font-size: var(--base-font-size);15 line-height: 1.6;16}17 18/* Adjust heading sizes proportionally */19h1 { font-size: calc(var(--base-font-size) * 2.3); }20h2 { font-size: calc(var(--base-font-size) * 1.8); }21h3 { font-size: calc(var(--base-font-size) * 1.65); }22h4 { font-size: calc(var(--base-font-size) * 1.4); }23h5 { font-size: calc(var(--base-font-size) * 1.2); }24h6 { font-size: calc(var(--base-font-size) * 1.1); }25 26/* Tabs */27.tab-nav {28display: flex;29background-color: var(--secondary-color);30border-radius: 8px 8px 0 0;31overflow: hidden;32}33 34.tab-nav button {35padding: 1rem 1.5rem;36background-color: transparent;37color: #fff;38border: none;39cursor: pointer;40transition: background-color 0.3s;41}42 43a { 44 color: #000;45}46 47.tab-nav button:hover,48.tab-nav button.selected {49background-color: var(--primary-color);50}51 52 53.svelte-iibkxk .stretch {54display: none;55}56 57/* Utility classes */58.text-center { text-align: center; }59.text-right { text-align: right; }60.font-bold { font-weight: 700; }61.text-small { font-size: 0.875rem; }62.text-large { font-size: 1.25rem; }63.mt-1 { margin-top: 1rem; }64.mb-1 { margin-bottom: 1rem; }65.ml-1 { margin-left: 1rem; }66.mr-1 { margin-right: 1rem; }67 68/* Navigation Bar */69.nav-bar {70 background-color: var(--background-color);71 padding: 1rem;72 display: flex;73 justify-content: space-between;74 align-items: center;75 margin-bottom: 2rem;76}77 78.nav-links {79 display: flex;80 gap: 2rem;81 align-items: center;82}83 84.nav-links a {85 color: var(--text-color);86 text-decoration: none;87 font-weight: 500;88 transition: color 0.3s ease;89}90 91.nav-links a:hover {92 color: var(--primary-color);93}94 95.nav-brand {96 display: flex;97 align-items: center;98 gap: 1rem;99}100 101.nav-brand img {102 height: 40px;103 width: auto;104}105 106.nav-brand a {107 color: white;108 text-decoration: none;109 font-size: 1.5rem;110 font-weight: bold;111}112 113/* Add to existing CSS */114.markdown-text {115 font-size: 1.1rem; /* Adjust this value to make text bigger/smaller */116 line-height: 1.6; /* Improves readability */117}118 119 