playlist/playlist.css

68 lines
850 B
CSS
Raw Normal View History

2018-03-18 12:07:08 -06:00
body {
background-color: #000;
color: #fa4;
font-family: sans-serif;
}
audio {
min-width: 40em;
}
2019-03-16 10:34:15 -06:00
#pos {
width: 100%;
}
2018-03-18 12:07:08 -06:00
#currentTime {
background-color: #001;
float: right;
font-size: 1500%;
font-family: "Roboto", "Droid Sans Mono", monospace;
}
2023-03-12 19:24:54 -06:00
#remainingTime {
2018-03-18 16:25:32 -06:00
clear: both;
background-color: #001;
float: right;
font-size: 500%;
font-family: "Roboto", "Droid Sans Mono", monospace;
}
2018-03-18 12:07:08 -06:00
#controls {
padding: 1em;
}
#controls a {
font-size: 200%;
padding: 0.5em;
}
#playlist {
2023-03-12 19:24:54 -06:00
font-size: 150%;
2018-03-18 12:07:08 -06:00
width: auto;
}
.current {
background-color: #224;
}
@keyframes pulse {
0% {
background-color: #430;
}
25% {
background-color: inherit;
}
75% {
background-color: inherit;
}
100% {
background-color: #430;
}
}
.fin {
animation: pulse 1s infinite;
2023-03-12 11:15:14 -06:00
}
.loading {
color: #555;
}