mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-14 05:28:58 +01:00
add blur bg
This commit is contained in:
parent
e79d79e2be
commit
a6d3e97e81
1 changed files with 20 additions and 1 deletions
|
@ -164,6 +164,25 @@ font-family:Ubuntu
|
||||||
font-stretch: ultra-expanded;
|
font-stretch: ultra-expanded;
|
||||||
font-weight: 600;
|
font-weight: 600;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.playlist-info{
|
||||||
|
position: sticky
|
||||||
|
}
|
||||||
|
|
||||||
|
.playlist-info::before {
|
||||||
|
content: '';
|
||||||
|
position: absolute;
|
||||||
|
top: 0;
|
||||||
|
left: 0;
|
||||||
|
width: 14em;
|
||||||
|
height: 447px;
|
||||||
|
background-size: cover;
|
||||||
|
filter: blur(53px);
|
||||||
|
backdrop-filter: blur(157px);
|
||||||
|
z-index: -1;
|
||||||
|
background-image: url(<%- mediaproxy %>/proxy?url=<%- p.playlistThumbnail %>sqp=-oaymwEXCNACELwBSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCLG7gzsIdtlp7ugZJH8YaAHX5bIw&days_since_epoch=19755);
|
||||||
|
margin-left: 65px;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
|
@ -197,7 +216,7 @@ font-family:Ubuntu
|
||||||
<div class="playlist-info" style="max-height: 26em;border-radius: 1em;">
|
<div class="playlist-info" style="max-height: 26em;border-radius: 1em;">
|
||||||
<% if (!p.mixId) { %>
|
<% if (!p.mixId) { %>
|
||||||
|
|
||||||
<div class="thumbnail" style="background-image: url('<%- mediaproxy %>/proxy?url=<%- p.playlistThumbnail %>sqp=-oaymwEXCNACELwBSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCLG7gzsIdtlp7ugZJH8YaAHX5bIw&days_since_epoch=19755');border-radius: 13px;border: 1px solid #ff0064"">
|
<div class="thumbnail" style="background-image: url('<%- mediaproxy %>/proxy?url=<%- p.playlistThumbnail %>sqp=-oaymwEXCNACELwBSFryq4qpAwkIARUAAIhCGAE=&rs=AOn4CLCLG7gzsIdtlp7ugZJH8YaAHX5bIw&days_since_epoch=19755');border-radius: 13px;border: 1px solid #ff0064">
|
||||||
</div> <% } %>
|
</div> <% } %>
|
||||||
|
|
||||||
<p class="title"><%- p.title %> </p>
|
<p class="title"><%- p.title %> </p>
|
||||||
|
|
Loading…
Reference in a new issue