Skip to content

Commit 68b30a2

Browse files
committed
feat: add style.css
1 parent 4795c9c commit 68b30a2

File tree

1 file changed

+69
-0
lines changed

1 file changed

+69
-0
lines changed

starter/03-CSS-Fundamentals/style.css

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
h1,
2+
h2,
3+
h3,
4+
h3,
5+
p,
6+
li {
7+
font-family: sans-serif;
8+
}
9+
10+
h1 {
11+
/* color: blue; */
12+
font-size: 26px;
13+
font-family: sans-serif;
14+
text-transform: uppercase;
15+
font-style: italic;
16+
}
17+
18+
h2 {
19+
font-size: 40px;
20+
font-family: sans-serif;
21+
}
22+
23+
h3 {
24+
font-size: 30px;
25+
font-family: sans-serif;
26+
}
27+
28+
h4 {
29+
font-size: 20px;
30+
font-family: sans-serif;
31+
text-transform: uppercase;
32+
text-align: center;
33+
}
34+
35+
p {
36+
font-size: 22px;
37+
line-height: 1.5;
38+
}
39+
40+
li {
41+
font-family: sans-serif;
42+
font-size: 20px;
43+
}
44+
45+
/* footer p {
46+
font-size: 16px;
47+
} */
48+
49+
/* article header p {
50+
font-style: italic;
51+
} */
52+
53+
#author {
54+
font-style: italic;
55+
font-size: 18px;
56+
}
57+
58+
#copyright {
59+
font-size: 16px;
60+
}
61+
62+
.related-author {
63+
font-size: 18px;
64+
font-weight: bold;
65+
}
66+
67+
.related {
68+
list-style: none;
69+
}

0 commit comments

Comments
 (0)