I'm targeting a bunch of different languages in my LESS/CSS with the :lang() pseudo-class. It looks like this (but even more languages):
:lang(af),
:lang(sq),
:lang(eu),
:lang(bs),
:lang(ca),
:lang(kw),
:lang(hr),
:lang(cs),
:lang(da),
:lang(nl) {
font-size: 100px;
}
Is there a way to clean this up? I'd love to enter in a list of languages somehow.
Thanks