Я создал класс
.image-upload .image-edit input + label:after {
content: "\f030";
font-family: 'FontAwesome';
color: #757575;
position: absolute;
top: 10px;
left: 0;
right: 0;
text-align: center;
margin: auto;
}
Мне нужно изменить значок камеры (шрифт удивительный, чтобы линия потрясающая)
Я пробовал
.image-upload .image-edit input + label:after {
content: "\";
font-family: '"Line Awesome Free"';
color: #757575;
position: absolute;
top: 10px;
left: 0;
right: 0;
text-align: center;
margin: auto;
}
Но его не работает
Это HTML форма
<form action=""#>
<div class="text-center">
<div class="avatar-upload">
<div class="avatar-edit">
<input name="input_file" type="file" id="profile-pic-upload" />
<label for="profile-pic-upload"></label>
</div>
</div>
</div>
</form>