Fix friends section only has dark theme

This commit is contained in:
Hamza Nasher-Alneam 2025-05-24 01:48:53 -04:00
parent 5223d7c38c
commit f196311c56

View file

@ -163,8 +163,8 @@ a {
.person { .person {
display: inline-block; display: inline-block;
border: solid .15rem; border: solid .15rem;
border-color: #444; border-color: #ddd;
background-color: #2a2a2a; background-color: #f9f9f9;
width: 12rem; width: 12rem;
border-radius: .5rem; border-radius: .5rem;
margin: .4rem .1rem; margin: .4rem .1rem;
@ -177,19 +177,23 @@ a {
.person a { .person a {
margin: .4rem .1rem; margin: .4rem .1rem;
padding: .2rem .4rem; padding: .2rem .4rem;
background-color: var(--theme-color); border: solid .2rem var(--theme-color);
color: #fff; background-color: transparent;
text-decoration: none; text-decoration: none;
border-radius: .2rem; border-radius: .2rem;
transition: .2s; background-color: var(--theme-color);
text-shadow: 0 0 .05rem #000; color: #fff;
transition: .3s;
/* text-shadow: 0 0 .05rem #000; */
} }
.person a:hover { .person a:hover {
background-color: #fff; background-color: transparent;
color: var(--theme-color);
text-shadow: 0 0 .05rem #000;
}
color: var(--theme-color);
/* background-color: #aaa;
color: #000; */
/* text-shadow: 0 0 .05rem #000; */
}
/* Recent github actions */ /* Recent github actions */
.github-actions { .github-actions {
@ -204,6 +208,7 @@ a {
padding: 5px 15px; padding: 5px 15px;
margin-bottom: 15px; margin-bottom: 15px;
background-color: #f9f9f9; background-color: #f9f9f9;
overflow: hidden;
} }
.github-event-card .event-type { .github-event-card .event-type {
@ -249,6 +254,10 @@ a {
.github-event-card .event-details dd { .github-event-card .event-details dd {
margin-left: 90px; margin-left: 90px;
} }
.people {
text-align: center;
}
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
@ -268,4 +277,9 @@ a {
.github-event-card .event-time { .github-event-card .event-time {
color: #777; color: #777;
} }
.person {
border-color: #444;
background-color: #2a2a2a;
}
} }