  /** * This file uses FontAwesome * Use this file (file-icons.css) for all Office and PDF documents. */
 a[href$=".pdf"]::after,
 a[href$=".doc"]::after, 
 a[href$=".docx"]::after, 
 a[href$=".xlsx"]::after, 
 a[href$=".pptx"]::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -webkit-transform: translate(5px, -2px);
  transform: translate(5px, -2px);
  font-family: 'FontAwesome';
}
 a[href$=".pdf"]::after {
     content: "\f1c1";
    /* 00a0 is a non-breaking space, f1c1 is the pdf symbol */
     color: #a6001f;
}
 a[href$=".doc"]::after, a[href$=".docx"]::after {
     color: #2957b3;
}
 a[href$=".doc"]::after {
     content: "\e5ed";
}
 a[href$=".docx"]::after {
     content: "\f1c2";
}
 a[href$=".xlsx"]::after {
     content: "\f1c3";
     color: #337241;
}
 a[href$=".pptx"]::after {
     content: "\f1c4";
     color: #ca4323;
}