Skip to content

Commit 79a2979

Browse files
committed
更新站点
1 parent cd8336f commit 79a2979

10 files changed

Lines changed: 2304 additions & 33 deletions

File tree

404.html

Lines changed: 57 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,67 @@
1-
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta http-equiv="Content-Language" content="zh-cn"><title>找不到页面 | 比特彗星历史备份</title><meta http-equiv="refresh" content="5;URL=./index.htm"><style type="text/css">
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2+
<html>
3+
4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6+
<meta http-equiv="Content-Language" content="zh-cn">
7+
<title>找不到页面 | 比特彗星历史备份</title>
8+
<meta http-equiv="refresh" content="5;URL=./index.htm">
9+
<style type="text/css">
210
html, body {
3-
height: 100%;
11+
height: 100%;
412
}
513
body {
6-
margin: 0;
7-
padding: 0;
8-
width: 100%;
9-
background-color: #F6F6F6;
10-
font-weight: bold;
11-
color: #808080;
12-
display: table;
13-
font-family: sans-serif;
14+
margin: 0;
15+
padding: 0;
16+
width: 100%;
17+
background-color: #F6F6F6;
18+
font-weight: bold;
19+
color: #808080;
20+
display: table; /* 现代浏览器 */
21+
font-family: sans-serif;
22+
/* IE6 特有:因为不支持 table 布局,body 需要作为定位基准 */
23+
*position: relative;
1424
}
1525
.container {
16-
text-align: center;
17-
display: table-cell;
18-
vertical-align: middle;
26+
text-align: center;
27+
display: table-cell; /* 现代浏览器 */
28+
vertical-align: middle; /* 现代浏览器 */
29+
30+
/* IE6 专属修复:模拟垂直居中 */
31+
*position: absolute;
32+
*top: 50%;
33+
*left: 0;
34+
*width: 100%;
1935
}
2036
.content {
21-
text-align: center;
22-
display: inline-block;
37+
text-align: center;
38+
display: inline-block;
39+
*display: inline;
40+
*zoom: 1;
41+
42+
/* IE6 专属修复:配合 container 的 top 50% 实现完全居中 */
43+
*position: relative;
44+
*top: -50%;
2345
}
2446
.title {
25-
font-size: 72px;
26-
margin-bottom: 40px;
47+
font-size: 72px;
48+
margin-bottom: 40px;
2749
}
28-
</style>
29-
</head><body><div class="container"><div class="content"><div class="title">404 找不到页面</div><p>正在重定向到 <a href="./index.htm">主页</a> </p></div></div></body></html>
50+
</style></head>
51+
52+
<body>
53+
54+
<div class="container">
55+
<div class="content">
56+
<div class="title">
57+
404 找不到页面</div>
58+
<p>正在重定向到 <a href="/index.htm">主页</a> </p>
59+
</div>
60+
</div>
61+
<!-- p 元素可以占满一整行
62+
宽度可随父系元素变化 span 元素则不行
63+
-->
64+
65+
</body>
66+
67+
</html>

css/all-pages.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ a:hover {
2828
.div-inline-block {
2929
display: inline-block;
3030
margin-left: 6px;
31+
*display: inline; /* IE6/7 */
32+
*zoom: 1; /* 触发IE6/7的Layout */
3133
}
3234
.icon {
33-
vertical-align: middle;
34-
margin-right: 4px;
35+
margin-right: 2px;
3536
}

css/main-page.css

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,3 +64,8 @@
6464
padding-bottom: 5pt;
6565
text-align: center;
6666
}
67+
68+
.icon-index {
69+
margin-right: 2px;
70+
vertical-align: middle;
71+
}

