font-awesome-sass-mixins 4.3.0 → 4.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -0
- data/font-awesome-sass-mixins.gemspec +1 -1
- data/lib/sass/font-awesome-mixins/_extends.sass +245 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7ff192b3826ca397b306616f3b60fced4fc257cc
|
4
|
+
data.tar.gz: d144f48754aca4984de28a3bed53c202d3a8fa01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9cd29558aa2096c57d457b888ed753f751d3a51cbc08403979d6cb6c864f7f34ce42f114d775b21ef30aa17e6e8514348e341c28699582ade8a1263b02ed357b
|
7
|
+
data.tar.gz: 6579c650c94b9b75b6ea281559a92c41c5e4f42e777c7877ae7c8baf3b2305a285b57cf5fbd4e7d3498a7da84117dfa096aa7cfa5ad6d6031f5677d2df678762
|
data/README.md
CHANGED
@@ -1,6 +1,7 @@
|
|
1
1
|
# font-awesome-sass-mixins
|
2
2
|
For those of us who want to use Font Awesome without class tags and without loading every single class definition.
|
3
3
|
|
4
|
+
#### Currently up to date with Font Awesome 4.4.0
|
4
5
|
|
5
6
|
### Installation
|
6
7
|
|
@@ -15,6 +16,7 @@ then
|
|
15
16
|
|
16
17
|
- Make sure you have the @font-face declaration somewhere in your SASS already. I may add that automatically in the near future.
|
17
18
|
- Make sure your fonts directory is also setup and that your @font-face points at it. This gem cannot really help you with that, it's out of scope.
|
19
|
+
- Make sure you set the `$fa-font-size-base` variable somewhere before you @import this extension.
|
18
20
|
|
19
21
|
### Usage
|
20
22
|
|
@@ -1,11 +1,13 @@
|
|
1
1
|
%fa-base-styles
|
2
2
|
display: inline-block
|
3
|
-
font: normal normal normal #{$fa-font-size-base}
|
3
|
+
font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome
|
4
4
|
font-size: inherit
|
5
5
|
text-rendering: auto
|
6
6
|
-webkit-font-smoothing: antialiased
|
7
7
|
-moz-osx-font-smoothing: grayscale
|
8
|
-
|
8
|
+
%fa-icon-500px
|
9
|
+
&:before
|
10
|
+
content: "\f26e"
|
9
11
|
%fa-icon-adjust
|
10
12
|
&:before
|
11
13
|
content: "\f042"
|
@@ -24,6 +26,9 @@
|
|
24
26
|
%fa-icon-align-right
|
25
27
|
&:before
|
26
28
|
content: "\f038"
|
29
|
+
%fa-icon-amazon
|
30
|
+
&:before
|
31
|
+
content: "\f270"
|
27
32
|
%fa-icon-ambulance
|
28
33
|
&:before
|
29
34
|
content: "\f0f9"
|
@@ -129,6 +134,9 @@
|
|
129
134
|
%fa-icon-backward
|
130
135
|
&:before
|
131
136
|
content: "\f04a"
|
137
|
+
%fa-icon-balance-scale
|
138
|
+
&:before
|
139
|
+
content: "\f24e"
|
132
140
|
%fa-icon-ban
|
133
141
|
&:before
|
134
142
|
content: "\f05e"
|
@@ -147,6 +155,36 @@
|
|
147
155
|
%fa-icon-bars
|
148
156
|
&:before
|
149
157
|
content: "\f0c9"
|
158
|
+
%fa-icon-battery-0
|
159
|
+
&:before
|
160
|
+
content: "\f244"
|
161
|
+
%fa-icon-battery-1
|
162
|
+
&:before
|
163
|
+
content: "\f243"
|
164
|
+
%fa-icon-battery-2
|
165
|
+
&:before
|
166
|
+
content: "\f242"
|
167
|
+
%fa-icon-battery-3
|
168
|
+
&:before
|
169
|
+
content: "\f241"
|
170
|
+
%fa-icon-battery-4
|
171
|
+
&:before
|
172
|
+
content: "\f240"
|
173
|
+
%fa-icon-battery-empty
|
174
|
+
&:before
|
175
|
+
content: "\f244"
|
176
|
+
%fa-icon-battery-full
|
177
|
+
&:before
|
178
|
+
content: "\f240"
|
179
|
+
%fa-icon-battery-half
|
180
|
+
&:before
|
181
|
+
content: "\f242"
|
182
|
+
%fa-icon-battery-quarter
|
183
|
+
&:before
|
184
|
+
content: "\f243"
|
185
|
+
%fa-icon-battery-three-quarters
|
186
|
+
&:before
|
187
|
+
content: "\f241"
|
150
188
|
%fa-icon-bed
|
151
189
|
&:before
|
152
190
|
content: "\f236"
|
@@ -189,6 +227,9 @@
|
|
189
227
|
%fa-icon-bitcoin
|
190
228
|
&:before
|
191
229
|
content: "\f15a"
|
230
|
+
%fa-icon-black-tie
|
231
|
+
&:before
|
232
|
+
content: "\f27e"
|
192
233
|
%fa-icon-bold
|
193
234
|
&:before
|
194
235
|
content: "\f032"
|
@@ -243,9 +284,21 @@
|
|
243
284
|
%fa-icon-calendar
|
244
285
|
&:before
|
245
286
|
content: "\f073"
|
287
|
+
%fa-icon-calendar-check-o
|
288
|
+
&:before
|
289
|
+
content: "\f274"
|
290
|
+
%fa-icon-calendar-minus-o
|
291
|
+
&:before
|
292
|
+
content: "\f272"
|
246
293
|
%fa-icon-calendar-o
|
247
294
|
&:before
|
248
295
|
content: "\f133"
|
296
|
+
%fa-icon-calendar-plus-o
|
297
|
+
&:before
|
298
|
+
content: "\f271"
|
299
|
+
%fa-icon-calendar-times-o
|
300
|
+
&:before
|
301
|
+
content: "\f273"
|
249
302
|
%fa-icon-camera
|
250
303
|
&:before
|
251
304
|
content: "\f030"
|
@@ -291,9 +344,15 @@
|
|
291
344
|
%fa-icon-cc-amex
|
292
345
|
&:before
|
293
346
|
content: "\f1f3"
|
347
|
+
%fa-icon-cc-diners-club
|
348
|
+
&:before
|
349
|
+
content: "\f24c"
|
294
350
|
%fa-icon-cc-discover
|
295
351
|
&:before
|
296
352
|
content: "\f1f2"
|
353
|
+
%fa-icon-cc-jcb
|
354
|
+
&:before
|
355
|
+
content: "\f24b"
|
297
356
|
%fa-icon-cc-mastercard
|
298
357
|
&:before
|
299
358
|
content: "\f1f1"
|
@@ -357,6 +416,9 @@
|
|
357
416
|
%fa-icon-child
|
358
417
|
&:before
|
359
418
|
content: "\f1ae"
|
419
|
+
%fa-icon-chrome
|
420
|
+
&:before
|
421
|
+
content: "\f268"
|
360
422
|
%fa-icon-circle
|
361
423
|
&:before
|
362
424
|
content: "\f111"
|
@@ -375,6 +437,9 @@
|
|
375
437
|
%fa-icon-clock-o
|
376
438
|
&:before
|
377
439
|
content: "\f017"
|
440
|
+
%fa-icon-clone
|
441
|
+
&:before
|
442
|
+
content: "\f24d"
|
378
443
|
%fa-icon-close
|
379
444
|
&:before
|
380
445
|
content: "\f00d"
|
@@ -417,6 +482,12 @@
|
|
417
482
|
%fa-icon-comment-o
|
418
483
|
&:before
|
419
484
|
content: "\f0e5"
|
485
|
+
%fa-icon-commenting
|
486
|
+
&:before
|
487
|
+
content: "\f27a"
|
488
|
+
%fa-icon-commenting-o
|
489
|
+
&:before
|
490
|
+
content: "\f27b"
|
420
491
|
%fa-icon-comments
|
421
492
|
&:before
|
422
493
|
content: "\f086"
|
@@ -432,12 +503,18 @@
|
|
432
503
|
%fa-icon-connectdevelop
|
433
504
|
&:before
|
434
505
|
content: "\f20e"
|
506
|
+
%fa-icon-contao
|
507
|
+
&:before
|
508
|
+
content: "\f26d"
|
435
509
|
%fa-icon-copy
|
436
510
|
&:before
|
437
511
|
content: "\f0c5"
|
438
512
|
%fa-icon-copyright
|
439
513
|
&:before
|
440
514
|
content: "\f1f9"
|
515
|
+
%fa-icon-creative-commons
|
516
|
+
&:before
|
517
|
+
content: "\f25e"
|
441
518
|
%fa-icon-credit-card
|
442
519
|
&:before
|
443
520
|
content: "\f09d"
|
@@ -555,6 +632,9 @@
|
|
555
632
|
%fa-icon-expand
|
556
633
|
&:before
|
557
634
|
content: "\f065"
|
635
|
+
%fa-icon-expeditedssl
|
636
|
+
&:before
|
637
|
+
content: "\f23e"
|
558
638
|
%fa-icon-external-link
|
559
639
|
&:before
|
560
640
|
content: "\f08e"
|
@@ -591,6 +671,9 @@
|
|
591
671
|
%fa-icon-fax
|
592
672
|
&:before
|
593
673
|
content: "\f1ac"
|
674
|
+
%fa-icon-feed
|
675
|
+
&:before
|
676
|
+
content: "\f09e"
|
594
677
|
%fa-icon-female
|
595
678
|
&:before
|
596
679
|
content: "\f182"
|
@@ -666,6 +749,9 @@
|
|
666
749
|
%fa-icon-fire-extinguisher
|
667
750
|
&:before
|
668
751
|
content: "\f134"
|
752
|
+
%fa-icon-firefox
|
753
|
+
&:before
|
754
|
+
content: "\f269"
|
669
755
|
%fa-icon-flag
|
670
756
|
&:before
|
671
757
|
content: "\f024"
|
@@ -702,6 +788,9 @@
|
|
702
788
|
%fa-icon-font
|
703
789
|
&:before
|
704
790
|
content: "\f031"
|
791
|
+
%fa-icon-fonticons
|
792
|
+
&:before
|
793
|
+
content: "\f280"
|
705
794
|
%fa-icon-forumbee
|
706
795
|
&:before
|
707
796
|
content: "\f211"
|
@@ -737,7 +826,16 @@
|
|
737
826
|
content: "\f085"
|
738
827
|
%fa-icon-genderless
|
739
828
|
&:before
|
740
|
-
content: "\
|
829
|
+
content: "\f22d"
|
830
|
+
%fa-icon-get-pocket
|
831
|
+
&:before
|
832
|
+
content: "\f265"
|
833
|
+
%fa-icon-gg
|
834
|
+
&:before
|
835
|
+
content: "\f260"
|
836
|
+
%fa-icon-gg-circle
|
837
|
+
&:before
|
838
|
+
content: "\f261"
|
741
839
|
%fa-icon-gift
|
742
840
|
&:before
|
743
841
|
content: "\f06b"
|
@@ -792,6 +890,12 @@
|
|
792
890
|
%fa-icon-hacker-news
|
793
891
|
&:before
|
794
892
|
content: "\f1d4"
|
893
|
+
%fa-icon-hand-grab-o
|
894
|
+
&:before
|
895
|
+
content: "\f255"
|
896
|
+
%fa-icon-hand-lizard-o
|
897
|
+
&:before
|
898
|
+
content: "\f258"
|
795
899
|
%fa-icon-hand-o-down
|
796
900
|
&:before
|
797
901
|
content: "\f0a7"
|
@@ -804,6 +908,27 @@
|
|
804
908
|
%fa-icon-hand-o-up
|
805
909
|
&:before
|
806
910
|
content: "\f0a6"
|
911
|
+
%fa-icon-hand-paper-o
|
912
|
+
&:before
|
913
|
+
content: "\f256"
|
914
|
+
%fa-icon-hand-peace-o
|
915
|
+
&:before
|
916
|
+
content: "\f25b"
|
917
|
+
%fa-icon-hand-pointer-o
|
918
|
+
&:before
|
919
|
+
content: "\f25a"
|
920
|
+
%fa-icon-hand-rock-o
|
921
|
+
&:before
|
922
|
+
content: "\f255"
|
923
|
+
%fa-icon-hand-scissors-o
|
924
|
+
&:before
|
925
|
+
content: "\f257"
|
926
|
+
%fa-icon-hand-spock-o
|
927
|
+
&:before
|
928
|
+
content: "\f259"
|
929
|
+
%fa-icon-hand-stop-o
|
930
|
+
&:before
|
931
|
+
content: "\f256"
|
807
932
|
%fa-icon-hdd-o
|
808
933
|
&:before
|
809
934
|
content: "\f0a0"
|
@@ -834,9 +959,39 @@
|
|
834
959
|
%fa-icon-hotel
|
835
960
|
&:before
|
836
961
|
content: "\f236"
|
962
|
+
%fa-icon-hourglass
|
963
|
+
&:before
|
964
|
+
content: "\f254"
|
965
|
+
%fa-icon-hourglass-1
|
966
|
+
&:before
|
967
|
+
content: "\f251"
|
968
|
+
%fa-icon-hourglass-2
|
969
|
+
&:before
|
970
|
+
content: "\f252"
|
971
|
+
%fa-icon-hourglass-3
|
972
|
+
&:before
|
973
|
+
content: "\f253"
|
974
|
+
%fa-icon-hourglass-end
|
975
|
+
&:before
|
976
|
+
content: "\f253"
|
977
|
+
%fa-icon-hourglass-half
|
978
|
+
&:before
|
979
|
+
content: "\f252"
|
980
|
+
%fa-icon-hourglass-o
|
981
|
+
&:before
|
982
|
+
content: "\f250"
|
983
|
+
%fa-icon-hourglass-start
|
984
|
+
&:before
|
985
|
+
content: "\f251"
|
986
|
+
%fa-icon-houzz
|
987
|
+
&:before
|
988
|
+
content: "\f27c"
|
837
989
|
%fa-icon-html5
|
838
990
|
&:before
|
839
991
|
content: "\f13b"
|
992
|
+
%fa-icon-i-cursor
|
993
|
+
&:before
|
994
|
+
content: "\f246"
|
840
995
|
%fa-icon-ils
|
841
996
|
&:before
|
842
997
|
content: "\f20b"
|
@@ -849,6 +1004,9 @@
|
|
849
1004
|
%fa-icon-indent
|
850
1005
|
&:before
|
851
1006
|
content: "\f03c"
|
1007
|
+
%fa-icon-industry
|
1008
|
+
&:before
|
1009
|
+
content: "\f275"
|
852
1010
|
%fa-icon-info
|
853
1011
|
&:before
|
854
1012
|
content: "\f129"
|
@@ -864,6 +1022,12 @@
|
|
864
1022
|
%fa-icon-institution
|
865
1023
|
&:before
|
866
1024
|
content: "\f19c"
|
1025
|
+
%fa-icon-internet-explorer
|
1026
|
+
&:before
|
1027
|
+
content: "\f26b"
|
1028
|
+
%fa-icon-intersex
|
1029
|
+
&:before
|
1030
|
+
content: "\f224"
|
867
1031
|
%fa-icon-ioxhost
|
868
1032
|
&:before
|
869
1033
|
content: "\f208"
|
@@ -996,9 +1160,21 @@
|
|
996
1160
|
%fa-icon-male
|
997
1161
|
&:before
|
998
1162
|
content: "\f183"
|
1163
|
+
%fa-icon-map
|
1164
|
+
&:before
|
1165
|
+
content: "\f279"
|
999
1166
|
%fa-icon-map-marker
|
1000
1167
|
&:before
|
1001
1168
|
content: "\f041"
|
1169
|
+
%fa-icon-map-o
|
1170
|
+
&:before
|
1171
|
+
content: "\f278"
|
1172
|
+
%fa-icon-map-pin
|
1173
|
+
&:before
|
1174
|
+
content: "\f276"
|
1175
|
+
%fa-icon-map-signs
|
1176
|
+
&:before
|
1177
|
+
content: "\f277"
|
1002
1178
|
%fa-icon-mars
|
1003
1179
|
&:before
|
1004
1180
|
content: "\f222"
|
@@ -1068,6 +1244,9 @@
|
|
1068
1244
|
%fa-icon-motorcycle
|
1069
1245
|
&:before
|
1070
1246
|
content: "\f21c"
|
1247
|
+
%fa-icon-mouse-pointer
|
1248
|
+
&:before
|
1249
|
+
content: "\f245"
|
1071
1250
|
%fa-icon-music
|
1072
1251
|
&:before
|
1073
1252
|
content: "\f001"
|
@@ -1080,9 +1259,30 @@
|
|
1080
1259
|
%fa-icon-newspaper-o
|
1081
1260
|
&:before
|
1082
1261
|
content: "\f1ea"
|
1262
|
+
%fa-icon-object-group
|
1263
|
+
&:before
|
1264
|
+
content: "\f247"
|
1265
|
+
%fa-icon-object-ungroup
|
1266
|
+
&:before
|
1267
|
+
content: "\f248"
|
1268
|
+
%fa-icon-odnoklassniki
|
1269
|
+
&:before
|
1270
|
+
content: "\f263"
|
1271
|
+
%fa-icon-odnoklassniki-square
|
1272
|
+
&:before
|
1273
|
+
content: "\f264"
|
1274
|
+
%fa-icon-opencart
|
1275
|
+
&:before
|
1276
|
+
content: "\f23d"
|
1083
1277
|
%fa-icon-openid
|
1084
1278
|
&:before
|
1085
1279
|
content: "\f19b"
|
1280
|
+
%fa-icon-opera
|
1281
|
+
&:before
|
1282
|
+
content: "\f26a"
|
1283
|
+
%fa-icon-optin-monster
|
1284
|
+
&:before
|
1285
|
+
content: "\f23c"
|
1086
1286
|
%fa-icon-outdent
|
1087
1287
|
&:before
|
1088
1288
|
content: "\f03b"
|
@@ -1230,6 +1430,9 @@
|
|
1230
1430
|
%fa-icon-refresh
|
1231
1431
|
&:before
|
1232
1432
|
content: "\f021"
|
1433
|
+
%fa-icon-registered
|
1434
|
+
&:before
|
1435
|
+
content: "\f25d"
|
1233
1436
|
%fa-icon-remove
|
1234
1437
|
&:before
|
1235
1438
|
content: "\f00d"
|
@@ -1284,6 +1487,9 @@
|
|
1284
1487
|
%fa-icon-rupee
|
1285
1488
|
&:before
|
1286
1489
|
content: "\f156"
|
1490
|
+
%fa-icon-safari
|
1491
|
+
&:before
|
1492
|
+
content: "\f267"
|
1287
1493
|
%fa-icon-save
|
1288
1494
|
&:before
|
1289
1495
|
content: "\f0c7"
|
@@ -1473,6 +1679,12 @@
|
|
1473
1679
|
%fa-icon-stethoscope
|
1474
1680
|
&:before
|
1475
1681
|
content: "\f0f1"
|
1682
|
+
%fa-icon-sticky-note
|
1683
|
+
&:before
|
1684
|
+
content: "\f249"
|
1685
|
+
%fa-icon-sticky-note-o
|
1686
|
+
&:before
|
1687
|
+
content: "\f24a"
|
1476
1688
|
%fa-icon-stop
|
1477
1689
|
&:before
|
1478
1690
|
content: "\f04d"
|
@@ -1527,6 +1739,9 @@
|
|
1527
1739
|
%fa-icon-taxi
|
1528
1740
|
&:before
|
1529
1741
|
content: "\f1ba"
|
1742
|
+
%fa-icon-television
|
1743
|
+
&:before
|
1744
|
+
content: "\f26c"
|
1530
1745
|
%fa-icon-tencent-weibo
|
1531
1746
|
&:before
|
1532
1747
|
content: "\f1d5"
|
@@ -1596,6 +1811,9 @@
|
|
1596
1811
|
%fa-icon-toggle-up
|
1597
1812
|
&:before
|
1598
1813
|
content: "\f151"
|
1814
|
+
%fa-icon-trademark
|
1815
|
+
&:before
|
1816
|
+
content: "\f25c"
|
1599
1817
|
%fa-icon-train
|
1600
1818
|
&:before
|
1601
1819
|
content: "\f238"
|
@@ -1617,6 +1835,9 @@
|
|
1617
1835
|
%fa-icon-trello
|
1618
1836
|
&:before
|
1619
1837
|
content: "\f181"
|
1838
|
+
%fa-icon-tripadvisor
|
1839
|
+
&:before
|
1840
|
+
content: "\f262"
|
1620
1841
|
%fa-icon-trophy
|
1621
1842
|
&:before
|
1622
1843
|
content: "\f091"
|
@@ -1638,6 +1859,9 @@
|
|
1638
1859
|
%fa-icon-turkish-lira
|
1639
1860
|
&:before
|
1640
1861
|
content: "\f195"
|
1862
|
+
%fa-icon-tv
|
1863
|
+
&:before
|
1864
|
+
content: "\f26c"
|
1641
1865
|
%fa-icon-twitch
|
1642
1866
|
&:before
|
1643
1867
|
content: "\f1e8"
|
@@ -1710,6 +1934,9 @@
|
|
1710
1934
|
%fa-icon-video-camera
|
1711
1935
|
&:before
|
1712
1936
|
content: "\f03d"
|
1937
|
+
%fa-icon-vimeo
|
1938
|
+
&:before
|
1939
|
+
content: "\f27d"
|
1713
1940
|
%fa-icon-vimeo-square
|
1714
1941
|
&:before
|
1715
1942
|
content: "\f194"
|
@@ -1749,6 +1976,9 @@
|
|
1749
1976
|
%fa-icon-wifi
|
1750
1977
|
&:before
|
1751
1978
|
content: "\f1eb"
|
1979
|
+
%fa-icon-wikipedia-w
|
1980
|
+
&:before
|
1981
|
+
content: "\f266"
|
1752
1982
|
%fa-icon-windows
|
1753
1983
|
&:before
|
1754
1984
|
content: "\f17a"
|
@@ -1767,9 +1997,21 @@
|
|
1767
1997
|
%fa-icon-xing-square
|
1768
1998
|
&:before
|
1769
1999
|
content: "\f169"
|
2000
|
+
%fa-icon-y-combinator
|
2001
|
+
&:before
|
2002
|
+
content: "\f23b"
|
2003
|
+
%fa-icon-y-combinator-square
|
2004
|
+
&:before
|
2005
|
+
content: "\f1d4"
|
1770
2006
|
%fa-icon-yahoo
|
1771
2007
|
&:before
|
1772
2008
|
content: "\f19e"
|
2009
|
+
%fa-icon-yc
|
2010
|
+
&:before
|
2011
|
+
content: "\f23b"
|
2012
|
+
%fa-icon-yc-square
|
2013
|
+
&:before
|
2014
|
+
content: "\f1d4"
|
1773
2015
|
%fa-icon-yelp
|
1774
2016
|
&:before
|
1775
2017
|
content: "\f1e9"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: font-awesome-sass-mixins
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter M. Elias
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-09-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass
|
@@ -62,7 +62,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
62
62
|
version: '0'
|
63
63
|
requirements: []
|
64
64
|
rubyforge_project:
|
65
|
-
rubygems_version: 2.4.5
|
65
|
+
rubygems_version: 2.4.5.1
|
66
66
|
signing_key:
|
67
67
|
specification_version: 4
|
68
68
|
summary: Font Awesome SASS mixins for pure SASS usage.
|