Skip to content

Commit

Permalink
Added poster and video to website | Fixed scaling bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sstepput committed Nov 30, 2023
1 parent 343c8a6 commit 0bd987a
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 1 deletion.
22 changes: 22 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,27 @@ <h2 class="title is-4">Role Prediction</h2>
</div>
</div>

<div class="columns is-centered">
<div class="column">
<div class="content">
<h2 class="title is-4">Poster</h2>
<img class="posterimg" src="static/assets/Poster_EMNLP_4648.png" alt="EMNLP Poster">
<p>
A high-resolution <a href="static/assets/Poster_EMNLP_4648.pdf">PDF</a>.
</p>
</div>
</div>
<div class="column">
<div class="content">
<h2 class="title is-4">Video</h2>
<iframe width="560" height="315" src="https://www.youtube-nocookie.com/embed/4G1-dUSRioM?si=35HrUqwLedvnbcEd" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
<p>
6-minute video presentation of our work.
</p>
</div>
</div>
</div>

<div class="columns is-centered ">
<div class="column is-full-width">
<h2 class="title is-3"><span class="dcliport">Dataset Overview</span></h2>
Expand Down Expand Up @@ -199,6 +220,7 @@ <h3 class="title is-4"><span class="dcliport">Interactive Example</span></h3>

</div>
</div>
</div>
</section>

<section class="section" id="BibTeX">
Expand Down
Binary file added docs/static/assets/Poster_EMNLP_4648.pdf
Binary file not shown.
Binary file added docs/static/assets/Poster_EMNLP_4648.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion docs/static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

.div-only-mobile {}

@media screen and (max-width: 1920px) {
@media screen and (max-width: 5920px) {
.div-only-mobile {
display: none;
}
Expand Down Expand Up @@ -34,4 +34,13 @@ ul li {
color: white;
padding: 20px;
margin: 10px;
}

.posterimg {
width: 100%;
height: 315px;
object-fit: cover;
object-position: 100% 0;
-webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}

0 comments on commit 0bd987a

Please sign in to comment.