Is there a way to adjust the appearance of this icon to make it appear thinner? I have tried using font-weight and stroke-width without success.
.material-icons-outlined,
.material-icons.material-icons--outlined {
font-family: 'Material Icons Outlined';
font-size: 60px;
font-weight:100;
stroke-width: 0.1px;
}
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500|Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp">
</head>
<body>
<section id="outlined">
<h2>Outlined</h2>
<i class="material-icons material-icons--outlined">assignment</i>
</section>
</body>
</html>