commit
3f1f08b11a
|
|
@ -46,6 +46,17 @@
|
||||||
</div> <!-- recommended box -->
|
</div> <!-- recommended box -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="lower-row">
|
||||||
|
<div class="genre">
|
||||||
|
<div class="genre__title">
|
||||||
|
<legend>top geners</legend>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<carousel :dots="false" :nav="false" :autoWidth="true" class="carousel-custom">
|
||||||
|
<MusicBox v-for="genere in geners" :key="genere.id" :item="genere" />
|
||||||
|
</carousel>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
@ -198,6 +209,62 @@ export default {
|
||||||
artist: 'Juice WRLD',
|
artist: 'Juice WRLD',
|
||||||
artwork: '/static/demo/clever.jpg'
|
artwork: '/static/demo/clever.jpg'
|
||||||
}
|
}
|
||||||
|
],
|
||||||
|
geners: [
|
||||||
|
{
|
||||||
|
id: 0,
|
||||||
|
title: 'Habiba',
|
||||||
|
artist: 'Oldasinus',
|
||||||
|
artwork: '/static/demo/habiba.jpg'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
title: 'Starboy',
|
||||||
|
artist: 'The Weeknd',
|
||||||
|
artwork: '/static/demo/starboy.png'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
title: 'Tilte',
|
||||||
|
artist: 'Juice WRLD',
|
||||||
|
artwork: '/static/demo/clever.jpg'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
title: 'Habiba',
|
||||||
|
artist: 'Oldasinus',
|
||||||
|
artwork: '/static/demo/habiba.jpg'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
title: 'Starboy',
|
||||||
|
artist: 'The Weeknd',
|
||||||
|
artwork: '/static/demo/starboy.png'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
title: 'Tilte',
|
||||||
|
artist: 'Juice WRLD',
|
||||||
|
artwork: '/static/demo/clever.jpg'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
title: 'Habiba',
|
||||||
|
artist: 'Oldasinus',
|
||||||
|
artwork: '/static/demo/habiba.jpg'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 7,
|
||||||
|
title: 'Starboy',
|
||||||
|
artist: 'The Weeknd',
|
||||||
|
artwork: '/static/demo/starboy.png'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 8,
|
||||||
|
title: 'Tilte',
|
||||||
|
artist: 'Juice WRLD',
|
||||||
|
artwork: '/static/demo/clever.jpg'
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -267,7 +334,7 @@ section.page
|
||||||
legend
|
legend
|
||||||
font-size: 2rem
|
font-size: 2rem
|
||||||
font-family: 'Roboto Slab', serif
|
font-family: 'Roboto Slab', serif
|
||||||
margin: 15px 0px 20px 0
|
margin: 25px 0
|
||||||
text-transform: capitalize
|
text-transform: capitalize
|
||||||
|
|
||||||
h3
|
h3
|
||||||
|
|
@ -287,4 +354,15 @@ section.page
|
||||||
.recommend
|
.recommend
|
||||||
margin-left: 0
|
margin-left: 0
|
||||||
margin-top: 1.5rem
|
margin-top: 1.5rem
|
||||||
|
|
||||||
|
.genre
|
||||||
|
&__title
|
||||||
|
legend
|
||||||
|
font-size: 2rem
|
||||||
|
font-family: 'Roboto Slab', serif
|
||||||
|
margin: 15px 0px 20px 0
|
||||||
|
text-transform: capitalize
|
||||||
|
.carousel-custom
|
||||||
|
.owl-stage-outer
|
||||||
|
overflow: unset
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue