This commit is contained in:
zyqunix 2025-05-11 13:33:57 +02:00
parent e3d1554eed
commit 5fb3d79c70
No known key found for this signature in database
GPG key ID: 134A8DEEA83B80E6
4 changed files with 134 additions and 4 deletions

View file

@ -551,3 +551,84 @@ div[class="cards sitemap shadow"] > h3,
div[class="cards sitemap shadow"] > h4 {
font-weight: normal;
}
.banan {
position: fixed;
left: 30px !important;
bottom: 30px !important;
width: 64px;
cursor: pointer;
pointer-events: all !important;
border-radius: 4px;
}
.music-pop {
text-align: left;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #202020ee;
width: 600px;
padding: 20px;
border-radius: 10px;
backdrop-filter: blur(10px);
}
.top {
display: flex;
justify-content: space-between;
}
.top button {
padding: 4px;
height: 32px;
width: 32px;
background-color: #ac2323;
color: #fff;
border: none;
border-radius: 8px;
cursor: pointer;
transition: 0.1s;
}
.top button:hover {
background-color: #bc3333;
}
.song {
display: flex;
align-items: center;
justify-content: space-between;
}
.song > div {
display: flex;
align-items: center;
}
#artist {
cursor: pointer;
}
#song-cover {
border-radius: 4px;
margin-right: 15px;
width: 72px;
}
#song-url {
position: relative;
background-color: #0778B7;
padding: 2px 4px;
right: 0 !important;
border-radius: 6px;
}
#song-url:hover {
background-color: #1078C7;
}
#song-url:hover > svg {
color: #fff;
}