File tree Expand file tree Collapse file tree 1 file changed +69
-0
lines changed
starter/03-CSS-Fundamentals Expand file tree Collapse file tree 1 file changed +69
-0
lines changed Original file line number Diff line number Diff line change
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
+ }
You can’t perform that action at this time.
0 commit comments