Skip to content

Commit

Permalink
i
Browse files Browse the repository at this point in the history
  • Loading branch information
i1li committed Nov 28, 2024
1 parent a523c20 commit 52825c0
Show file tree
Hide file tree
Showing 7 changed files with 60 additions and 5 deletions.
2 changes: 2 additions & 0 deletions dist/bundle-29145.css

Large diffs are not rendered by default.

File renamed without changes.
2 changes: 0 additions & 2 deletions dist/bundle-7cd46.css

This file was deleted.

2 changes: 1 addition & 1 deletion dist/index.html

Large diffs are not rendered by default.

52 changes: 52 additions & 0 deletions src/css/background.css
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,55 @@
left: 0;
border-radius:0;
}
#bottom {
position:fixed;
z-index: 1000;
bottom:0;
left: 0;
border-radius:0;
width: 100%;
height: 2.5%;
background: linear-gradient(to top,
rgba(128, 128, 128, 1) 0%,
rgba(128, 128, 128, 0.05) 100%);
mix-blend-mode: color-burn;
}
#top {
position:fixed;
z-index: 1000;
top:0;
left: 0;
border-radius:0;
width: 100%;
height: 2.2%;
background: linear-gradient(to bottom,
rgba(128, 128, 128, .65) 0%,
rgba(128, 128, 128, 0.1) 100%);
mix-blend-mode: color-burn;
}
#left {
position:fixed;
z-index: 1000;
top:0;
left: 0;
border-radius:0;
width: 1.5%;
height: 100%;
background: linear-gradient(to right,
rgba(128, 128, 128, .55) 0%,
rgba(128, 128, 128, 0.1) 100%);
mix-blend-mode: color-burn;
}
#right {
position:fixed;
z-index: 1000;
top:0;
right: 0;
border-radius:0;
width: 1.5%;
height: 100%;
background: linear-gradient(to left,
rgba(128, 128, 128, .55) 0%,
rgba(128, 128, 128, 0.1) 100%);
mix-blend-mode: color-burn;
}
2 changes: 1 addition & 1 deletion src/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ header {position: sticky;
padding-top:0;
backdrop-filter: blur(.07em) brightness(90%) contrast(115%) saturate(115%);
background: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(128, 128, 128, 0.1));
min-width: 97vw;
min-width: 97%;
overflow-x: hidden;
border-radius: 0 0 1em 1em;
border:none;}
Expand Down
5 changes: 4 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,12 @@
<link rel="stylesheet" type="text/css" href="/yt/youtube-embed.css">
</head><body>
<div id="bg-wrapper"><div id="bg-img"><div id="bg-wrapper2"><div id="bg-wrapper3"></div></div></div></div>
<div id="bg"><div id="shift-layer1"><div id="shift-layer2"></div></div></div>
<div id="bg"><div id="shift-layer1"><div id="shift-layer2"></div></div></div><div id="bottom"></div><div id="top"></div><div id="left"></div><div id="right"></div>

<span id="toTop" onclick="goToTop()" title="Go to top"><img alt="Go to top" class="to-top" decoding="async" src="/img/top.png"></span>

<div id="fullScreenOverlay" onclick="closeOverlay()"><span class="close-button" onclick="closeOverlay()">&times;</span><img id="overlayImage"></div>

<div id="searchOverlay" class="search-overlay">
<span class="closeBtn" onclick="closeSearchOverlay()">&times;</span>
<div class="search-overlay-content"><div class="search-input-container">
Expand Down

0 comments on commit 52825c0

Please sign in to comment.