Skip to content

Commit ea2e7d1

Browse files
committed
update
1 parent ccb51b6 commit ea2e7d1

2 files changed

Lines changed: 24 additions & 4 deletions

File tree

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ <h4 class="institute">University of Illinois, Urbana-Champaign</h4>
1818

1919

2020
<p>
21-
<a href="assets/pdf/AbstractRendering_Neurips2025.pdf">[Paper]</a> |
22-
<a href="https://github.com/IllinoisReliableAutonomyGroup/Abstract-Rendering.git">[Code]</a>
21+
<a href="assets/pdf/AbstractRendering_Neurips2025.pdf" class="button">Paper</a>
22+
<a href="https://github.com/IllinoisReliableAutonomyGroup/Abstract-Rendering.git" class="button">Code</a>
2323
</p>
2424
<br>
2525

style.css

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747

4848
/* Main content area */
4949
.container {
50-
width: 100%; /* Make the container span the full width */
51-
margin: 0; /* Remove auto centering */
50+
max-width: 1200px; /* Restrict the width to 1200px */
51+
margin: 0 auto; /* Center the container */
5252
padding: 0 20px 60px;
5353
background-color: #fff;
5454
}
@@ -126,3 +126,23 @@
126126
font-weight: normal; /* Ensure it's not bold */
127127
margin: 10px 0;
128128
}
129+
130+
.button {
131+
display: inline-block;
132+
padding: 10px 20px;
133+
font-size: 1rem;
134+
color: #fff;
135+
background-color: #0066cc;
136+
text-decoration: none;
137+
border-radius: 5px;
138+
transition: background-color 0.3s ease;
139+
}
140+
141+
.button:hover {
142+
background-color: #004999;
143+
}
144+
145+
p {
146+
font-size: 1.2rem; /* Increase font size */
147+
line-height: 1.8; /* Adjust line height for better readability */
148+
}

0 commit comments

Comments
 (0)