Skip to content

Commit ce8ed72

Browse files
committed
docs: reformat
1 parent 27dc4ef commit ce8ed72

3 files changed

Lines changed: 31 additions & 9 deletions

File tree

assets/css/custom.css

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
--text-1-light: #0e172a;
55
--text-2-light: #465168;
66
--border-light: #b9c7dc;
7-
--content-width: 1200px;
8-
--content-gutter: 1.5rem;
7+
--content-width: 900px;
8+
--content-gutter: 2.5rem;
99
--surface-1: var(--surface-1-light);
1010
--surface-2: var(--surface-2-light);
1111
--text-1: var(--text-1-light);
@@ -26,6 +26,10 @@ body {
2626
color: var(--text-1);
2727
}
2828

29+
main {
30+
padding-top: 6rem;
31+
}
32+
2933
.site-header,
3034
.lead-copy,
3135
nav.categories,
@@ -104,7 +108,7 @@ section.galleries,
104108
}
105109

106110
.lead-copy {
107-
margin-top: 4rem;
111+
margin-top: 2rem;
108112
margin-bottom: 6rem;
109113
max-width: var(--content-width);
110114
margin-left: auto;

content/_index.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,14 @@ resources:
77
cover: true
88
---
99

10-
Welcome to OpenMLRL 👋
10+
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap" rel="stylesheet">
11+
12+
<div style="display: flex; align-items: center;">
13+
<img src="/img/openmlrl.svg" alt="OpenMLRL Logo" width="50" height="50" loading="lazy">
14+
<span style="margin-left: 24px; margin-right: 16px; font-family: 'Inter', 'Trebuchet MS', sans-serif; font-weight: 700; font-size: 2.5rem; color: #2b3553;">
15+
Welcome to OpenMLRL
16+
</span>
17+
</div>
1118

1219

1320

@@ -16,8 +23,8 @@ Welcome to OpenMLRL 👋
1623
</p>
1724
<p class="lead-subtext lead-subtext--small">Our missions are:<br></p>
1825
<ul class="lead-subtext lead-subtext--small"
19-
style="list-style-type: disc; margin-left: 1.5em; margin-top: 0.4em; line-height: 2;">
20-
<li>Training LLM agents to cooperate effectively to solve tasks together</li>
21-
<li>Improving the performance and scalability of RL methods in multi-LLM systems</li>
22-
<li>Enabling multi-turn interactions between agents and other models to strengthen reasoning</li>
23-
</ul>
26+
style="list-style-type: disc; margin-left: 2em; margin-top: 0.6em; line-height: 2;">
27+
<li> Training LLM agents to cooperate effectively to solve tasks together</li>
28+
<li> Improving the performance and scalability of RL methods in multi-LLM systems</li>
29+
<li> Enabling multi-turn interactions between agents and other models to strengthen reasoning</li>
30+
</ul>

layouts/_default/baseof.html

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!doctype html>
2+
{{- $theme := .Params.theme | default .Site.Params.defaultTheme }}
3+
<html class="{{- if (eq $theme "light") -}}light{{- else if (eq $theme "dark") }}dark{{ end }}" lang="{{- site.LanguageCode | default "en" -}}">
4+
{{ partial "head.html" . }}
5+
<body>
6+
<main>
7+
{{ block "main" . }}{{ end }}
8+
</main>
9+
{{ block "footer" . }}{{ partialCached "footer.html" . }}{{ end }}
10+
</body>
11+
</html>

0 commit comments

Comments
 (0)