1
0
Fork 0

use default weight for inline titles

This commit is contained in:
Rhiannon Morris 2020-07-11 18:24:17 +02:00
parent aca3c0080d
commit 4053f178f2
1 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,7 @@ body {
hsl(155deg, 70%, 62%)
);
--bg-image: url(images/niss_uwu_bg.png);
--weight: 500;
}
body {
@ -23,7 +24,7 @@ body {
body {
font-family: 'Muller';
font-size: 1.75rem;
font-weight: 500;
font-weight: var(--weight);
color: white;
text-shadow:
1px 1px 0 black,
@ -123,6 +124,7 @@ dd {
[title]::after {
content: attr(title);
font-size: 75%;
font-weight: var(--weight);
display: inline-block;
}
}