Skip to content

Commit d1a4049

Browse files
committed
Add gigachad blog post
1 parent aef00b0 commit d1a4049

12 files changed

Lines changed: 563 additions & 15 deletions

File tree

pages/insights/20251104_release.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,7 @@ date: 2025-11-04
33
description: Benchmarking Goal Oriented Software Engineering
44
authors: John Yang, Kilian Lieret
55

6-
<div style="text-align:center; margin-bottom:1em;">
7-
<img
8-
src="/static/images/insights/20251104_release/banner.png"
9-
style="width:80%; max-width:800px; display:block; margin-left:auto; margin-right:auto;"
10-
alt="CodeClash Release Banner"
11-
/>
12-
</div>
6+
<img src="/static/images/insights/20251104_release/banner.png" class="img-insight" />
137

148
<div style="display:flex;justify-content:center;">
159
<div style="position:relative;padding-bottom:50%;height:0;overflow:hidden;width:80%;max-width:800px;">

pages/insights/20251106_elo.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,3 @@ title: Elo Explained
22
date: 2025-11-06
33
description: How do we rank models' performance in CodeClash?
44
authors: Kilian Lieret
5-
6-
---

pages/insights/20251108_human_ai.md

Lines changed: 418 additions & 3 deletions
Large diffs are not rendered by default.

static/css/layout.css

Lines changed: 97 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,29 @@ body {
1010
margin: 0 auto;
1111
}
1212

13+
.container {
14+
margin-bottom: 2em;
15+
}
16+
17+
.img-insight {
18+
width: 80%;
19+
display: block;
20+
margin: 0 auto;
21+
cursor: pointer;
22+
transition: opacity 0.2s;
23+
}
24+
25+
.img-insight:hover {
26+
opacity: 0.8;
27+
}
28+
29+
.img-inline {
30+
vertical-align: middle;
31+
margin-right: 0.1em;
32+
display: inline-block;
33+
transform: translateY(-0.12em);
34+
}
35+
1336
/* Top Navigation Bar */
1437
.nav-container {
1538
display: flex;
@@ -124,6 +147,11 @@ body {
124147
color: var(--gray);
125148
}
126149

150+
.insight-page {
151+
margin: 0 auto;
152+
width: 75%;
153+
}
154+
127155
/* Arenas grid */
128156
.arenas-container {
129157
padding: 1rem;
@@ -229,3 +257,72 @@ pre {
229257
font-size: var(--text-sm);
230258
line-height: 1.5;
231259
}
260+
261+
pre p {
262+
margin: 0;
263+
}
264+
265+
code {
266+
font-family: 'Source Code Pro', monospace;
267+
font-size: var(--text-sm);
268+
}
269+
270+
/* Summary/Details - collapsible sections */
271+
summary {
272+
cursor: pointer;
273+
padding: 0.25rem 0.5rem;
274+
border-left: 3px solid #e1e4e8;
275+
margin-bottom: 0.5rem;
276+
transition: border-color 0.2s;
277+
}
278+
279+
summary:hover {
280+
border-left-color: var(--gray);
281+
}
282+
283+
/* Blockquotes */
284+
blockquote {
285+
margin-left: 0.25em;
286+
padding-left: 1em;
287+
border-left: 4px solid var(--gray);
288+
color: var(--gray);
289+
}
290+
291+
/* Image lightbox */
292+
.lightbox {
293+
display: none;
294+
position: fixed;
295+
z-index: 1000;
296+
top: 0;
297+
left: 0;
298+
width: 100%;
299+
height: 100%;
300+
background-color: rgba(0, 0, 0, 0.9);
301+
justify-content: center;
302+
align-items: center;
303+
}
304+
305+
.lightbox.active {
306+
display: flex;
307+
}
308+
309+
.lightbox img {
310+
max-width: 90%;
311+
max-height: 90%;
312+
object-fit: contain;
313+
}
314+
315+
.lightbox-close {
316+
position: absolute;
317+
top: 20px;
318+
right: 40px;
319+
color: white;
320+
font-size: 40px;
321+
font-weight: bold;
322+
cursor: pointer;
323+
transition: opacity 0.2s;
324+
}
325+
326+
.lightbox-close:hover {
327+
opacity: 0.7;
328+
}
258 KB
Loading
103 KB
Loading
224 KB
Loading
301 KB
Loading
383 KB
Loading

templates/arena.html

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ <h2 style="margin: 0 auto;">
77
<img
88
src="{{ page.logo }}"
99
alt="{{ page.title }}"
10-
style="height:1.5rem;vertical-align:middle;margin-right:0.1em;display:inline-block;transform:translateY(-0.12em);"
10+
class="img-inline"
11+
style="height:1.5rem;"
1112
/>
1213
{{ page.title }}
1314
</h2>
@@ -40,7 +41,7 @@ <h2 style="margin: 0 auto;">
4041
<p style="font-size:0.9em; margin-top:0.5em;width:{{ (page.description_width or 50) }}%;">{{page.description}}</p>
4142
</div>
4243

43-
<div style="width: 75%; margin: 0 auto; margin-bottom: 2em;">
44+
<div style="width: 75%; margin: 0 auto;">
4445
<hr style="margin:1.5em auto;"/>
4546
<h3>Leaderboard</h3>
4647
{% include "_leaderboard.html" %}

0 commit comments

Comments
 (0)