AVID:Requests for Comment/Fix the bold text problem
From the Audiovisual Identity Database, the motion graphics museum
I saw the code for the font face here, but it looks like there has been a problem. The logo remained not bold or a bit bold whenever you make the text bold. I suggest that the following code:
@font-face {
font-family: 'AVID Sans Bold';
src: url('https://static.miraheze.org/avidwiki/6/6f/CLGSans-Bold.ttf');
}
should be changed to:
@font-face {
font-family: 'AVID Sans';
font-weight: bold;
src: url('https://static.miraheze.org/avidwiki/6/6f/CLGSans-Bold.ttf');
}
and that
classname {
font-family: 'AVID Sans Bold';
}
should be changed to:
classname {
font-family: 'AVID Sans';
font-weight: bold;
}