I removed all @import rules from my style.css but then I lost all font-awesome icons that I had on my page. I figured I can get them back if I copied the small section that my page was actually using from www.maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css
The icons are still missing and I don't know how to get them back correctly in my css. I suppose I need to copy the actual icons as images to my images folder and link to them somehow via css, but I have not succeeded.
This the section that I copied:
/*!
/ * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome*/
@font-face {
font-family: 'FontAwesome';
font-weight: normal;
font-style: normal
}
.fa {
display: inline-block;
font-family: FontAwesome;
font-style: normal;
font-weight: normal;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale
}
@-moz-keyframes spin {
0% {
-moz-transform:rotate(0deg)
}
100% {
-moz-transform:rotate(359deg)
}
}
@-webkit-keyframes spin {
0% {
-webkit-transform:rotate(0deg)
}
100% {
-webkit-transform:rotate(359deg)
}
}
@-o-keyframes spin {
0% {
-o-transform:rotate(0deg)
}
100% {
-o-transform:rotate(359deg)
}
}
@keyframes spin {
0% {
-webkit-transform:rotate(0deg);
transform:rotate(0deg)
}
100% {
-webkit-transform:rotate(359deg);
transform:rotate(359deg)
}
}
.fa-play-circle-o:before {
src:url(../images/play-icon.png)
}
.fa-arrow-circle-left:before {
content: "\f0a8"
}
.fa-arrow-circle-right:before {
content: "\f0a9"
}
.fa-angle-up:before {
content: "\f106"
}
I then even downloaded all the fonts in a zip folder and placed the unzipped folder on my server and tried to link to it, but without any result.
The missing icons are the video play icons in the bottom and the to-the-top arrow. There are more on other pages but once I know how to link to them without @import I will figure out how to do the rest.
Any help is much appreciated. Kim