1
0
Fork 0

Compare commits

..

3 Commits

Author SHA1 Message Date
Rhiannon Morris 45a80279d1 join three successive body blocks 2020-07-11 18:24:33 +02:00
Rhiannon Morris 4053f178f2 use default weight for inline titles 2020-07-11 18:24:17 +02:00
Rhiannon Morris aca3c0080d curly quotes 2020-07-11 18:23:36 +02:00
2 changed files with 4 additions and 6 deletions

View File

@ -42,7 +42,7 @@
<dl> <dl>
<dt>quantity <dd>2 <dt>quantity <dd>2
<dt>prons <dt>prons
<dd title='&quot;she&quot; in real life pls!!'> <dd title='“she” in real life pls!!'>
she, he she, he
<dt>limbs <dd>many <dt>limbs <dd>many
<dt>consistency <dd>soft <dt>consistency <dd>soft

View File

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