sussy-audio-player/index.css

113 lines
1.4 KiB
CSS
Raw Permalink Normal View History

2021-12-27 23:34:55 +00:00
@keyframes beat {
0% {
width: 100%;
}
100% {
width: 0%;
}
}
* {
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}
body {
margin: 0;
overflow: hidden;
min-height: 100vh;
background-color: #111111;
}
#bg {
content: "";
position: absolute;
width: 100%;
height: 100%;
z-index: -1;
background-size: cover;
background-repeat: no-repeat;
}
#tracks {
display: flex;
justify-content: space-evenly;
color: #ffffff;
}
#tracks a:link {
color: #aaaaaa;
}
#tracks a:visited {
color: #aaaaaa;
}
#tracks a:hover {
color: #ffffff;
}
#tracks a:active {
color: #888888;
}
.cocainer {
display: flex;
flex-direction: column;
height: 100vh;
}
.main {
padding: 8px;
height: 100%;
flex: auto;
overflow: auto;
}
.text {
color: #FFFFFF;
}
.fixed {
flex: none;
}
.progress {
width: 100%;
height: 24px;
background-color: #555555;
}
.progress .inner {
height: 100%;
color: #ffffff;
background-color: #b82c2c;
}
.progress.main-progress {
position: relative;
}
.progress.main-progress .inner {
position: absolute;
}
#time {
width: 100%;
height: 100%;
text-align: right;
position: absolute;
padding: 0 8px;
line-height: 24px;
font-size: 16px;
}
#beat {
margin: 0 auto;
}
/*.beat-anim {
animation: beat 0.5s cubic-bezier(.6,.26,1,.12);
}*/