Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Singulariity committed Jan 16, 2025
1 parent dc7485d commit c787769
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 7 deletions.
14 changes: 14 additions & 0 deletions mkdocs/docs/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,18 @@ li.md-nav__item > a {

.gslide-image img {
background: #000 !important;
}

.video {
position: relative;
height: 0;
padding-bottom: 56.25%;
}

.video iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
4 changes: 2 additions & 2 deletions mkdocs/docs/higurashi/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ status: draft

## İlk Chapter (Prolog)

<div style="position: relative; height: 0; padding-bottom: 56.25%;">
<iframe style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" src="https://www.youtube.com/embed/WjqutWVgIAQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<div class="video">
<iframe src="https://www.youtube.com/embed/WjqutWVgIAQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>

<!-- ## Genel Çeviri İlerlemesi
Expand Down
10 changes: 10 additions & 0 deletions mkdocs/docs/silksong/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: "Hollow Knight: Silksong"
status: draft
---

:thinking::thinking::thinking::thinking:

<div class="video">
<iframe src="https://www.youtube.com/embed/FA9H3snFrSQ" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>
4 changes: 2 additions & 2 deletions mkdocs/docs/umineko/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ Bu eserin yazar ile okuyucu arasında bir mücadele olduğunu unutmayın. :)

## İlk Chapter (Prolog)

<div style="position: relative; height: 0; padding-bottom: 56.25%;">
<iframe style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" src="https://www.youtube.com/embed/XWQ8DqlesdU" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<div class="video">
<iframe src="https://www.youtube.com/embed/XWQ8DqlesdU" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div>

<!-- ## Genel Çeviri İlerlemesi
Expand Down
15 changes: 12 additions & 3 deletions mkdocs/overrides/start.html
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,12 @@
background-color: rgba(0, 0, 0, 0.65);
}

html {
scroll-snap-type: y proximity;
}

section {
scroll-snap-align: center;
display: flex;
flex-direction: column;
justify-content: center;
Expand All @@ -124,14 +129,18 @@
}

section:not(.header) {
margin-left: 5%;
opacity: 0;
scale: 0.9;
animation: fade-in linear forwards;
animation-timeline: view(100% 40%);
animation-timeline: view();
animation-range: entry;
}

@keyframes fade-in {
to {margin-left: 0%; opacity: 1;}
to {
scale: 1;
opacity: 1;
}
}

h2 {
Expand Down

0 comments on commit c787769

Please sign in to comment.