Skip to content

Commit 9e3c00b

Browse files
committed
feat: working with colors
1 parent b13ff1e commit 9e3c00b

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

starter/03-CSS-Fundamentals/index.html

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

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

2323
<nav>

starter/03-CSS-Fundamentals/style.css

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ h4,
55
p,
66
li {
77
font-family: sans-serif;
8+
color: #444;
9+
}
10+
11+
h1,
12+
h2,
13+
h3 {
14+
color: #1098ad;
815
}
916

1017
h1 {
@@ -61,3 +68,16 @@ li {
6168
.related {
6269
list-style: none;
6370
}
71+
72+
.main-header {
73+
background-color: #f7f7f7;
74+
}
75+
76+
aside {
77+
background-color: #f7f7f7;
78+
border: 5px solid #1098ad;
79+
}
80+
81+
body {
82+
/* background-color: blue; */
83+
}

0 commit comments

Comments
 (0)