All Projects → reskwer → fontAwesome-SCSS

reskwer / fontAwesome-SCSS

Licence: other
fontAwesome for SCSS

Programming Languages

CSS
56736 projects

Projects that are alternatives of or similar to fontAwesome-SCSS

Font Awesome
The iconic SVG, font, and CSS toolkit
Stars: ✭ 66,937 (+290930.43%)
Mutual labels:  fontawesome
create-fomantic-icons
Generate the icon.overrides and icon.html.eco files for Fomantic-UI (or Semantic-UI)
Stars: ✭ 21 (-8.7%)
Mutual labels:  fontawesome
rofi-fontawesome
fontawesome icon list for rofi dmenu
Stars: ✭ 58 (+152.17%)
Mutual labels:  fontawesome
jsonresume-theme-kendall
A theme for jsonresume
Stars: ✭ 43 (+86.96%)
Mutual labels:  fontawesome
chicio.github.io
👻 Fabrizio Duroni (me 😄) personal website. Created using GatsbyJS, Styled Components, Storybook, Typescript, tsParticles, GitHub pages, Github Actions, Upptime.
Stars: ✭ 20 (-13.04%)
Mutual labels:  fontawesome
fontIconPicker
A lightweight iconpicker for use with jQuery
Stars: ✭ 30 (+30.43%)
Mutual labels:  fontawesome
Icons
R package to easily insert web icons to RMarkdown
Stars: ✭ 216 (+839.13%)
Mutual labels:  fontawesome
svelte-fa
Tiny FontAwesome 5 component for Svelte
Stars: ✭ 214 (+830.43%)
Mutual labels:  fontawesome
fa-svelte
Font Awesome 5 for svelte.js
Stars: ✭ 72 (+213.04%)
Mutual labels:  fontawesome
global-summit-2020
I have created this project for the capstone of the HTML/CSS module. I was provided with a design to mock. The content was inspired by https://www.intelligentcommunity.org/summit_2020_speakers  website, which lists speakers at the ICF in Dublin, Ohio on the 21st-23rd October 2020.
Stars: ✭ 22 (-4.35%)
Mutual labels:  fontawesome
TW5FontAwesome
⚑ Embedding Font Awesome in TW5
Stars: ✭ 41 (+78.26%)
Mutual labels:  fontawesome
AwesomeBadge
a view class as Like a badge using fontawesome 5.
Stars: ✭ 17 (-26.09%)
Mutual labels:  fontawesome
ecommerce-template
This is a simple and easy to integrate e-commerce design template based on Bootstrap 5.
Stars: ✭ 34 (+47.83%)
Mutual labels:  fontawesome
bootstrap4-glyphicons
How use Glyphicons with Bootstrap 4 (without getting mad)
Stars: ✭ 40 (+73.91%)
Mutual labels:  fontawesome
vaktija.ba
Web Site
Stars: ✭ 19 (-17.39%)
Mutual labels:  fontawesome
Vipfs
Vue.js + IPFS = VIPFS. Create unstoppable applications
Stars: ✭ 242 (+952.17%)
Mutual labels:  fontawesome
fa5pro-downloader
A tool that allows you to download Font Awesome 5 Pro for free
Stars: ✭ 34 (+47.83%)
Mutual labels:  fontawesome
vue-fa
Tiny FontAwesome 5 component for Vue.js.
Stars: ✭ 24 (+4.35%)
Mutual labels:  fontawesome
Smartshop
An e-commerce php/mysql website built from scratch (Deprecated)
Stars: ✭ 46 (+100%)
Mutual labels:  fontawesome
latex-awesomebox
A package to draw attention boxes in your documents, illustrated with FontAwesome icons (Mirror)
Stars: ✭ 33 (+43.48%)
Mutual labels:  fontawesome

fontAwesome-SCSS

GitHub version npm version

*Read this in English: English

fontAwesome-SCSS ?

  1. Не нужно подключать шрифты. Экономия http запроса.
  2. Не выгружаете 150 kb ради 1 иконки.
  3. Все иконки inline SGV в CSS. Чистый html
  4. Не теряет качество при отключённом сглаживание шрифтов.
  5. Не кривыит иконки если по каким-то причинам файл шрифтов не выгрузился или выгрузился с ошибками.
  6. Все иконки из версии 4.7

Install

npm i fontawesome-scss --save-dev

или просто закиньте fontAwesome.scss в ваш проект.

Синтаксис

@include fa($имя-иконки, цвет, размер)

Имя - Имена иконок указываются и приставкой $, пример: $fa-user. Цвет - любое значение поддерживаемое css, hex, rgba, css переменные. Размер - любое значение поддерживаемое css Любое значение можно пропустить

Пример

Иконка красного цвета, 18px

.icon-user{
    @include fa($fa-user, red ,18px);
}

[GitHub version

CSS на выходе

.text:before {
    content: '\00A0';
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;
    background-image: url(data:image/svg+xml utf8, <svg xmlns="http://www.w3.org/2000/svg" x="0px" y="6.5-37.5,271.5-112.5S1876,22,1876-84 S1838.5-280.5,1763.5-355.5z"/></svg>);
}

Sublime

Для тех кто ценит свое время, sublime сниппет.

<snippet>
	<content><![CDATA[
@include fa (\$${1:name});
]]></content>
	<tabTrigger>fa</tabTrigger>
	<scope>source.scss</scope>
</snippet>

copyright

fontawesome-scss - является совместной работой reskwer и sokoliurii

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].