Finished up with inline and full-body chat-filters.

This commit is contained in:
rainbow napkin 2025-01-11 13:00:34 -05:00
parent 77bc549653
commit 4c31dbde1e
6 changed files with 198 additions and 40 deletions

View file

@ -187,15 +187,41 @@ p.tooltip, h3.tooltip{
.spoiler:not(:hover){
color: black;
background-color: black;
filter: brightness(0);
img{
.interactive, a, img, video{
color: black;
background-color: black;
filter: brightness(0);
}
}
.interactive, a{
color: black;
background-color: black;
}
.strikethrough{
text-decoration: line-through;
}
.strikethrough img, .strikethrough video, img.strikethrough, video.strikethrough{
/* Oh yeah? Well, I'll just make my own damn strikethrough! With blackjack, and hookers! */
filter: url('/img/strikethrough.svg#strikethroughFilter');
}
.bold{
font-weight: bold;
}
.bold img, .bold video, img.bold, video.bold{
max-height: 14em;
}
.italics{
font-style: italic;
}
.italics img, .italics video, img.italics, video.italics{
transform: skew(-6deg);
transform-origin: 50% 100%;
}
.qoute{
font-family: monospace;
}