mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 05:48:36 +01:00
add ambient mode 3.0 to universe 2
This commit is contained in:
parent
c4039f1045
commit
a1c657d50a
1 changed files with 26 additions and 0 deletions
|
@ -404,6 +404,32 @@ text-shadow: 1px 1px #000,1px 1px 0.1px #000;!important;
|
|||
filter: drop-shadow(0 0 0.75rem #df00ff);
|
||||
transition-duration: 150ms;
|
||||
}
|
||||
|
||||
nav {
|
||||
z-index: 1;
|
||||
position: sticky;
|
||||
background:#0A0608
|
||||
}
|
||||
<% if (lightOrDark(color) == "light") { %>
|
||||
.player.video-ambient-container {
|
||||
box-shadow: 0 -8px 5.9em <%=color%>;
|
||||
}
|
||||
|
||||
<% } %>
|
||||
|
||||
<% if (lightOrDark(color) == "dark") { %>
|
||||
.player.video-ambient-container {
|
||||
box-shadow: 0 -8px 5.9em <%=color2%>;
|
||||
}
|
||||
|
||||
<% } %>
|
||||
<% if (a) { %>
|
||||
|
||||
.player.video-ambient-container {
|
||||
box-shadow: 0 0 0em <%=color%>;
|
||||
}
|
||||
|
||||
<% } %>
|
||||
</style>
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue