Skip to content

Commit a8f443e

Browse files
authored
Create styles.css
1 parent 8c6d356 commit a8f443e

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

styles.css

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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: 1em;
11+
text-align: center;
12+
}
13+
14+
main {
15+
display: flex;
16+
flex-direction: column;
17+
align-items: center;
18+
padding: 2em;
19+
}
20+
21+
section {
22+
background-color: #f7f7f7;
23+
padding: 1em;
24+
margin-bottom: 1em;
25+
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
26+
}
27+
28+
h1, h2 {
29+
color: #333;
30+
}
31+
32+
ul {
33+
list-style: none;
34+
padding: 0;
35+
margin: 0;
36+
}
37+
38+
li {
39+
margin-bottom: 0.5em;
40+
}
41+
42+
footer {
43+
background-color: #333;
44+
color: #fff;
45+
padding: 1em;
46+
text-align: center;
47+
clear: both;
48+
}

0 commit comments

Comments
 (0)