2021-11-11 19:54:28 +00:00
|
|
|
.app {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2021-12-01 23:34:30 +00:00
|
|
|
$text-color: white;
|
2021-12-19 22:50:03 +00:00
|
|
|
$shadow-color: #1e1e1e;
|
2021-12-01 23:34:30 +00:00
|
|
|
|
2021-11-09 20:58:02 +00:00
|
|
|
.now-playing-card {
|
2021-11-09 22:47:49 +00:00
|
|
|
// max-width: 300px;
|
|
|
|
|
2021-12-19 22:50:03 +00:00
|
|
|
text-shadow: 2px 2px 2px $shadow-color;
|
2021-11-09 22:47:49 +00:00
|
|
|
|
|
|
|
.cover-art {
|
2021-12-19 22:50:03 +00:00
|
|
|
box-shadow: 4px 4px 2px $shadow-color;
|
2021-11-11 19:54:28 +00:00
|
|
|
margin-bottom: 15px;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
|
|
|
// margin: 15px;
|
2021-11-09 22:47:49 +00:00
|
|
|
}
|
2021-11-11 19:54:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.info-card {
|
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
2021-11-09 22:47:49 +00:00
|
|
|
|
|
|
|
img {
|
2021-11-11 19:54:28 +00:00
|
|
|
// margin: 15px;
|
2021-11-09 22:47:49 +00:00
|
|
|
}
|
2021-11-10 01:46:30 +00:00
|
|
|
}
|
|
|
|
|
2022-06-18 10:56:34 +01:00
|
|
|
.chart-card {
|
2022-10-01 23:36:06 +01:00
|
|
|
// width: 500px;
|
2022-11-13 21:44:02 +00:00
|
|
|
margin-top: 10px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
// width: 100%;
|
|
|
|
// max-width: max-content;
|
2022-06-18 10:56:34 +01:00
|
|
|
}
|
|
|
|
|
2021-11-10 01:46:30 +00:00
|
|
|
@media only screen and (min-width: 768px) {
|
2021-11-11 19:54:28 +00:00
|
|
|
.app {
|
|
|
|
display: flex;
|
|
|
|
align-items: flex-start;
|
2021-12-01 23:34:30 +00:00
|
|
|
flex-wrap: wrap;
|
2021-11-11 19:54:28 +00:00
|
|
|
}
|
|
|
|
|
2021-11-10 01:46:30 +00:00
|
|
|
.now-playing-card {
|
|
|
|
position: fixed;
|
2021-11-11 19:54:28 +00:00
|
|
|
z-index: 10;
|
2021-11-10 01:46:30 +00:00
|
|
|
right: 20px;
|
|
|
|
bottom: 20px;
|
|
|
|
|
2021-11-11 19:54:28 +00:00
|
|
|
width: 250px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 768px) {
|
|
|
|
.info-card {
|
2021-12-01 23:34:30 +00:00
|
|
|
min-width: 200px;
|
|
|
|
max-width: 500px;
|
2021-11-10 01:46:30 +00:00
|
|
|
}
|
2022-11-13 21:44:02 +00:00
|
|
|
|
|
|
|
.chart-card {
|
|
|
|
width: 500px;
|
|
|
|
}
|
2021-11-10 01:46:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.spotify-logo {
|
|
|
|
width: 21px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 21px;
|
|
|
|
}
|
2021-12-01 23:34:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.lastfm-logo {
|
|
|
|
width: 24px;
|
|
|
|
|
|
|
|
img {
|
|
|
|
width: 24px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.popularity-progress {
|
2021-12-02 07:28:00 +00:00
|
|
|
margin-top: 10px;
|
2021-12-01 23:34:30 +00:00
|
|
|
margin-bottom: 20px;
|
2021-12-19 22:50:03 +00:00
|
|
|
box-shadow: 2px 2px 2px $shadow-color;
|
2021-12-01 23:34:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.subtle-link {
|
|
|
|
color: $text-color;
|
|
|
|
text-decoration: none;
|
2021-11-09 20:58:02 +00:00
|
|
|
}
|