Compare commits

..

2 commits

Author SHA1 Message Date
5ada7e4aaf Make user names in user cards bold 2023-09-06 07:15:25 +09:00
6c5e253f5c Improve the readability of user cards 2023-09-06 07:13:16 +09:00

View file

@ -27,7 +27,7 @@
border-bottom-left-radius: inherit; border-bottom-left-radius: inherit;
// create new stacking context // create new stacking context
position: relative; position: relative;
text-shadow: 0 0 1em var(--btn, $fallback--fg); text-shadow: 0 0 .5em var(--btn, $fallback--fg);
} }
.background-image { .background-image {
@ -187,7 +187,7 @@
.top-line { .top-line {
.button-unstyled { .button-unstyled {
filter: drop-shadow(0 0 1em var(--btn, $fallback--fg)); filter: drop-shadow(0 0 .5em var(--btn, $fallback--fg));
} }
} }
@ -197,7 +197,7 @@
flex: 1 1 auto; flex: 1 1 auto;
margin-right: 1em; margin-right: 1em;
font-size: 1.1em; font-size: 1.1em;
text-shadow: 0 0 1em var(--btn, $fallback--fg); text-shadow: 0 0 .5em var(--btn, $fallback--fg);
font-weight: bold; font-weight: bold;
} }
@ -217,7 +217,7 @@
overflow: hidden; overflow: hidden;
color: $fallback--lightText; color: $fallback--lightText;
color: var(--lightText, $fallback--lightText); color: var(--lightText, $fallback--lightText);
text-shadow: 0 0 1em var(--btn, $fallback--fg); text-shadow: 0 0 .5em var(--btn, $fallback--fg);
} }
.dailyAvg { .dailyAvg {
@ -227,7 +227,7 @@
font-size: 0.7em; font-size: 0.7em;
color: $fallback--text; color: $fallback--text;
color: var(--text, $fallback--text); color: var(--text, $fallback--text);
text-shadow: 0 0 1em var(--btn, $fallback--fg); text-shadow: 0 0 .5em var(--btn, $fallback--fg);
} }
.user-role { .user-role {
@ -246,7 +246,7 @@
line-height: 22px; line-height: 22px;
flex-wrap: wrap; flex-wrap: wrap;
justify-content: right; justify-content: right;
text-shadow: 0 0 1em var(--btn, $fallback--fg); text-shadow: 0 0 .5em var(--btn, $fallback--fg);
.following, .requested_by, .blocking { .following, .requested_by, .blocking {
flex: 1 0 auto; flex: 1 0 auto;