css/tables.css

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ tr:hover:not(.table-header-custom) {
1919
tr:hover a:not([href$="index.htm"]) {
2020
color: white;
2121
}
22+
2223
/* 去除表格边框 */
2324
table {
2425
border: none;
@@ -71,11 +72,15 @@ tr {
7172
/* 页面标题 */
7273
.page-title {
7374
padding-left: 2pt;
75+
padding-right:2pt;
7476
text-align: left;
7577
font-family: "Microsoft YaHei", "微软雅黑", sans-serif;
7678
font-size: 18pt;
7779
font-weight: bold;
7880
display: inline-block;
81+
*display: inline; /* IE6/7 */
82+
*zoom: 1; /* 触发IE6/7的Layout */
83+
7984
}
8085
/* --- 返回主页链接样式 --- */
8186
.home-page-link {
@@ -101,7 +106,10 @@ a:visited {
101106
}
102107
/* --- 图片和文字对齐 --- */
103108
.img-icon {
104-
vertical-align: -10pt;
109+
vertical-align: -12px;
110+
/* 针对 IE6 的特殊修正(如果 IE6 偏移量不同) */
111+
_vertical-align: -10px;
112+
105113
}
106114
/* 设置表格距离顶部元素位置 */
107115
.table-custom {

index.htm

Lines changed: 77 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,78 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><meta http-equiv="Content-Language" content="zh-cn"><title>比特彗星历史版本备份</title><meta name="description" content="此页面用于备份官方版本的比特彗星。由使用比特彗星的爱好者创建与比特彗星官方无关,页面样式模仿2003年时的比特彗星官网。"><link rel="stylesheet" type="text/css" href="css/all-pages.css"><link rel="stylesheet" type="text/css" href="css/main-page.css"><link rel="icon" type="image/x-icon" href="/favicon.ico"><style type="text/css">
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2+
<html>
3+
4+
<head>
5+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
6+
<meta http-equiv="Content-Language" content="zh-cn">
7+
<title>比特彗星历史版本备份</title>
8+
<meta name="description" content="此页面用于备份官方版本的比特彗星。由使用比特彗星的爱好者创建与比特彗星官方无关,页面样式模仿2003年时的比特彗星官网。">
9+
<link rel="stylesheet" type="text/css" href="css/all-pages.css">
10+
<link rel="stylesheet" type="text/css" href="css/main-page.css">
11+
<link rel="icon" type="image/x-icon" href="/favicon.ico">
12+
<style type="text/css">
213
</style>
3-
</head><body><div class="backbone"><div class="bc-logo-bg"><img alt="bc-logo" src="img/bc-logo.png" width="237" height="83"></div><div class="icon-and-title"><img alt="icon-info" src="img/icon-info.png" width="48" height="48"><span>简介</span></div><div class="title2"><div class="border"><span>关于本页面</span></div></div><div class="text"><span class="backbone">此页面用于备份官方版本的比特彗星。<strong>由使用比特彗星的爱好者创建与比特彗星官方无关</strong>,页面样式模仿<a href="https://web.archive.org/web/20040616080205/http:/www.bitcomet.com/">2003年时的比特彗星官网</a><br><br></span></div><div class="title2"><div class="border"><span>各历史版本</span></div></div><div class="text"><span>为预防捆绑软件故只存储便携版。各版本的比特彗星均采集自官方历史版本页面:<a href="http://www.bitcomet.com/cn/archive">链接</a></span></div><div class="text"><span>按照大版本号分为SimpleBT 、V0.x、V1.x、V2.x 四个板块。<strong>在v.038之前比特彗星使用 SimpleBT 作为软件名称。</strong></span></div><div class="text"><span>此处没有存储其他非Windows版本,包括Mac版、安卓版、Linux 或 Docker 版,其中Linux 和 Docker 版本目前还处于实验阶段。<br></span></div><div class="icon-and-title"><img alt="icon-dw" src="img/icon-dw.png" width="48" height="48"><span>下 载</span></div><div class="title2"><div class="border"><span>Windows版本</span></div></div><div class="padding"><span class="txt2">BitComet V2.X</span><span class="text"> [2023.05.15-][<a href="versions/v2.x.htm">下载</a>]</span> </div><div class="padding"><span class="txt2">BitComet V1.X</span><span class="text"> [2008.03.27-2023.04.05][<a href="versions/v1.x.htm">下载</a>]</span> </div><div class="padding"><span class="txt2">BitComet V0.X</span><span class="text"> [2003.11.22-2008.02.01][<a href="versions/v0.x.htm">下载</a>]</span> </div><div class="padding"><span class="txt-sbt-1">Simple</span><span class="txt-sbt-2">BT</span><span class="text"> [2003.08.06-2003.10.10][<a href="versions/simple-bt.htm">下载</a>]</span> </div><div class="border-2"></div><div class="foot"><span class="text">Powered by <a href="https://cloudflare.com/">Cloudflare </a>&amp;<a href="https://pages.github.com/"> GitHub Pages</a></span> </div><div class="foot"><div class="div-inline-block"><img alt="ssl-icon" src="img/ssl-icon.png" width="16" height="16" class="icon"><a href="?ssl=true" class="text">SSL</a> </div></div></div></body></html>
14+
</head>
15+
16+
<body>
17+
18+
<div class="backbone">
19+
<div class="bc-logo-bg">
20+
<img alt="bc-logo" src="img/bc-logo.png" width="237" height="83"></div>
21+
<div class="icon-and-title">
22+
<img alt="icon-info" src="img/icon-info.png" width="48" height="48"><span>简介</span></div>
23+
<div class="title2">
24+
<div class="border">
25+
<span>关于本页面</span></div>
26+
</div>
27+
<div class="text">
28+
<span class="backbone">此页面用于备份官方版本的比特彗星。<strong>由使用比特彗星的爱好者创建与比特彗星官方无关</strong>,页面样式模仿<a href="https://web.archive.org/web/20040616080205/http:/www.bitcomet.com/">2003年时的比特彗星官网</a><br>
29+
<br>
30+
</span></div>
31+
<div class="title2">
32+
<div class="border">
33+
<span>各历史版本</span></div>
34+
</div>
35+
<div class="text">
36+
<span>为预防捆绑软件故只存储便携版。各版本的比特彗星均采集自官方历史版本页面:<a href="http://www.bitcomet.com/cn/archive">链接</a></span></div>
37+
<div class="text">
38+
<span>按照大版本号分为SimpleBT 、V0.x、V1.x、V2.x 四个板块。<strong>在v.038之前比特彗星使用 SimpleBT
39+
作为软件名称。</strong></span></div>
40+
<div class="text">
41+
<span>此处没有存储其他非Windows版本,包括Mac版、安卓版、Linux 或 Docker 版,其中Linux 和 Docker 版本目前还处于实验阶段。<br>
42+
</span></div>
43+
<div class="icon-and-title">
44+
<img alt="icon-dw" src="img/icon-dw.png" width="48" height="48"><span>
45+
</span></div>
46+
<div class="title2">
47+
<div class="border">
48+
<span>Windows版本</span></div>
49+
</div>
50+
<div class="padding">
51+
<span class="txt2">BitComet V2.X</span><span class="text"> [2023.05.15-][<a href="versions/v2.x.htm">下载</a>]</span>
52+
</div>
53+
<div class="padding">
54+
<span class="txt2">BitComet V1.X</span><span class="text"> [2008.03.27-2023.04.05][<a href="versions/v1.x.htm">下载</a>]</span>
55+
</div>
56+
<div class="padding">
57+
<span class="txt2">BitComet V0.X</span><span class="text"> [2003.11.22-2008.02.01][<a href="versions/v0.x.htm">下载</a>]</span>
58+
</div>
59+
<div class="padding">
60+
<span class="txt-sbt-1">Simple</span><span class="txt-sbt-2">BT</span><span class="text">
61+
[2003.08.06-2003.10.10][<a href="versions/simple-bt.htm">下载</a>]</span>
62+
</div>
63+
<div class="border-2">
64+
</div>
65+
<div class="foot">
66+
<span class="text">Powered by <a href="https://cloudflare.com/">Cloudflare
67+
</a>&amp;<a href="https://pages.github.com/"> GitHub Pages</a></span> </div>
68+
<div class="foot">
69+
<div class="div-inline-block">
70+
<img alt="ssl-icon" src="img/ssl-icon.png" width="16" height="16" class="icon-index"><a href="?ssl=true" class="text">SSL</a>
71+
</div>
72+
</div>
73+
</div>
74+
<!-- <script type="text/javascript" defer="defer" src="/js/metrics.js"></script> -->
75+
76+
</body>
77+
78+
</html>

0 commit comments

Comments
 (0)