Is there a way to reduce the \"weight\" of Glyphicons?
I am using the \"ok\" Glyphicon which disp
You could apply the font-weight property on ::before pseudo element to alter the font-weight:
font-weight
::before
.glyphicon { font-size: 60px; } .glyphicon-light::before { font-weight: 100; } .glyphicon-thick::before { font-weight: 900; }