You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: starter/03-CSS-Fundamentals/style.css
+20-8Lines changed: 20 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,12 @@
1
-
h1,
2
-
h2,
3
-
h3,
4
-
h4,
5
-
p,
6
-
li {
7
-
font-family: sans-serif;
1
+
* {
2
+
/* border-top: 10px solid #1098ad; */
3
+
}
4
+
5
+
body {
8
6
color:#444;
7
+
font-family: sans-serif;
8
+
9
+
border-top:10px solid #1098ad;
9
10
}
10
11
11
12
h1,
@@ -136,7 +137,7 @@ a:active {
136
137
Lowest Priority */
137
138
138
139
/* Resolving conflicts */
139
-
#copyright {
140
+
/* #copyright {
140
141
color: red;
141
142
}
142
143
@@ -150,4 +151,15 @@ Lowest Priority */
150
151
151
152
footer p {
152
153
color: green !important;
154
+
} */
155
+
156
+
/* nav a:link,
157
+
nav p {
158
+
font-size: 18px;
159
+
} */
160
+
161
+
nav {
162
+
font-size:18px;
153
163
}
164
+
/* Start Challenge #1 in CSS Fundamentals */
165
+
/* If paused for long, review the difference between the body element and the universal selector - lesson in inherticance and different use cases you might be confused with */
0 commit comments