-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
145 lines (135 loc) · 5.14 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>论坛首页</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
}
.navbar {
background-color: #333;
overflow: hidden;
position: fixed;
top: 0;
width: 99%;
}
.navbar a {
float: right;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.navbar p {
float: left;
color: #f2f2f2;
text-align: center;
text-decoration: none;
padding: 0px 10px;
}
.navbar a:hover {
background-color: #ddd;
color: black;
}
.main {
display: flex;
background-image: url("./bg.png");
padding-top: 50px; /* 调整此值以适应导航栏的固定位置 */
}
.main-post:hover{
background-color: #f8f8f8;
}
.main-post h1:hover{
text-decoration: underline; /* 在鼠标悬停时添加下划线 */
}
.left-half {
width: 30%;
padding: 20px;
background-color: #fff;
}
.right-half {
width: 70%;
padding: 20px;
}
.footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
</style>
</head>
<body>
<div class="navbar">
<p>普学森论坛</p>
<a href="#">关于</a>
<a href="login.html">登录/注册</a>
<a href="#">首页</a>
</div>
<div class="main">
<div class="left-half">
<div class="main-post">
<h2>板块区</h2>
<p>xxx</p>
</div>
</div>
<div class="right-half">
<div class="main-post">
<h1>abc论坛124文章的内容区域(测试)</h1>
<p>这里是论坛文章的内容区域,你可以在这里展示一些最新的帖子或者热门帖子等等。</p>
</div>
<br>
<div class="main-post">
<h1>aaa123论坛文章的内容区域</h1>
<p>这里是论坛文章的内容区域,你可以在这里展示一些最新的帖子或者热门帖子等等。</p>
</div>
<br>
<div class="main-post">
<h1>aaa123论坛文章的内容区域</h1>
<p>这里是论坛文章的内容区域,你可以在这里展示一些最新的帖子或者热门帖子等等。</p>
</div>
<br>
<div class="main-post">
<h1>aaa123论坛文章的内容区域</h1>
<p>这里是论坛文章的内容区域,你可以在这里展示一些最新的帖子或者热门帖子等等。</p>
</div>
<br>
<div class="main-post">
<h1>aaa123论坛文章的内容区域</h1>
<p>这里是论坛文章的内容区域,你可以在这里展示一些最新的帖子或者热门帖子等等。</p>
</div>
<br>
<div class="main-post">
<h1>aaa123论坛文章的内容区域</h1>
<p>这里是论坛文章的内容区域,你可以在这里展示一些最新的帖子或者热门帖子等等。</p>
</div>
<br>
<div class="main-post">
<h1>aaa123论坛文章的内容区域</h1>
<p>这里是论坛文章的内容区域,你可以在这里展示一些最新的帖子或者热门帖子等等。</p>
</div>
<br>
<div class="main-post">
<h1>aaa123论坛文章的内容区域</h1>
<p>这里是论坛文章的内容区域,你可以在这里展示一些最新的帖子或者热门帖子等等。</p>
</div>
<br>
<div class="main-post">
<h1>aaa123论坛文章的内容区域</h1>
<p>这里是论坛文章的内容区域,你可以在这里展示一些最新的帖子或者热门帖子等等。</p>
</div>
<br>
<div class="main-post">
<h1>aaa123论坛文章的内容区域</h1>
<p>这里是论坛文章的内容区域,你可以在这里展示一些最新的帖子或者热门帖子等等。</p>
</div>
</div>
</div>
<footer class="footer">
<p>Copyright © 2022.SkyTeam All rights reserved.</p>
</footer>
</body>
</html>