style.css文件也写出来
时间: 2024-05-14 10:14:27 浏览: 64
style.css
很抱歉,作为AI语言模型,我无法知道您想要什么样的样式表。但是,我可以为您提供一个基本的样式表,您可以在此基础上进行修改和扩展。
```
/* Reset styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Global styles */
body {
font-family: Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
background-color: #f2f2f2;
color: #333;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Header styles */
header {
background-color: #fff;
padding: 20px;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.logo {
font-size: 24px;
font-weight: bold;
}
/* Navigation styles */
nav {
margin-top: 20px;
background-color: #007bff;
color: #fff;
padding: 10px;
}
nav ul {
list-style: none;
display: flex;
justify-content: center;
}
nav li {
margin: 0 10px;
}
nav a {
color: #fff;
text-transform: uppercase;
font-weight: bold;
}
nav a:hover {
text-decoration: none;
}
/* Main content styles */
main {
max-width: 1200px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
section {
margin-bottom: 20px;
}
section h2 {
font-size: 24px;
margin-bottom: 10px;
}
section p {
line-height: 1.8;
}
/* Footer styles */
footer {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
.footer-links a {
color: #fff;
margin: 0 10px;
}
```
阅读全文