45 lines
No EOL
823 B
CSS
45 lines
No EOL
823 B
CSS
.me-container {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.75rem;
|
|
.img-container {
|
|
width: 80px;
|
|
height: 80px;
|
|
clip-path: var(--clip-avatar-outer);
|
|
img {
|
|
width: 80px;
|
|
height: 80px;
|
|
clip-path: var(--clip-avatar-inner);
|
|
}
|
|
}
|
|
}
|
|
.spotify-card-wrapper {
|
|
background: var(--album-color);
|
|
position: relative;
|
|
clip-path: var(--clip-sp-1);
|
|
.spotify-card {
|
|
.secondary-meta {
|
|
color: #a6adc8;
|
|
font-size: 0.85rem;
|
|
}
|
|
padding: 15px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
clip-path: var(--clip-sp-2);
|
|
}
|
|
}
|
|
|
|
.spotify-card-wrapper::before {
|
|
content: "";
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
clip-path: var(--clip-sp-3);
|
|
position: absolute;
|
|
background-image: var(--album-art);
|
|
background-size: cover;
|
|
background-position: center;
|
|
filter: blur(20px) brightness(0.5);
|
|
} |