2021-11-11 19:54:28 +00:00
|
|
|
.app {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
|
2021-12-01 23:34:30 +00:00
|
|
|
$text-color: white;
|
|
|
|
|
2021-11-09 20:58:02 +00:00
|
|
|
.card {
|
|
|
|
background-color: grey;
|
2021-12-01 23:34:30 +00:00
|
|
|
color: $text-color;
|
2021-11-10 01:46:30 +00:00
|
|
|
margin: 5px;
|
2021-11-11 19:54:28 +00:00
|
|
|
padding: 15px;
|
2021-11-09 22:47:49 +00:00
|
|
|
box-shadow: 4px 4px 2px #5e5e5e;
|
2021-11-23 09:07:32 +00:00
|
|
|
transition: box-shadow 0.5s;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
box-shadow: none;
|
|
|
|
offset: 4px 4px;
|
|
|
|
}
|
2021-11-09 20:58:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.now-playing-card {
|
2021-11-09 22:47:49 +00:00
|
|
|
// max-width: 300px;
|
|
|
|
|
|
|
|
text-shadow: 2px 2px 2px #5e5e5e;
|
|
|
|
|
|
|
|
.cover-art {
|
|
|
|
box-shadow: 4px 4px 2px #5e5e5e;
|
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
|
|
|
}
|
|
|
|
|
|
|
|
@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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.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-02 07:28:00 +00:00
|
|
|
box-shadow: 2px 2px 2px #5e5e5e;
|
2021-12-01 23:34:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.subtle-link {
|
|
|
|
color: $text-color;
|
|
|
|
text-decoration: none;
|
2021-11-09 20:58:02 +00:00
|
|
|
}
|