Skip to content

Commit b7fd801

Browse files
authored
refactor: Add comments to stylesheet
Updated style.css to add comments, improving code clarity and consistency for the project.
1 parent 1417063 commit b7fd801

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

style.css

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -257,25 +257,26 @@ input:focus {
257257
text-align: center;
258258
}
259259

260-
/* Remove os bullets padrão */
260+
/* Removes default bullets */
261261
.site-footer ul {
262262
list-style: none;
263263
padding: 0;
264264
}
265265

266-
/* Estiliza os links e adiciona o símbolo após o texto */
266+
/* Styles the links and adds the symbol after the text */
267267
.site-footer ul li a {
268268
position: relative;
269269
display: inline-block;
270-
padding-right: 1.5rem; /* Adiciona espaço para o símbolo */
270+
padding-right: 1.5rem; /* Adds space for the symbol */
271271
}
272272

273-
/* O pseudo-elemento que cria a estrela */
273+
/* The pseudo-element that creates the star */
274274
.site-footer ul li a::after {
275275
content: '★';
276276
position: absolute;
277277
right: 0;
278278
top: 50%;
279279
transform: translateY(-50%);
280280
color: var(--brand);
281-
}
281+
282+
}

0 commit comments

Comments
 (0)