Spaces:
Running
Running
Commit
·
1930671
1
Parent(s):
01c2afe
Update style.css
Browse files
style.css
CHANGED
@@ -1,28 +1,51 @@
|
|
1 |
body {
|
2 |
-
|
3 |
-
|
|
|
|
|
|
|
4 |
}
|
5 |
|
6 |
-
|
7 |
-
|
8 |
-
|
|
|
9 |
}
|
10 |
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
margin-bottom: 10px;
|
15 |
-
margin-top: 5px;
|
16 |
}
|
17 |
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
padding: 16px;
|
22 |
-
border: 1px solid lightgray;
|
23 |
-
border-radius: 16px;
|
24 |
}
|
25 |
|
26 |
-
|
27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
}
|
|
|
1 |
body {
|
2 |
+
font-family: Arial, sans-serif;
|
3 |
+
background-color: #ffffff;
|
4 |
+
color: #333333;
|
5 |
+
margin: 0;
|
6 |
+
padding: 0;
|
7 |
}
|
8 |
|
9 |
+
header {
|
10 |
+
background-color: #007BFF;
|
11 |
+
color: #ffffff;
|
12 |
+
padding: 10px 0;
|
13 |
}
|
14 |
|
15 |
+
nav ul {
|
16 |
+
list-style-type: none;
|
17 |
+
text-align: center;
|
|
|
|
|
18 |
}
|
19 |
|
20 |
+
nav ul li {
|
21 |
+
display: inline;
|
22 |
+
margin-right: 20px;
|
|
|
|
|
|
|
23 |
}
|
24 |
|
25 |
+
nav a {
|
26 |
+
text-decoration: none;
|
27 |
+
color: #ffffff;
|
28 |
+
font-weight: bold;
|
29 |
+
font-size: 18px;
|
30 |
+
}
|
31 |
+
|
32 |
+
.section {
|
33 |
+
padding: 40px 0;
|
34 |
+
text-align: center;
|
35 |
+
}
|
36 |
+
|
37 |
+
.container {
|
38 |
+
max-width: 800px;
|
39 |
+
margin: 0 auto;
|
40 |
+
}
|
41 |
+
|
42 |
+
h1, h2 {
|
43 |
+
color: #007BFF;
|
44 |
+
}
|
45 |
+
|
46 |
+
footer {
|
47 |
+
background-color: #007BFF;
|
48 |
+
color: #ffffff;
|
49 |
+
text-align: center;
|
50 |
+
padding: 10px 0;
|
51 |
}
|