I am trying to reduce the width of the font awesome directional arrow through external css (I need it to be done through external css).But i am not able to increase the font-size and while doing through inline css its working fine
.fa-arrow-circle-left
{
color:red;
font-size:48px;
}
<!DOCTYPE html>
<html>
<head>
<title>Font Awesome Icons</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<h1>fa fa-arrow-circle-left</h1>
<i class="fa fa-arrow-circle-left" ></i>
<br>
<!-- <p>Unicode:</p>
<i style="font-size:24px" class="fa"></i> -->
</body>
</html>