Skip to content

Commit 016a01b

Browse files
authored
Fix project page colors (alshedivat#295)
1 parent f3efec5 commit 016a01b

File tree

1 file changed

+19
-28
lines changed

1 file changed

+19
-28
lines changed

_sass/_base.scss

+19-28
Original file line numberDiff line numberDiff line change
@@ -295,47 +295,38 @@ footer.sticky-bottom {
295295
// Projects
296296

297297
.projects {
298+
a {
299+
text-decoration: none;
300+
301+
&:hover {
302+
.card-title {
303+
color: var(--global-theme-color);
304+
}
305+
}
306+
}
307+
308+
.card {
309+
img {
310+
width: 100%;
311+
}
312+
.card-title {
313+
color: $black-color;
314+
}
315+
}
316+
298317
.card-item {
299318
width: auto;
300319
margin-bottom: 10px;
301320

302-
a {
303-
text-decoration: none;
304-
}
305-
306321
.row {
307322
display: flex;
308323
align-items: center;
309324
}
310-
311-
.card {
312-
img {
313-
width: 100%;
314-
}
315-
}
316325
}
317326

318327
.grid-item {
319328
width: 250px;
320329
margin-bottom: 10px;
321-
322-
a {
323-
color: black;
324-
text-decoration: none;
325-
326-
&:hover {
327-
color: var(--global-theme-color);
328-
}
329-
}
330-
331-
.card {
332-
img {
333-
width: 100%;
334-
}
335-
.card-title {
336-
color: $black-color;
337-
}
338-
}
339330
}
340331

341332
h2.category {

0 commit comments

Comments
 (0)