Spaces:
Sleeping
Sleeping
File size: 338 Bytes
1e932e0 |
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 |
/* styles.css */
/* Header styles */
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px 0;
}
nav ul {
list-style: none;
padding: 0;
}
nav li {
display: inline;
margin-right: 20px;
}
nav a {
color: #fff;
text-decoration: none;
}
/* Add more CSS styles as needed */
|