Files
novatorem/api/templates/preview.html

115 lines
2.5 KiB
HTML
Raw Normal View History

2020-08-15 22:22:39 -04:00
<div xmlns="http://www.w3.org/1999/xhtml" class="container">
<style>
div {
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji;
}
.main {
display: flex;
2020-08-23 10:34:18 -04:00
width: "480px";
height: "133px";
2020-08-15 22:22:39 -04:00
}
.container {
2020-08-23 10:34:18 -04:00
border-radius: 5px;
padding: 10px 10px 10px 0px;
2020-08-15 22:22:39 -04:00
}
.playing {
font-weight: bold;
color: #53b14f;
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
.not-play {
color: #ff1616;
}
2020-08-23 10:34:18 -04:00
.art {
float: left;
width: 27%;
margin-left: -5px;
}
.text {
width: 71%;
2020-08-15 22:22:39 -04:00
}
.song {
2020-08-23 10:34:18 -04:00
font-size: 24px;
color: #666;
text-align: center;
margin-top: 3px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.artist {
2020-08-15 22:22:39 -04:00
font-size: 20px;
color: #b3b3b3;
2020-08-23 10:34:18 -04:00
text-align: center;
margin-bottom: 5px;
2020-08-15 22:22:39 -04:00
}
.logo {
margin-left: 5px;
margin-top: 5px;
}
.cover {
border-radius: 5px;
2020-08-23 10:34:18 -04:00
height: 100px;
width: 100px;
2020-08-15 22:22:39 -04:00
}
#bars {
height: 30px;
2020-08-23 10:34:18 -04:00
bottom: 23px;
2020-08-15 22:22:39 -04:00
margin: -20px 0 0 0px;
position: absolute;
width: 40px;
}
.bar {
2020-08-23 10:34:18 -04:00
background: #1DB954cc;
2020-08-15 22:22:39 -04:00
bottom: 1px;
height: 3px;
position: absolute;
width: 3px;
animation: sound 0ms -800ms linear infinite alternate;
}
@keyframes sound {
0% {
opacity: .35;
height: 3px;
}
100% {
opacity: 1;
2020-08-23 10:34:18 -04:00
height: 15px;
2020-08-15 22:22:39 -04:00
}
}
</style>
2020-08-23 10:34:18 -04:00
2020-08-15 22:22:39 -04:00
<div class="main">
<a class="art" href="{}" target="_BLANK">
<center>
2020-08-23 10:34:18 -04:00
<img src="https://source.unsplash.com/random/500x500" class="cover" />
2020-08-15 22:22:39 -04:00
</center>
</a>
<div class="text">
<div class="song">Song</div>
2020-08-23 10:34:18 -04:00
<div class="artist">Arist</div>
<div id="bars">
{{content_bar|safe}}
</div>
2020-08-15 22:22:39 -04:00
</div>
</div>
</div>