Skip to content

Commit

Permalink
GitHub Link
Browse files Browse the repository at this point in the history
  • Loading branch information
Bai-YT committed Oct 18, 2023
1 parent c277fad commit a014857
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 2 deletions.
6 changes: 5 additions & 1 deletion demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@ <h3><b>Accelerating Diffusion-Based Text-to-Audio Generation with Consistency Di

<div style="height:13px;"></div>

<!-- Buttons -->
<a href="index.html"><button class="home-button">Project home</button></a>
<a href="https://arxiv.org/abs/2309.10740">
<a href="https://arxiv.org/abs/2309.10740" target="_blank">
<button class="paper-button">Preprint paper</button>
</a>
<a href="https://github.com/Consistency-TTA/consistency-tta.github.io" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="evaluation.html"><button class="eval-button">Sample evaluation form</button></a>

<div style="height:7px;"></div>
Expand Down
1 change: 1 addition & 0 deletions evaluation.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<section class="section">
<h1>Example Human Evaluation Form</h1>
Accelerating Diffusion-Based Text-to-Audio Generation with Consistency Distillation<br><br>
<!-- Home button -->
<a href="index.html"><button class="home-button">Project Home Page</button></a><br><br>

<hr>
Expand Down
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,14 @@ <h3><a href="https://bai-yt.github.io" target=&ldquo;blank&rdquo;><u>Yatong Bai<

<div style="height:13px;"></div>

<!-- Buttons -->
<a href="demo.html"><button class="demo-button">Demo page</button></a>
<a href="https://arxiv.org/abs/2309.10740">
<a href="https://arxiv.org/abs/2309.10740" target="_blank">
<button class="paper-button">Preprint paper</button>
</a>
<a href="https://github.com/Consistency-TTA/consistency-tta.github.io" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="evaluation.html"><button class="eval-button">Sample evaluation form</button></a>

<div style="height:7px;"></div>
Expand Down
14 changes: 14 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
@import url(
'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css'
);
@import url(
'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css'
);


body {
font-family: 'Lato', sans-serif;
Expand Down Expand Up @@ -123,6 +127,16 @@ button:hover {
opacity: 0.75 /* A generic hover effect for all buttons */
}

a .fab.fa-github {
color: #FEFEFE; /* or any color you prefer */
vertical-align: bottom;
font-size: 48px; /* adjust size as needed */
}
a:hover .fab.fa-github {
color: #5a86c0; /* color on hover */
}


footer {
background-color: #264653; /* Dark Desaturated Blue */
color: #e9e9e9;
Expand Down

0 comments on commit a014857

Please sign in to comment.