Skip to content

Commit 7c8aaaa

Browse files
committed
update
1 parent 06da2a8 commit 7c8aaaa

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

images/fig1.png

264 KB
Loading

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<link rel="icon" href="index_files/favicon.png" type="image/png">
66
<link rel="preconnect" href="https://fonts.googleapis.com">
77
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
8-
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
8+
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif:wght@400;500;600;700&display=swap" rel="stylesheet">
99
<meta name="description" content="Refactoring Codebases through Library Design">
1010
<meta name="keywords" content="research, computer science">
1111
<meta http-equiv="content-type" content="text/html; charset=utf-8">
@@ -54,7 +54,7 @@ <h1>Refactoring Codebases through Library Design</h1>
5454
</nav>
5555

5656
<figure id="teaser">
57-
<img src="images/fig1.svg" alt="teaser">
57+
<img src="images/fig1.png" alt="teaser">
5858
<figcaption style="text-align: center;">Given a collection of different code sources, where a source is either program or repository, agents must design a modular and reusable library. Libraries are evaluated by how well the refactoring compress the original code, while at least maintaining correctness.</figcaption>
5959
</figure>
6060
</header>

style.css

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
body {
2020
font-family: 'Noto Serif', Georgia, serif;
2121
font-size: 16px;
22-
line-height: 1.6;
22+
line-height: 1.5;
2323
font-weight: 400;
2424
background-color: var(--nord6);
2525
color: var(--nord1);
@@ -38,13 +38,13 @@ h1, h2, h3, h4, h5, h6 {
3838
h1 {
3939
text-align: center;
4040
font-size: 2.5em;
41-
margin: 1em 0 0.5em 0;
41+
margin: 0.75em 0 0.35em 0;
4242
}
4343

4444
h2 {
4545
font-size: 1.2em;
4646
text-align: center;
47-
margin: 1em 0;
47+
margin: 0.75em 0;
4848
}
4949

5050
/* Links */
@@ -59,7 +59,7 @@ a:hover {
5959

6060
/* Navigation */
6161
nav > ul {
62-
margin: 1.5em 0;
62+
margin: 1em 0;
6363
list-style-type: none;
6464
font-weight: bold;
6565
font-size: 110%;
@@ -73,13 +73,14 @@ nav > ul > li {
7373

7474
.nav-button {
7575
display: inline-block;
76-
padding: 0.5em 1em;
76+
padding: 0.35em 0.75em;
7777
background-color: var(--nord5);
7878
border: 1px solid var(--nord4);
7979
border-radius: 4px;
8080
color: var(--nord10) !important;
8181
text-decoration: none;
8282
transition: all 0.2s ease;
83+
font-size: 0.9em;
8384
}
8485

8586
.nav-button:hover {
@@ -95,7 +96,7 @@ nav > ul > li {
9596
/* Authors section */
9697
.authors {
9798
text-align: center;
98-
margin: 1.5em 0;
99+
margin: 1em 0;
99100
font-size: 1.1em;
100101
}
101102

@@ -151,10 +152,14 @@ nav > ul > li {
151152
}
152153

153154
/* Teaser figure */
155+
#teaser {
156+
margin-bottom: 2em;
157+
}
158+
154159
#teaser > img {
155160
width: 100%;
156161
margin: 0 0 0.5em 0;
157-
border-radius: 4px;
162+
border-radius: 8px;
158163
}
159164

160165
#teaser > figcaption {
@@ -166,6 +171,7 @@ nav > ul > li {
166171
/* Citation section */
167172
.section {
168173
padding: 3rem 1.5rem;
174+
margin-top: 1.5em;
169175
}
170176

171177
.container {

0 commit comments

Comments
 (0)