Skip to content

Commit 1fba91e

Browse files
committed
A few little updates
1 parent 05eb0a6 commit 1fba91e

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

wip/03-CSS-Fundamentals/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ <h5>The Basic Language of the Web: HTML</h5>
1616
<h6>The Basic Language of the Web: HTML</h6>
1717
-->
1818

19-
<header>
19+
<header class="main-header">
2020
<h1>📘 The Code Magazine</h1>
2121

2222
<nav>

wip/03-CSS-Fundamentals/style.css

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
h1, h2, h3, h4, p, li {
22
font-family: sans-serif;
3+
color: #444;
4+
}
5+
6+
h1, h2, h3 {
7+
color: #1098ad;
38
}
49

510
h1 {
@@ -47,6 +52,10 @@ footer p {
4752
font-size: 16px;
4853
}
4954

55+
.main-header {
56+
background-color: #f7f7f7;
57+
}
58+
5059
/*Class selector*/
5160
.related-author {
5261
font-size: 18px;
@@ -55,4 +64,10 @@ footer p {
5564

5665
.related-posts-list {
5766
list-style: none;
67+
}
68+
69+
aside {
70+
background-color: #f7f7f7;
71+
border-top: 5px solid #1098ad;
72+
border-bottom: 5px solid #1098ad;
5873
}

0 commit comments

Comments
 (0)