Skip to content

Instantly share code, notes, and snippets.

@epignatelli
Created December 25, 2020 16:50
Show Gist options
  • Save epignatelli/55c262a7996352a7383c967b439aa629 to your computer and use it in GitHub Desktop.
Save epignatelli/55c262a7996352a7383c967b439aa629 to your computer and use it in GitHub Desktop.
Fontawesome icon for Google Scholar
// google-scholar.svg
<svg height="2500" width="2500" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<g fill="none" fill-rule="evenodd"><path d="M256 411.12L0 202.667 256 0z" fill="#4285f4"/>
<path d="M256 411.12l256-208.453L256 0z" fill="#356ac3"/>
<circle cx="256" cy="362.667" fill="#a0c3ff" r="149.333"/>
<path d="M121.037 298.667c23.968-50.453 75.392-85.334 134.963-85.334s110.995 34.881 134.963 85.334H121.037z" fill="#76a7fa"/>
</g>
</svg>
// style.css
.icon-scholar {
content: url('assets/images/google-scholar.svg');
height: 1em;
width: auto;
}
// usage
<span class="fab icon-scholar fa-xs"></span>
<span class="fab icon-scholar fa-sm"></span>
<span class="fab icon-scholar fa-lg"></span>
<span class="fab icon-scholar fa-2x"></span>
<span class="fab icon-scholar fa-3x"></span>
<span class="fab icon-scholar fa-5x"></span>
<span class="fab icon-scholar fa-7x"></span>
<span class="fab icon-scholar fa-10x"></span>
@ahmedshahriar
Copy link

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment