-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathold_cst.html
More file actions
156 lines (152 loc) · 4.2 KB
/
old_cst.html
File metadata and controls
156 lines (152 loc) · 4.2 KB
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
146
147
148
149
150
151
152
153
154
155
156
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CST协会</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: linear-gradient(to right, #ffff00, #00ff00); /* 黄色渐变到绿色 */
}
.container {
width: 80%;
margin: auto;
overflow: hidden;
}
header {
color: #ffffff;
padding-top: 30px;
min-height: 70px;
border-bottom: #e8491d 3px solid;
}
header a {
color: #ffffff;
text-decoration: none;
text-transform: uppercase;
font-size: 16px;
}
header ul {
padding: 0;
list-style: none;
}
header ul li {
display: inline;
margin: 0 20px;
}
header #branding {
float: left;
}
header #branding h1 {
margin: 0;
}
header nav {
float: right;
margin-top: 10px;
}
header .highlight, header .current a {
color: #e8491d;
font-weight: bold;
}
header a:hover {
color: #ffffff;
font-weight: bold;
}
#showcase {
min-height: 400px;
background: url('your-image.jpg') no-repeat 0 -100px;
text-align: center;
color: #ffffff;
}
#showcase h1 {
margin-top: 100px;
font-size: 55px;
margin-bottom: 10px;
}
#showcase p {
font-size: 20px;
}
#main {
padding: 15px;
background: rgba(255, 255, 255, 0.8); /* 半透明的白色背景 */
}
#main p {
font-size: 18px;
}
#main .about {
padding: 10px;
color: #ffffff;
padding: 20px;
margin: 10px 0;
background: rgba(255, 255, 0, 0.8); /* 半透明的黄色背景 */
}
#main .about h2 {
color: #ffffff;
}
#main .social {
margin-top: 20px;
}
#main .social ul {
padding: 0;
list-style: none;
}
#main .social ul li {
display: inline;
margin: 0 10px;
}
#main .social ul li a {
color: #555;
font-size: 22px;
}
#main .social ul li a:hover {
color: #e8491d;
}
footer {
background: rgba(255, 255, 0, 0.8); /* 半透明的黄色背景 */
color: #ffffff;
text-align: center;
padding: 10px;
position: relative;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<div class="container">
<div id="branding">
<h1><span class="highlight">CST协会</span></h1>
</div>
<nav>
<ul>
<li class="current"><a href="cst.html">返回新版首页🌟</a></li>
<li><a href="tool/tool.html">工具箱🧰|</a></li>
<li><a href="blog/blog.html">博客🗒️|</a></li>
<li><a href="mv/mv.html">视频💻|</a></li>
<li><a href="game/game.html">小游戏🎮|</a></li>
<li class="current"><a href="cpgm/cpgm.html">产品🛍️</a></li>
</ul>
</nav>
</div>
</header>
<div id="showcase">
<div class="container">
<img src="CST.png" alt="Just do it." style="width:100%; max-width:300px; height:auto;">
<h1>欢迎来到CST协会的官方网站</h1>
</div>
</div>
<div id="main">
<section class="about">
<div class="container">
<h2>关于CST协会</h2>
<p>Just do it.</p>
</div>
</section>
<footer>
<p>版权所有 © 2025 Command_star&Command_stone</p>
</footer>
</body>
</html>