All checks were successful
Upload / Explore-Gitea-Actions (push) Successful in 47s
108 lines
3.5 KiB
HTML
108 lines
3.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="icon" href="favicon.ico" type="image/x-icon">
|
|
|
|
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
|
|
<meta name="author" content="轻聆月下, moonlightwatch@hotmail.com">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link href="/bootstrap.min.css" rel="stylesheet"
|
|
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
|
|
<title>轻聆月下 主页</title>
|
|
<style>
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-image: url('bg.jpg');
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
color: whitesmoke;
|
|
}
|
|
|
|
.container-fluid {
|
|
background: rgba(0, 0, 0, 0.7);
|
|
}
|
|
|
|
#logo {
|
|
border-radius: 64px;
|
|
}
|
|
|
|
#logo:hover {
|
|
box-shadow: 0px 0px 50px 5px white;
|
|
background: rgba(255, 255, 255, 0.6);
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="container-fluid" style="height: 100%;">
|
|
<div class="row" style="height: 20%;">
|
|
|
|
</div>
|
|
<div class="row" style="height: 20%;">
|
|
<div class="col text-center">
|
|
<img id="logo" src="logo_white.png" height="128px" width="128px">
|
|
</div>
|
|
</div>
|
|
<div class="row" style="height: 20%;">
|
|
<div class="col text-center">
|
|
<h1>轻聆月下 | 主页</h1>
|
|
</div>
|
|
</div>
|
|
<div class="row" style="height: 20%;">
|
|
<div class="col text-center">
|
|
<div class="btn-group" role="group" aria-label="Links">
|
|
<a class="btn btn-outline-secondary btn-lg" href="https://blog.轻聆月下.com/" target="_blank">博客</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row" style="height: 10%;">
|
|
<div class="col text-center">
|
|
<p id="relocating" style="opacity: 0;font-size: 13px;transition: all .3s ease;">
|
|
跳转到: <span id="relocate-location"></span>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
<div class="row" style="height: 10%;">
|
|
<div class="col text-center">
|
|
<p>
|
|
<a style="text-decoration: none;color: whitesmoke;opacity: 0.5;" href="http://beian.miit.gov.cn"
|
|
target="_blank">陕ICP备16007928号</a>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<script src="/bootstrap.bundle.min.js"
|
|
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
|
|
crossorigin="anonymous"></script>
|
|
<script>
|
|
document.body.onkeydown = function (event) {
|
|
var KEY_B = 66;
|
|
|
|
if (event.which === KEY_B) {
|
|
document.getElementById("relocate-location").innerText = "书签页";
|
|
document.getElementById("relocating").style.opacity = 1;
|
|
|
|
window.setTimeout(function () {
|
|
document.getElementById("relocate-location").innerText = "";
|
|
document.getElementById("relocating").style.opacity = 0;
|
|
window.location.href = '/bookmarks.html';
|
|
}, 1000);
|
|
}
|
|
};
|
|
</script>
|
|
</body>
|
|
|
|
</html> |