69 lines
1019 B
CSS
69 lines
1019 B
CSS
* {
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
background-color: #222;
|
|
color: #fff;
|
|
margin: 0;
|
|
}
|
|
|
|
h1, h2 {
|
|
margin: 0 0 10px 0;
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
}
|
|
|
|
#connection {
|
|
margin: 10px;
|
|
}
|
|
|
|
#current-song {
|
|
margin: 10px;
|
|
}
|
|
|
|
#current-song div.info {
|
|
display: flex;
|
|
align-items: center;
|
|
line-height: 1;
|
|
}
|
|
|
|
#current-song div.info {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
#current-song div.info img.art {
|
|
width: 80px;
|
|
height: 80px;
|
|
border-radius: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
#current-song div.info div.description > div {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
#current-song div.info div.description > div:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
#current-song div.duration {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
#current-song div.duration > * {
|
|
padding: 10px;
|
|
}
|
|
|
|
#current-song div.guid {
|
|
margin-top: 10px;
|
|
text-align: center;
|
|
} |