@mawr I am not familiar with the language. What does this line mean, and why is it bad?
@Felthry This is a CSS rule. CSS is laid out roughly like so:
<element restriction> {
<thing to change>: <change> <modifier>;
}
In this case, it's saying
<All elements> {
<font boldness>: <standard> !<even if later rules try to make something bold or thin>;
}
Basically, that rule makes it so that bold tags like <b> or <strong> just simply don't work the way they're supposed to
@Felthry And any time you tell something to be bold or thin, it just won't be unless you add that !important to it, which means you can't override it later
@ElectricKeet @mawr Well, like I said, it'd also make sense as part of evil.css :P