File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 /* Font sizes */
2525 --text-xs : 0.7rem ; /* 12px */
2626 --text-sm : 0.8rem ; /* 14px */
27- --text-base : 0.925 rem ; /* 16px */
27+ --text-base : 0.95 rem ; /* 16px */
2828 --text-md : 1.125rem ; /* 18px */
2929 --text-lg : 1.25rem ; /* 20px */
3030 --text-xl : 1.5rem ; /* 24px */
Original file line number Diff line number Diff line change 99 text-align : center;
1010 font-family : var (--font-anta );
1111 font-size : var (--text-xl );
12+ margin-top : 0 ;
1213}
1314
1415.hborder {
105106 font-weight : 800 ;
106107 background : transparent;
107108 transition : all 0.15s ease;
109+ padding : 0.5em 1em ;
108110}
109111
110112.cta-button : hover {
Original file line number Diff line number Diff line change 4040 display : flex;
4141 align-items : center;
4242 justify-content : space-between;
43- margin : 0 1rem ;
43+ margin : 0 1em ;
44+ padding : 0.25em 1em ;
4445 border-bottom : 1px solid var (--border );
4546 top : 0 ;
4647 background-color : var (--bg );
8990 cursor : pointer;
9091}
9192
93+ /* Theme toggle */
94+ .theme-toggle {
95+ background : none;
96+ border : none;
97+ cursor : pointer;
98+ padding : 0.5rem ;
99+ display : flex;
100+ align-items : center;
101+ justify-content : center;
102+ color : var (--fg );
103+ transition : opacity 0.2s ;
104+ transform : translateY (-2px );
105+ }
106+
107+ .theme-toggle : hover {
108+ opacity : 0.7 ;
109+ }
110+
111+ .theme-icon {
112+ width : 1.25rem ;
113+ height : 1.25rem ;
114+ }
115+
116+ /* Show sun in dark mode, moon in light mode */
117+ : root [data-theme = "light" ] .sun-icon {
118+ display : none;
119+ }
120+
121+ : root [data-theme = "light" ] .moon-icon {
122+ display : block;
123+ }
124+
125+ : root [data-theme = "dark" ] .sun-icon {
126+ display : block;
127+ }
128+
129+ : root [data-theme = "dark" ] .moon-icon {
130+ display : none;
131+ }
132+
92133/* Leaderboard Table */
93134.bordered {
94135 background : transparent;
Original file line number Diff line number Diff line change 1515 id ="theme-toggle "
1616 class ="theme-toggle "
1717 aria-label ="Toggle theme "
18- > THEME</ button >
18+ >
19+ < img src ="/static/images/misc/sun.svg " class ="theme-icon sun-icon " alt ="Light mode " />
20+ < img src ="/static/images/misc/moon.svg " class ="theme-icon moon-icon " alt ="Dark mode " />
21+ </ button >
1922 </ div >
2023</ nav >
Original file line number Diff line number Diff line change 5858 function updateLabel ( ) {
5959 var theme = effectiveTheme ( ) ;
6060 if ( ! btn ) return ;
61- btn . textContent = theme === 'dark' ? 'LIGHT' : 'DARK' ;
61+ // Don't set textContent - we're using SVG icons now
6262 btn . title = 'Switch to ' + ( theme === 'dark' ? 'light' : 'dark' ) + ' mode' ;
63- btn . setAttribute ( 'aria-pressed ' , theme === 'dark' ? 'true ' : 'false ' ) ;
63+ btn . setAttribute ( 'aria-label ' , 'Switch to ' + ( theme === 'dark' ? 'light ' : 'dark' ) + ' mode ') ;
6464 }
6565 function toggle ( ) {
6666 var next = effectiveTheme ( ) === 'dark' ? 'light' : 'dark' ;
Original file line number Diff line number Diff line change 11{% extends 'base.html' %}
22
3- {% block title %}CodeClash - Evaluating LMs as Goal-Driven Developers {% endblock %}
3+ {% block title %}CodeClash{% endblock %}
44
55{% block content %}
66< section style ="text-align:center;margin-top: 3em; ">
147147< hr class ="hborder " />
148148
149149 < section class ="hsection " style ="text-align: center;margin-bottom: 2em; ">
150- < p > CodeClash is fully open-source.</ p >
151-
150+ < p > CodeClash is fully open-source</ p >
152151 < div class ="cta-buttons ">
153- < a href ="# " class ="cta-button primary "> Read the Paper</ a >
154- < a href ="# " class ="cta-button "> View on GitHub</ a >
155- < a href ="# " class ="cta-button "> Explore Arenas</ a >
152+ < a href ="https://arxiv.org/abs/2511.00839 " class ="cta-button primary "> Read the Paper</ a >
153+ < a href ="https://github.com/CodeClash-ai/CodeClash " class ="cta-button "> View on GitHub</ a >
154+ < a href ="/arenas/ " class ="cta-button "> Explore Arenas</ a >
156155 < a href ="# " class ="cta-button "> Explore Trajectories</ a >
157156 </ div >
158157 </ section >
You can’t perform that action at this time.
0 commit comments