We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9830c91 commit 26c632fCopy full SHA for 26c632f
starter/03-CSS-Fundamentals/style.css
@@ -71,6 +71,7 @@ footer p {
71
}
72
73
nav a:link {
74
+ font-size: 18px;
75
margin: 10px;
76
margin-top: 10px;
77
display: inline-block;
@@ -183,3 +184,23 @@ a:active {
183
184
bottom: 50px;
185
right: 50px;
186
187
+
188
+h1::first-letter {
189
+ font-style: normal;
190
+ margin-right: 5px;
191
+}
192
+h2 {
193
+ position: relative;
194
195
+h2::after {
196
+ position: absolute;
197
+ content: "TOP";
198
+ background-color: #ffe70e;
199
+ font-size: 16px;
200
+ font-weight: bold;
201
+ padding: 5px 10px;
202
+ display: inline-block;
203
+ right: -25px;
204
+ top: -5px;
205
+ color: #444;
206
0 commit comments