Skip to content

Commit

Permalink
Update v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Xzonn committed Feb 3, 2024
1 parent 72ecd95 commit a02844a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
Binary file modified NotoSansSC-Medium.ttf
Binary file not shown.
22 changes: 20 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
background-image: url("background.webp");
background-size: cover;
background-position: center center;
background-attachment: fixed;
}

.poster {
Expand All @@ -43,7 +44,7 @@
}

.poster>div {
margin: 2rem 0;
margin: 1.8rem 0;
}

.header {
Expand Down Expand Up @@ -166,6 +167,21 @@
background-repeat: no-repeat;
}

a {
color: #007fff;
text-decoration: none;
transition: color 0.2s ease-out;
}

a:hover {
color: #004d99;
}

.giscus {
padding: 0 1.5rem;
box-sizing: border-box;
}

@font-face {
/* Noto Sans */
/* Copyright 2014-2021 Adobe (http://www.adobe.com/) */
Expand Down Expand Up @@ -255,14 +271,16 @@ <h1 class="hide">《凉宫春日的串联》<br>汉化招募</h1>
<div class="up"></div>
<div class="hide">
<p>七不思议汉化组QQ群:<span class="qq">一二三四五六七八九</span></p>
<p>汉化预览版(v0.1.0):<a href="https://github.com/Xzonn/ChokuretsuChsLocalization/releases/v0.1.0">GitHub</a>·<a href="https://pan.baidu.com/s/1igXmGalPqmLTywsJV7BMbA?pwd=ckrt">百度网盘</a>
</div>
</div>
<script src="https://giscus.xzonn.top/client.js" data-repo="Xzonn/ChokuretsuChsLocalization" data-repo-id="R_kgDOKpP4LA" data-mapping="number" data-term="2" data-reactions-enabled="1" data-emit-metadata="0" data-input-position="top" data-theme="preferred_color_scheme" data-lang="zh-CN" data-loading="lazy" crossorigin="anonymous" async></script>
</div>
<script>
window.addEventListener("load", () => {
document.body.querySelectorAll(".hide").forEach((element) => {
element.parentElement.querySelector(".up").innerHTML = element.innerHTML;
element.parentElement.querySelector(".down").innerHTML = element.innerHTML;
element.parentElement.querySelector(".down").innerHTML = element.innerHTML.replace(/<a href="[^"]+">|<\/a>/g, "");
});
});

Expand Down

0 comments on commit a02844a

Please sign in to comment.