主色调采用深灰(#121212
)和黑色(#000000
),辅以蓝紫色(#6C5CE7
)和青绿色(#1ABC9C
)作为点缀色,营造科幻氛围。
.gradient-background {
background: linear-gradient(135deg, #6C5CE7, #1ABC9C);
height: 100vh;
}
标题使用粗体 Roboto 字体,正文选用 Open Sans,确保信息清晰易读。
body {
font-family: 'Open Sans', sans-serif;
}
h1, h2, h3 {
font-family: 'Roboto', sans-serif;
font-weight: bold;
}
基于网格系统,模块之间留白得当,增强用户体验。
.container {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.module {
background-color: #121212;
border-radius: 8px;
padding: 16px;
}
按钮点击时的涟漪扩散效果增强互动性。
.button::before {
content: '';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0);
}
简洁的原子结构符号和电路板图案融入页面。
媒体查询适配不同设备,确保良好的用户体验。
@media (max-width: 768px) {
.module {
width: 100%;
}
}