Spaces:
Running
Running
Create styles.css
Browse files- styles.css +45 -0
styles.css
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
body {
|
| 2 |
+
font-family: Arial, sans-serif;
|
| 3 |
+
margin: 0;
|
| 4 |
+
padding: 0;
|
| 5 |
+
}
|
| 6 |
+
|
| 7 |
+
header {
|
| 8 |
+
background-color: #333;
|
| 9 |
+
color: #fff;
|
| 10 |
+
padding: 20px;
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
header h1 {
|
| 14 |
+
margin: 0;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
nav ul {
|
| 18 |
+
list-style-type: none;
|
| 19 |
+
padding: 0;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
nav ul li {
|
| 23 |
+
display: inline;
|
| 24 |
+
margin-right: 20px;
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
nav ul li a {
|
| 28 |
+
color: #fff;
|
| 29 |
+
text-decoration: none;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
main {
|
| 33 |
+
padding: 20px;
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
section {
|
| 37 |
+
margin-bottom: 40px;
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
footer {
|
| 41 |
+
background-color: #333;
|
| 42 |
+
color: #fff;
|
| 43 |
+
text-align: center;
|
| 44 |
+
padding: 10px;
|
| 45 |
+
}
|