-
Notifications
You must be signed in to change notification settings - Fork 255
/
index.html
85 lines (75 loc) · 2.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>个人笔记</title>
<link rel="stylesheet" href="https://bootswatch.com/4/flatly/bootstrap.min.css"/>
<style>
section {
display: none;
padding: 20px 0 0;
border-top: 1px solid #abc;
}
input {
display: none;
}
label {
display: inline-block;
margin: 0 0 -1px;
padding: 15px 25px;
font-weight: 600;
text-align: center;
color: #abc;
border: 1px solid transparent;
}
label:before {
font-family: fontawesome;
font-weight: normal;
margin-right: 10px;
}
label:hover {
color: #789;
cursor: pointer;
}
input:checked + label {
color: #0af;
border: 1px solid #abc;
border-top: 2px solid #0af;
border-bottom: 1px solid #fff;
}
#tab1:checked ~ #content1,
#tab2:checked ~ #content2,
#tab3:checked ~ #content3,
#tab4:checked ~ #content4,
#tab5:checked ~ #content5,
#tab6:checked ~ #content6,
#tab7:checked ~ #content7,
#tab8:checked ~ #content8,
#tab9:checked ~ #content9,
#tab10:checked ~ #content10,
#tab11:checked ~ #content11,
#tab12:checked ~ #content12,
#tab13:checked ~ #content13,
#tab14:checked ~ #content14,
#tab15:checked ~ #content15,
#tab16:checked ~ #content16,
#tab17:checked ~ #content17,
#tab18:checked ~ #content18,
#tab19:checked ~ #content19,
#tab20:checked ~ #content20,
#tab21:checked ~ #content21,
#tab22:checked ~ #content22 {
display: block;
}
</style>
</head>
<body>
<div class="jumbotron">
<div class="container">
<h1>个人笔记</h1>
<h4>注:站点已经迁移到新的<a href="https://www.xiaogenban1993.com">xiaogenban1993.com</a></h4>
</div>
</div>
<div id="content" class="container"></div>
</body>
</html>