Skip to content

Commit

Permalink
reorder videos
Browse files Browse the repository at this point in the history
  • Loading branch information
AricGamma committed Mar 23, 2024
1 parent c717a44 commit 17daec0
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 28 deletions.
6 changes: 5 additions & 1 deletion src/assets/base.css
Expand Up @@ -23,7 +23,7 @@

/* semantic color variables for this project */
:root {
--color-background: var(--vt-c-white);
--color-background: rgb(243 244 246 / var(--tw-bg-opacity));
--color-background-soft: var(--vt-c-white-soft);
--color-background-mute: var(--vt-c-white-mute);

Expand Down Expand Up @@ -86,3 +86,7 @@ body {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

p {
text-align: justify !important;
}
6 changes: 2 additions & 4 deletions src/assets/main.css
Expand Up @@ -20,21 +20,20 @@ p {

#app {
margin: 0 auto;
padding: 2rem;
font-weight: normal;
}

a,
.green {
@apply text-blue-500;
text-decoration: none;
color: hsla(160, 100%, 37%, 1);
transition: 0.4s;
padding: 3px;
}

@media (hover: hover) {
a:hover {
color: hsla(160, 100%, 37%, 0.464);
@apply text-blue-600;
}
}

Expand All @@ -49,7 +48,6 @@ a,
width: 100%;
height: 100%;
grid-template-columns: 1fr 1fr;
padding: 0 2rem;
}
}

Expand Down
50 changes: 27 additions & 23 deletions src/views/HomeView.vue
Expand Up @@ -129,40 +129,39 @@ const bibTex = ref(`@inproceedings{2024champ,
</section>


<section class="videos">
<h3>Animate Human Image</h3>
<section class="useen">
<h3>Unseen Domain Animation</h3>
<div class="panel">
<AnimateHumanVideos></AnimateHumanVideos>
<UnseenVideos></UnseenVideos>
</div>
</section>


<section class="comparisions">
<h3>Comparisions</h3>
<section class="cross-id">
<h3>Cross-ID Animation</h3>
<div class="panel">
<ComparisionVideos></ComparisionVideos>
<CrossIdVideos></CrossIdVideos>
</div>
</section>

<section class="useen">
<h3>Unseen Domain Animation</h3>
<section class="t2i">
<h3>Combining with T2I</h3>
<div class="panel">
<UnseenVideos></UnseenVideos>
<T2IVideos></T2IVideos>
</div>
</section>


<section class="t2i">
<h3>Combining with T2I</h3>
<section class="comparisions">
<h3>Comparisions with Existed Approaches</h3>
<div class="panel">
<T2IVideos></T2IVideos>
<ComparisionVideos></ComparisionVideos>
</div>
</section>

<section class="cross-id">
<h3>Cross-ID Animation</h3>

<section class="videos">
<h3>Animation on TikTok Dataset</h3>
<div class="panel">
<CrossIdVideos></CrossIdVideos>
<AnimateHumanVideos></AnimateHumanVideos>
</div>
</section>

Expand All @@ -177,7 +176,12 @@ const bibTex = ref(`@inproceedings{2024champ,

<style scoped lang="scss">
main {
@apply w-full h-full flex flex-col items-center my-5;
@apply w-full h-full flex flex-col items-center;
>:nth-child(2n-1) {
@apply bg-white;
@apply dark:bg-black/50;
}
h1 {
@apply text-7xl text-center;
Expand All @@ -188,12 +192,12 @@ main {
}
h3 {
@apply text-4xl text-center my-5;
@apply text-3xl text-center my-5;
}
}
section {
@apply w-full py-5 md:px-16;
@apply w-full py-10 md:px-16;
@apply flex flex-col justify-center items-center;
}
Expand All @@ -208,22 +212,22 @@ section {
}
video {
max-width: 768px;
max-width: 960px;
@apply mt-4 block w-full;
}
}
.framework {
* {
max-width: 768px;
max-width: 960px;
@apply w-full;
}
}
.abstract {
div {
max-width: 768px;
max-width: 960px;
@apply w-full mt-2;
}
Expand Down

0 comments on commit 17daec0

Please sign in to comment.