-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
64 lines (62 loc) · 1.49 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
<!doctype html>
<html>
<!--TODO no jquery | no javascript version -->
<head>
<title>索引</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style>
body {
background: #1F1F1F;
}
#outer {
overflow: auto;
position: absolute;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
padding-left: 30px;
padding-right: 30px;
}
#container {
box-shadow: 0 0 30px black;
margin-left: auto;
margin-right: auto;
height:100%;
top:0px;
bottom:0px;
max-width: 800px;
background: #0F0F0F;
overflow-y:hidden;
}
.link_page {
box-shadow: 0 0 3px white;
background: #3F3F3F;
text-align: center;
margin: 20px;
padding: 10px;
border-radius: 5px;
}
.link_page:hover {
background: #5F5F5F;
box-shadow: 0 0 30px white;
box-shadow: 0 0 30px #DFFFEF;
}
a {
font-family: 'comic sans', 'Courier New', 'Consolas', 'monospace', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 1.5em;
font-weight: bold;
color: white;
text-decoration: none;
}
</style>
</head>
<body>
<div id="outer"><div id="container">
<a href="./cpl/index.html"><div class="link_page">索引 - C语言吧</div></a>
<a href="./cpp/index.html"><div class="link_page">索引 - C++吧</div></a>
<a href="./common/howtoask.html"><div class="link_page">提问的智慧</div></a>
<a href="#"><div class="link_page">test</div></a>
</div></div>
</body>
</html>