glyphicons 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1611 @@
1
+ //
2
+ // Glyphicons for Bootstrap
3
+ //
4
+ // Since icons are fonts, they can be placed anywhere text is placed and are
5
+ // thus automatically sized to match the surrounding child. To use, create an
6
+ // inline element with the appropriate classes, like so:
7
+ //
8
+ // <a href="#"><span class="glyphicon glyphicon-star"></span> Star</a>
9
+ @at-root {
10
+ // Import the fonts
11
+ @font-face {
12
+ font-family: 'Glyphicons Halflings';
13
+ src: url('/assets/glyphicons-halflings-regular.eot');
14
+ src: url('/assets/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('/assets/glyphicons-halflings-regular.woff') format('woff'), url('/assets/glyphicons-halflings-regular.ttf') format('truetype'), url('/assets/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
15
+ }
16
+ }
17
+
18
+ // Catchall baseclass
19
+ .glyphicon {
20
+ position: relative;
21
+ top: 1px;
22
+ display: inline-block;
23
+ font-family: 'Glyphicons Halflings';
24
+ font-style: normal;
25
+ font-weight: normal;
26
+ line-height: 1;
27
+ -webkit-font-smoothing: antialiased;
28
+ -moz-osx-font-smoothing: grayscale;
29
+ }
30
+
31
+ // Individual icons
32
+ .glyphicon-asterisk {
33
+ &:before {
34
+ content: "\002a";
35
+ }
36
+ }
37
+
38
+ .glyphicon-plus {
39
+ &:before {
40
+ content: "\002b";
41
+ }
42
+ }
43
+
44
+ .glyphicon-euro,
45
+ .glyphicon-eur {
46
+ &:before {
47
+ content: "\20ac";
48
+ }
49
+ }
50
+
51
+ .glyphicon-minus {
52
+ &:before {
53
+ content: "\2212";
54
+ }
55
+ }
56
+
57
+ .glyphicon-cloud {
58
+ &:before {
59
+ content: "\2601";
60
+ }
61
+ }
62
+
63
+ .glyphicon-envelope {
64
+ &:before {
65
+ content: "\2709";
66
+ }
67
+ }
68
+
69
+ .glyphicon-pencil {
70
+ &:before {
71
+ content: "\270f";
72
+ }
73
+ }
74
+
75
+ .glyphicon-glass {
76
+ &:before {
77
+ content: "\e001";
78
+ }
79
+ }
80
+
81
+ .glyphicon-music {
82
+ &:before {
83
+ content: "\e002";
84
+ }
85
+ }
86
+
87
+ .glyphicon-search {
88
+ &:before {
89
+ content: "\e003";
90
+ }
91
+ }
92
+
93
+ .glyphicon-heart {
94
+ &:before {
95
+ content: "\e005";
96
+ }
97
+ }
98
+
99
+ .glyphicon-star {
100
+ &:before {
101
+ content: "\e006";
102
+ }
103
+ }
104
+
105
+ .glyphicon-star-empty {
106
+ &:before {
107
+ content: "\e007";
108
+ }
109
+ }
110
+
111
+ .glyphicon-user {
112
+ &:before {
113
+ content: "\e008";
114
+ }
115
+ }
116
+
117
+ .glyphicon-film {
118
+ &:before {
119
+ content: "\e009";
120
+ }
121
+ }
122
+
123
+ .glyphicon-th-large {
124
+ &:before {
125
+ content: "\e010";
126
+ }
127
+ }
128
+
129
+ .glyphicon-th {
130
+ &:before {
131
+ content: "\e011";
132
+ }
133
+ }
134
+
135
+ .glyphicon-th-list {
136
+ &:before {
137
+ content: "\e012";
138
+ }
139
+ }
140
+
141
+ .glyphicon-ok {
142
+ &:before {
143
+ content: "\e013";
144
+ }
145
+ }
146
+
147
+ .glyphicon-remove {
148
+ &:before {
149
+ content: "\e014";
150
+ }
151
+ }
152
+
153
+ .glyphicon-zoom-in {
154
+ &:before {
155
+ content: "\e015";
156
+ }
157
+ }
158
+
159
+ .glyphicon-zoom-out {
160
+ &:before {
161
+ content: "\e016";
162
+ }
163
+ }
164
+
165
+ .glyphicon-off {
166
+ &:before {
167
+ content: "\e017";
168
+ }
169
+ }
170
+
171
+ .glyphicon-signal {
172
+ &:before {
173
+ content: "\e018";
174
+ }
175
+ }
176
+
177
+ .glyphicon-cog {
178
+ &:before {
179
+ content: "\e019";
180
+ }
181
+ }
182
+
183
+ .glyphicon-trash {
184
+ &:before {
185
+ content: "\e020";
186
+ }
187
+ }
188
+
189
+ .glyphicon-home {
190
+ &:before {
191
+ content: "\e021";
192
+ }
193
+ }
194
+
195
+ .glyphicon-file {
196
+ &:before {
197
+ content: "\e022";
198
+ }
199
+ }
200
+
201
+ .glyphicon-time {
202
+ &:before {
203
+ content: "\e023";
204
+ }
205
+ }
206
+
207
+ .glyphicon-road {
208
+ &:before {
209
+ content: "\e024";
210
+ }
211
+ }
212
+
213
+ .glyphicon-download-alt {
214
+ &:before {
215
+ content: "\e025";
216
+ }
217
+ }
218
+
219
+ .glyphicon-download {
220
+ &:before {
221
+ content: "\e026";
222
+ }
223
+ }
224
+
225
+ .glyphicon-upload {
226
+ &:before {
227
+ content: "\e027";
228
+ }
229
+ }
230
+
231
+ .glyphicon-inbox {
232
+ &:before {
233
+ content: "\e028";
234
+ }
235
+ }
236
+
237
+ .glyphicon-play-circle {
238
+ &:before {
239
+ content: "\e029";
240
+ }
241
+ }
242
+
243
+ .glyphicon-repeat {
244
+ &:before {
245
+ content: "\e030";
246
+ }
247
+ }
248
+
249
+ .glyphicon-refresh {
250
+ &:before {
251
+ content: "\e031";
252
+ }
253
+ }
254
+
255
+ .glyphicon-list-alt {
256
+ &:before {
257
+ content: "\e032";
258
+ }
259
+ }
260
+
261
+ .glyphicon-lock {
262
+ &:before {
263
+ content: "\e033";
264
+ }
265
+ }
266
+
267
+ .glyphicon-flag {
268
+ &:before {
269
+ content: "\e034";
270
+ }
271
+ }
272
+
273
+ .glyphicon-headphones {
274
+ &:before {
275
+ content: "\e035";
276
+ }
277
+ }
278
+
279
+ .glyphicon-volume-off {
280
+ &:before {
281
+ content: "\e036";
282
+ }
283
+ }
284
+
285
+ .glyphicon-volume-down {
286
+ &:before {
287
+ content: "\e037";
288
+ }
289
+ }
290
+
291
+ .glyphicon-volume-up {
292
+ &:before {
293
+ content: "\e038";
294
+ }
295
+ }
296
+
297
+ .glyphicon-qrcode {
298
+ &:before {
299
+ content: "\e039";
300
+ }
301
+ }
302
+
303
+ .glyphicon-barcode {
304
+ &:before {
305
+ content: "\e040";
306
+ }
307
+ }
308
+
309
+ .glyphicon-tag {
310
+ &:before {
311
+ content: "\e041";
312
+ }
313
+ }
314
+
315
+ .glyphicon-tags {
316
+ &:before {
317
+ content: "\e042";
318
+ }
319
+ }
320
+
321
+ .glyphicon-book {
322
+ &:before {
323
+ content: "\e043";
324
+ }
325
+ }
326
+
327
+ .glyphicon-bookmark {
328
+ &:before {
329
+ content: "\e044";
330
+ }
331
+ }
332
+
333
+ .glyphicon-print {
334
+ &:before {
335
+ content: "\e045";
336
+ }
337
+ }
338
+
339
+ .glyphicon-camera {
340
+ &:before {
341
+ content: "\e046";
342
+ }
343
+ }
344
+
345
+ .glyphicon-font {
346
+ &:before {
347
+ content: "\e047";
348
+ }
349
+ }
350
+
351
+ .glyphicon-bold {
352
+ &:before {
353
+ content: "\e048";
354
+ }
355
+ }
356
+
357
+ .glyphicon-italic {
358
+ &:before {
359
+ content: "\e049";
360
+ }
361
+ }
362
+
363
+ .glyphicon-text-height {
364
+ &:before {
365
+ content: "\e050";
366
+ }
367
+ }
368
+
369
+ .glyphicon-text-width {
370
+ &:before {
371
+ content: "\e051";
372
+ }
373
+ }
374
+
375
+ .glyphicon-align-left {
376
+ &:before {
377
+ content: "\e052";
378
+ }
379
+ }
380
+
381
+ .glyphicon-align-center {
382
+ &:before {
383
+ content: "\e053";
384
+ }
385
+ }
386
+
387
+ .glyphicon-align-right {
388
+ &:before {
389
+ content: "\e054";
390
+ }
391
+ }
392
+
393
+ .glyphicon-align-justify {
394
+ &:before {
395
+ content: "\e055";
396
+ }
397
+ }
398
+
399
+ .glyphicon-list {
400
+ &:before {
401
+ content: "\e056";
402
+ }
403
+ }
404
+
405
+ .glyphicon-indent-left {
406
+ &:before {
407
+ content: "\e057";
408
+ }
409
+ }
410
+
411
+ .glyphicon-indent-right {
412
+ &:before {
413
+ content: "\e058";
414
+ }
415
+ }
416
+
417
+ .glyphicon-facetime-video {
418
+ &:before {
419
+ content: "\e059";
420
+ }
421
+ }
422
+
423
+ .glyphicon-picture {
424
+ &:before {
425
+ content: "\e060";
426
+ }
427
+ }
428
+
429
+ .glyphicon-map-marker {
430
+ &:before {
431
+ content: "\e062";
432
+ }
433
+ }
434
+
435
+ .glyphicon-adjust {
436
+ &:before {
437
+ content: "\e063";
438
+ }
439
+ }
440
+
441
+ .glyphicon-tint {
442
+ &:before {
443
+ content: "\e064";
444
+ }
445
+ }
446
+
447
+ .glyphicon-edit {
448
+ &:before {
449
+ content: "\e065";
450
+ }
451
+ }
452
+
453
+ .glyphicon-share {
454
+ &:before {
455
+ content: "\e066";
456
+ }
457
+ }
458
+
459
+ .glyphicon-check {
460
+ &:before {
461
+ content: "\e067";
462
+ }
463
+ }
464
+
465
+ .glyphicon-move {
466
+ &:before {
467
+ content: "\e068";
468
+ }
469
+ }
470
+
471
+ .glyphicon-step-backward {
472
+ &:before {
473
+ content: "\e069";
474
+ }
475
+ }
476
+
477
+ .glyphicon-fast-backward {
478
+ &:before {
479
+ content: "\e070";
480
+ }
481
+ }
482
+
483
+ .glyphicon-backward {
484
+ &:before {
485
+ content: "\e071";
486
+ }
487
+ }
488
+
489
+ .glyphicon-play {
490
+ &:before {
491
+ content: "\e072";
492
+ }
493
+ }
494
+
495
+ .glyphicon-pause {
496
+ &:before {
497
+ content: "\e073";
498
+ }
499
+ }
500
+
501
+ .glyphicon-stop {
502
+ &:before {
503
+ content: "\e074";
504
+ }
505
+ }
506
+
507
+ .glyphicon-forward {
508
+ &:before {
509
+ content: "\e075";
510
+ }
511
+ }
512
+
513
+ .glyphicon-fast-forward {
514
+ &:before {
515
+ content: "\e076";
516
+ }
517
+ }
518
+
519
+ .glyphicon-step-forward {
520
+ &:before {
521
+ content: "\e077";
522
+ }
523
+ }
524
+
525
+ .glyphicon-eject {
526
+ &:before {
527
+ content: "\e078";
528
+ }
529
+ }
530
+
531
+ .glyphicon-chevron-left {
532
+ &:before {
533
+ content: "\e079";
534
+ }
535
+ }
536
+
537
+ .glyphicon-chevron-right {
538
+ &:before {
539
+ content: "\e080";
540
+ }
541
+ }
542
+
543
+ .glyphicon-plus-sign {
544
+ &:before {
545
+ content: "\e081";
546
+ }
547
+ }
548
+
549
+ .glyphicon-minus-sign {
550
+ &:before {
551
+ content: "\e082";
552
+ }
553
+ }
554
+
555
+ .glyphicon-remove-sign {
556
+ &:before {
557
+ content: "\e083";
558
+ }
559
+ }
560
+
561
+ .glyphicon-ok-sign {
562
+ &:before {
563
+ content: "\e084";
564
+ }
565
+ }
566
+
567
+ .glyphicon-question-sign {
568
+ &:before {
569
+ content: "\e085";
570
+ }
571
+ }
572
+
573
+ .glyphicon-info-sign {
574
+ &:before {
575
+ content: "\e086";
576
+ }
577
+ }
578
+
579
+ .glyphicon-screenshot {
580
+ &:before {
581
+ content: "\e087";
582
+ }
583
+ }
584
+
585
+ .glyphicon-remove-circle {
586
+ &:before {
587
+ content: "\e088";
588
+ }
589
+ }
590
+
591
+ .glyphicon-ok-circle {
592
+ &:before {
593
+ content: "\e089";
594
+ }
595
+ }
596
+
597
+ .glyphicon-ban-circle {
598
+ &:before {
599
+ content: "\e090";
600
+ }
601
+ }
602
+
603
+ .glyphicon-arrow-left {
604
+ &:before {
605
+ content: "\e091";
606
+ }
607
+ }
608
+
609
+ .glyphicon-arrow-right {
610
+ &:before {
611
+ content: "\e092";
612
+ }
613
+ }
614
+
615
+ .glyphicon-arrow-up {
616
+ &:before {
617
+ content: "\e093";
618
+ }
619
+ }
620
+
621
+ .glyphicon-arrow-down {
622
+ &:before {
623
+ content: "\e094";
624
+ }
625
+ }
626
+
627
+ .glyphicon-share-alt {
628
+ &:before {
629
+ content: "\e095";
630
+ }
631
+ }
632
+
633
+ .glyphicon-resize-full {
634
+ &:before {
635
+ content: "\e096";
636
+ }
637
+ }
638
+
639
+ .glyphicon-resize-small {
640
+ &:before {
641
+ content: "\e097";
642
+ }
643
+ }
644
+
645
+ .glyphicon-exclamation-sign {
646
+ &:before {
647
+ content: "\e101";
648
+ }
649
+ }
650
+
651
+ .glyphicon-gift {
652
+ &:before {
653
+ content: "\e102";
654
+ }
655
+ }
656
+
657
+ .glyphicon-leaf {
658
+ &:before {
659
+ content: "\e103";
660
+ }
661
+ }
662
+
663
+ .glyphicon-fire {
664
+ &:before {
665
+ content: "\e104";
666
+ }
667
+ }
668
+
669
+ .glyphicon-eye-open {
670
+ &:before {
671
+ content: "\e105";
672
+ }
673
+ }
674
+
675
+ .glyphicon-eye-close {
676
+ &:before {
677
+ content: "\e106";
678
+ }
679
+ }
680
+
681
+ .glyphicon-warning-sign {
682
+ &:before {
683
+ content: "\e107";
684
+ }
685
+ }
686
+
687
+ .glyphicon-plane {
688
+ &:before {
689
+ content: "\e108";
690
+ }
691
+ }
692
+
693
+ .glyphicon-calendar {
694
+ &:before {
695
+ content: "\e109";
696
+ }
697
+ }
698
+
699
+ .glyphicon-random {
700
+ &:before {
701
+ content: "\e110";
702
+ }
703
+ }
704
+
705
+ .glyphicon-comment {
706
+ &:before {
707
+ content: "\e111";
708
+ }
709
+ }
710
+
711
+ .glyphicon-magnet {
712
+ &:before {
713
+ content: "\e112";
714
+ }
715
+ }
716
+
717
+ .glyphicon-chevron-up {
718
+ &:before {
719
+ content: "\e113";
720
+ }
721
+ }
722
+
723
+ .glyphicon-chevron-down {
724
+ &:before {
725
+ content: "\e114";
726
+ }
727
+ }
728
+
729
+ .glyphicon-retweet {
730
+ &:before {
731
+ content: "\e115";
732
+ }
733
+ }
734
+
735
+ .glyphicon-shopping-cart {
736
+ &:before {
737
+ content: "\e116";
738
+ }
739
+ }
740
+
741
+ .glyphicon-folder-close {
742
+ &:before {
743
+ content: "\e117";
744
+ }
745
+ }
746
+
747
+ .glyphicon-folder-open {
748
+ &:before {
749
+ content: "\e118";
750
+ }
751
+ }
752
+
753
+ .glyphicon-resize-vertical {
754
+ &:before {
755
+ content: "\e119";
756
+ }
757
+ }
758
+
759
+ .glyphicon-resize-horizontal {
760
+ &:before {
761
+ content: "\e120";
762
+ }
763
+ }
764
+
765
+ .glyphicon-hdd {
766
+ &:before {
767
+ content: "\e121";
768
+ }
769
+ }
770
+
771
+ .glyphicon-bullhorn {
772
+ &:before {
773
+ content: "\e122";
774
+ }
775
+ }
776
+
777
+ .glyphicon-bell {
778
+ &:before {
779
+ content: "\e123";
780
+ }
781
+ }
782
+
783
+ .glyphicon-certificate {
784
+ &:before {
785
+ content: "\e124";
786
+ }
787
+ }
788
+
789
+ .glyphicon-thumbs-up {
790
+ &:before {
791
+ content: "\e125";
792
+ }
793
+ }
794
+
795
+ .glyphicon-thumbs-down {
796
+ &:before {
797
+ content: "\e126";
798
+ }
799
+ }
800
+
801
+ .glyphicon-hand-right {
802
+ &:before {
803
+ content: "\e127";
804
+ }
805
+ }
806
+
807
+ .glyphicon-hand-left {
808
+ &:before {
809
+ content: "\e128";
810
+ }
811
+ }
812
+
813
+ .glyphicon-hand-up {
814
+ &:before {
815
+ content: "\e129";
816
+ }
817
+ }
818
+
819
+ .glyphicon-hand-down {
820
+ &:before {
821
+ content: "\e130";
822
+ }
823
+ }
824
+
825
+ .glyphicon-circle-arrow-right {
826
+ &:before {
827
+ content: "\e131";
828
+ }
829
+ }
830
+
831
+ .glyphicon-circle-arrow-left {
832
+ &:before {
833
+ content: "\e132";
834
+ }
835
+ }
836
+
837
+ .glyphicon-circle-arrow-up {
838
+ &:before {
839
+ content: "\e133";
840
+ }
841
+ }
842
+
843
+ .glyphicon-circle-arrow-down {
844
+ &:before {
845
+ content: "\e134";
846
+ }
847
+ }
848
+
849
+ .glyphicon-globe {
850
+ &:before {
851
+ content: "\e135";
852
+ }
853
+ }
854
+
855
+ .glyphicon-wrench {
856
+ &:before {
857
+ content: "\e136";
858
+ }
859
+ }
860
+
861
+ .glyphicon-tasks {
862
+ &:before {
863
+ content: "\e137";
864
+ }
865
+ }
866
+
867
+ .glyphicon-filter {
868
+ &:before {
869
+ content: "\e138";
870
+ }
871
+ }
872
+
873
+ .glyphicon-briefcase {
874
+ &:before {
875
+ content: "\e139";
876
+ }
877
+ }
878
+
879
+ .glyphicon-fullscreen {
880
+ &:before {
881
+ content: "\e140";
882
+ }
883
+ }
884
+
885
+ .glyphicon-dashboard {
886
+ &:before {
887
+ content: "\e141";
888
+ }
889
+ }
890
+
891
+ .glyphicon-paperclip {
892
+ &:before {
893
+ content: "\e142";
894
+ }
895
+ }
896
+
897
+ .glyphicon-heart-empty {
898
+ &:before {
899
+ content: "\e143";
900
+ }
901
+ }
902
+
903
+ .glyphicon-link {
904
+ &:before {
905
+ content: "\e144";
906
+ }
907
+ }
908
+
909
+ .glyphicon-phone {
910
+ &:before {
911
+ content: "\e145";
912
+ }
913
+ }
914
+
915
+ .glyphicon-pushpin {
916
+ &:before {
917
+ content: "\e146";
918
+ }
919
+ }
920
+
921
+ .glyphicon-usd {
922
+ &:before {
923
+ content: "\e148";
924
+ }
925
+ }
926
+
927
+ .glyphicon-gbp {
928
+ &:before {
929
+ content: "\e149";
930
+ }
931
+ }
932
+
933
+ .glyphicon-sort {
934
+ &:before {
935
+ content: "\e150";
936
+ }
937
+ }
938
+
939
+ .glyphicon-sort-by-alphabet {
940
+ &:before {
941
+ content: "\e151";
942
+ }
943
+ }
944
+
945
+ .glyphicon-sort-by-alphabet-alt {
946
+ &:before {
947
+ content: "\e152";
948
+ }
949
+ }
950
+
951
+ .glyphicon-sort-by-order {
952
+ &:before {
953
+ content: "\e153";
954
+ }
955
+ }
956
+
957
+ .glyphicon-sort-by-order-alt {
958
+ &:before {
959
+ content: "\e154";
960
+ }
961
+ }
962
+
963
+ .glyphicon-sort-by-attributes {
964
+ &:before {
965
+ content: "\e155";
966
+ }
967
+ }
968
+
969
+ .glyphicon-sort-by-attributes-alt {
970
+ &:before {
971
+ content: "\e156";
972
+ }
973
+ }
974
+
975
+ .glyphicon-unchecked {
976
+ &:before {
977
+ content: "\e157";
978
+ }
979
+ }
980
+
981
+ .glyphicon-expand {
982
+ &:before {
983
+ content: "\e158";
984
+ }
985
+ }
986
+
987
+ .glyphicon-collapse-down {
988
+ &:before {
989
+ content: "\e159";
990
+ }
991
+ }
992
+
993
+ .glyphicon-collapse-up {
994
+ &:before {
995
+ content: "\e160";
996
+ }
997
+ }
998
+
999
+ .glyphicon-log-in {
1000
+ &:before {
1001
+ content: "\e161";
1002
+ }
1003
+ }
1004
+
1005
+ .glyphicon-flash {
1006
+ &:before {
1007
+ content: "\e162";
1008
+ }
1009
+ }
1010
+
1011
+ .glyphicon-log-out {
1012
+ &:before {
1013
+ content: "\e163";
1014
+ }
1015
+ }
1016
+
1017
+ .glyphicon-new-window {
1018
+ &:before {
1019
+ content: "\e164";
1020
+ }
1021
+ }
1022
+
1023
+ .glyphicon-record {
1024
+ &:before {
1025
+ content: "\e165";
1026
+ }
1027
+ }
1028
+
1029
+ .glyphicon-save {
1030
+ &:before {
1031
+ content: "\e166";
1032
+ }
1033
+ }
1034
+
1035
+ .glyphicon-open {
1036
+ &:before {
1037
+ content: "\e167";
1038
+ }
1039
+ }
1040
+
1041
+ .glyphicon-saved {
1042
+ &:before {
1043
+ content: "\e168";
1044
+ }
1045
+ }
1046
+
1047
+ .glyphicon-import {
1048
+ &:before {
1049
+ content: "\e169";
1050
+ }
1051
+ }
1052
+
1053
+ .glyphicon-export {
1054
+ &:before {
1055
+ content: "\e170";
1056
+ }
1057
+ }
1058
+
1059
+ .glyphicon-send {
1060
+ &:before {
1061
+ content: "\e171";
1062
+ }
1063
+ }
1064
+
1065
+ .glyphicon-floppy-disk {
1066
+ &:before {
1067
+ content: "\e172";
1068
+ }
1069
+ }
1070
+
1071
+ .glyphicon-floppy-saved {
1072
+ &:before {
1073
+ content: "\e173";
1074
+ }
1075
+ }
1076
+
1077
+ .glyphicon-floppy-remove {
1078
+ &:before {
1079
+ content: "\e174";
1080
+ }
1081
+ }
1082
+
1083
+ .glyphicon-floppy-save {
1084
+ &:before {
1085
+ content: "\e175";
1086
+ }
1087
+ }
1088
+
1089
+ .glyphicon-floppy-open {
1090
+ &:before {
1091
+ content: "\e176";
1092
+ }
1093
+ }
1094
+
1095
+ .glyphicon-credit-card {
1096
+ &:before {
1097
+ content: "\e177";
1098
+ }
1099
+ }
1100
+
1101
+ .glyphicon-transfer {
1102
+ &:before {
1103
+ content: "\e178";
1104
+ }
1105
+ }
1106
+
1107
+ .glyphicon-cutlery {
1108
+ &:before {
1109
+ content: "\e179";
1110
+ }
1111
+ }
1112
+
1113
+ .glyphicon-header {
1114
+ &:before {
1115
+ content: "\e180";
1116
+ }
1117
+ }
1118
+
1119
+ .glyphicon-compressed {
1120
+ &:before {
1121
+ content: "\e181";
1122
+ }
1123
+ }
1124
+
1125
+ .glyphicon-earphone {
1126
+ &:before {
1127
+ content: "\e182";
1128
+ }
1129
+ }
1130
+
1131
+ .glyphicon-phone-alt {
1132
+ &:before {
1133
+ content: "\e183";
1134
+ }
1135
+ }
1136
+
1137
+ .glyphicon-tower {
1138
+ &:before {
1139
+ content: "\e184";
1140
+ }
1141
+ }
1142
+
1143
+ .glyphicon-stats {
1144
+ &:before {
1145
+ content: "\e185";
1146
+ }
1147
+ }
1148
+
1149
+ .glyphicon-sd-video {
1150
+ &:before {
1151
+ content: "\e186";
1152
+ }
1153
+ }
1154
+
1155
+ .glyphicon-hd-video {
1156
+ &:before {
1157
+ content: "\e187";
1158
+ }
1159
+ }
1160
+
1161
+ .glyphicon-subtitles {
1162
+ &:before {
1163
+ content: "\e188";
1164
+ }
1165
+ }
1166
+
1167
+ .glyphicon-sound-stereo {
1168
+ &:before {
1169
+ content: "\e189";
1170
+ }
1171
+ }
1172
+
1173
+ .glyphicon-sound-dolby {
1174
+ &:before {
1175
+ content: "\e190";
1176
+ }
1177
+ }
1178
+
1179
+ .glyphicon-sound-5-1 {
1180
+ &:before {
1181
+ content: "\e191";
1182
+ }
1183
+ }
1184
+
1185
+ .glyphicon-sound-6-1 {
1186
+ &:before {
1187
+ content: "\e192";
1188
+ }
1189
+ }
1190
+
1191
+ .glyphicon-sound-7-1 {
1192
+ &:before {
1193
+ content: "\e193";
1194
+ }
1195
+ }
1196
+
1197
+ .glyphicon-copyright-mark {
1198
+ &:before {
1199
+ content: "\e194";
1200
+ }
1201
+ }
1202
+
1203
+ .glyphicon-registration-mark {
1204
+ &:before {
1205
+ content: "\e195";
1206
+ }
1207
+ }
1208
+
1209
+ .glyphicon-cloud-download {
1210
+ &:before {
1211
+ content: "\e197";
1212
+ }
1213
+ }
1214
+
1215
+ .glyphicon-cloud-upload {
1216
+ &:before {
1217
+ content: "\e198";
1218
+ }
1219
+ }
1220
+
1221
+ .glyphicon-tree-conifer {
1222
+ &:before {
1223
+ content: "\e199";
1224
+ }
1225
+ }
1226
+
1227
+ .glyphicon-tree-deciduous {
1228
+ &:before {
1229
+ content: "\e200";
1230
+ }
1231
+ }
1232
+
1233
+ .glyphicon-cd {
1234
+ &:before {
1235
+ content: "\e201";
1236
+ }
1237
+ }
1238
+
1239
+ .glyphicon-save-file {
1240
+ &:before {
1241
+ content: "\e202";
1242
+ }
1243
+ }
1244
+
1245
+ .glyphicon-open-file {
1246
+ &:before {
1247
+ content: "\e203";
1248
+ }
1249
+ }
1250
+
1251
+ .glyphicon-level-up {
1252
+ &:before {
1253
+ content: "\e204";
1254
+ }
1255
+ }
1256
+
1257
+ .glyphicon-copy {
1258
+ &:before {
1259
+ content: "\e205";
1260
+ }
1261
+ }
1262
+
1263
+ .glyphicon-paste {
1264
+ &:before {
1265
+ content: "\e206";
1266
+ }
1267
+ }
1268
+
1269
+ // The following 2 Glyphicons are omitted for the time being because
1270
+ // they currently use Unicode codepoints that are outside the
1271
+ // Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle
1272
+ // non-BMP codepoints in CSS string escapes, and thus can't display these two icons.
1273
+ // Notably, the bug affects some older versions of the Android Browser.
1274
+ // More info: https://github.com/twbs/bootstrap/issues/10106
1275
+ // .glyphicon-door { &:before { content: "\1f6aa"; } }
1276
+ // .glyphicon-key { &:before { content: "\1f511"; } }
1277
+ .glyphicon-alert {
1278
+ &:before {
1279
+ content: "\e209";
1280
+ }
1281
+ }
1282
+
1283
+ .glyphicon-equalizer {
1284
+ &:before {
1285
+ content: "\e210";
1286
+ }
1287
+ }
1288
+
1289
+ .glyphicon-king {
1290
+ &:before {
1291
+ content: "\e211";
1292
+ }
1293
+ }
1294
+
1295
+ .glyphicon-queen {
1296
+ &:before {
1297
+ content: "\e212";
1298
+ }
1299
+ }
1300
+
1301
+ .glyphicon-pawn {
1302
+ &:before {
1303
+ content: "\e213";
1304
+ }
1305
+ }
1306
+
1307
+ .glyphicon-bishop {
1308
+ &:before {
1309
+ content: "\e214";
1310
+ }
1311
+ }
1312
+
1313
+ .glyphicon-knight {
1314
+ &:before {
1315
+ content: "\e215";
1316
+ }
1317
+ }
1318
+
1319
+ .glyphicon-baby-formula {
1320
+ &:before {
1321
+ content: "\e216";
1322
+ }
1323
+ }
1324
+
1325
+ .glyphicon-tent {
1326
+ &:before {
1327
+ content: "\26fa";
1328
+ }
1329
+ }
1330
+
1331
+ .glyphicon-blackboard {
1332
+ &:before {
1333
+ content: "\e218";
1334
+ }
1335
+ }
1336
+
1337
+ .glyphicon-bed {
1338
+ &:before {
1339
+ content: "\e219";
1340
+ }
1341
+ }
1342
+
1343
+ .glyphicon-apple {
1344
+ &:before {
1345
+ content: "\f8ff";
1346
+ }
1347
+ }
1348
+
1349
+ .glyphicon-erase {
1350
+ &:before {
1351
+ content: "\e221";
1352
+ }
1353
+ }
1354
+
1355
+ .glyphicon-hourglass {
1356
+ &:before {
1357
+ content: "\231b";
1358
+ }
1359
+ }
1360
+
1361
+ .glyphicon-lamp {
1362
+ &:before {
1363
+ content: "\e223";
1364
+ }
1365
+ }
1366
+
1367
+ .glyphicon-duplicate {
1368
+ &:before {
1369
+ content: "\e224";
1370
+ }
1371
+ }
1372
+
1373
+ .glyphicon-piggy-bank {
1374
+ &:before {
1375
+ content: "\e225";
1376
+ }
1377
+ }
1378
+
1379
+ .glyphicon-scissors {
1380
+ &:before {
1381
+ content: "\e226";
1382
+ }
1383
+ }
1384
+
1385
+ .glyphicon-bitcoin {
1386
+ &:before {
1387
+ content: "\e227";
1388
+ }
1389
+ }
1390
+
1391
+ .glyphicon-btc {
1392
+ &:before {
1393
+ content: "\e227";
1394
+ }
1395
+ }
1396
+
1397
+ .glyphicon-xbt {
1398
+ &:before {
1399
+ content: "\e227";
1400
+ }
1401
+ }
1402
+
1403
+ .glyphicon-yen {
1404
+ &:before {
1405
+ content: "\00a5";
1406
+ }
1407
+ }
1408
+
1409
+ .glyphicon-jpy {
1410
+ &:before {
1411
+ content: "\00a5";
1412
+ }
1413
+ }
1414
+
1415
+ .glyphicon-ruble {
1416
+ &:before {
1417
+ content: "\20bd";
1418
+ }
1419
+ }
1420
+
1421
+ .glyphicon-rub {
1422
+ &:before {
1423
+ content: "\20bd";
1424
+ }
1425
+ }
1426
+
1427
+ .glyphicon-scale {
1428
+ &:before {
1429
+ content: "\e230";
1430
+ }
1431
+ }
1432
+
1433
+ .glyphicon-ice-lolly {
1434
+ &:before {
1435
+ content: "\e231";
1436
+ }
1437
+ }
1438
+
1439
+ .glyphicon-ice-lolly-tasted {
1440
+ &:before {
1441
+ content: "\e232";
1442
+ }
1443
+ }
1444
+
1445
+ .glyphicon-education {
1446
+ &:before {
1447
+ content: "\e233";
1448
+ }
1449
+ }
1450
+
1451
+ .glyphicon-option-horizontal {
1452
+ &:before {
1453
+ content: "\e234";
1454
+ }
1455
+ }
1456
+
1457
+ .glyphicon-option-vertical {
1458
+ &:before {
1459
+ content: "\e235";
1460
+ }
1461
+ }
1462
+
1463
+ .glyphicon-menu-hamburger {
1464
+ &:before {
1465
+ content: "\e236";
1466
+ }
1467
+ }
1468
+
1469
+ .glyphicon-modal-window {
1470
+ &:before {
1471
+ content: "\e237";
1472
+ }
1473
+ }
1474
+
1475
+ .glyphicon-oil {
1476
+ &:before {
1477
+ content: "\e238";
1478
+ }
1479
+ }
1480
+
1481
+ .glyphicon-grain {
1482
+ &:before {
1483
+ content: "\e239";
1484
+ }
1485
+ }
1486
+
1487
+ .glyphicon-sunglasses {
1488
+ &:before {
1489
+ content: "\e240";
1490
+ }
1491
+ }
1492
+
1493
+ .glyphicon-text-size {
1494
+ &:before {
1495
+ content: "\e241";
1496
+ }
1497
+ }
1498
+
1499
+ .glyphicon-text-color {
1500
+ &:before {
1501
+ content: "\e242";
1502
+ }
1503
+ }
1504
+
1505
+ .glyphicon-text-background {
1506
+ &:before {
1507
+ content: "\e243";
1508
+ }
1509
+ }
1510
+
1511
+ .glyphicon-object-align-top {
1512
+ &:before {
1513
+ content: "\e244";
1514
+ }
1515
+ }
1516
+
1517
+ .glyphicon-object-align-bottom {
1518
+ &:before {
1519
+ content: "\e245";
1520
+ }
1521
+ }
1522
+
1523
+ .glyphicon-object-align-horizontal {
1524
+ &:before {
1525
+ content: "\e246";
1526
+ }
1527
+ }
1528
+
1529
+ .glyphicon-object-align-left {
1530
+ &:before {
1531
+ content: "\e247";
1532
+ }
1533
+ }
1534
+
1535
+ .glyphicon-object-align-vertical {
1536
+ &:before {
1537
+ content: "\e248";
1538
+ }
1539
+ }
1540
+
1541
+ .glyphicon-object-align-right {
1542
+ &:before {
1543
+ content: "\e249";
1544
+ }
1545
+ }
1546
+
1547
+ .glyphicon-triangle-right {
1548
+ &:before {
1549
+ content: "\e250";
1550
+ }
1551
+ }
1552
+
1553
+ .glyphicon-triangle-left {
1554
+ &:before {
1555
+ content: "\e251";
1556
+ }
1557
+ }
1558
+
1559
+ .glyphicon-triangle-bottom {
1560
+ &:before {
1561
+ content: "\e252";
1562
+ }
1563
+ }
1564
+
1565
+ .glyphicon-triangle-top {
1566
+ &:before {
1567
+ content: "\e253";
1568
+ }
1569
+ }
1570
+
1571
+ .glyphicon-console {
1572
+ &:before {
1573
+ content: "\e254";
1574
+ }
1575
+ }
1576
+
1577
+ .glyphicon-superscript {
1578
+ &:before {
1579
+ content: "\e255";
1580
+ }
1581
+ }
1582
+
1583
+ .glyphicon-subscript {
1584
+ &:before {
1585
+ content: "\e256";
1586
+ }
1587
+ }
1588
+
1589
+ .glyphicon-menu-left {
1590
+ &:before {
1591
+ content: "\e257";
1592
+ }
1593
+ }
1594
+
1595
+ .glyphicon-menu-right {
1596
+ &:before {
1597
+ content: "\e258";
1598
+ }
1599
+ }
1600
+
1601
+ .glyphicon-menu-down {
1602
+ &:before {
1603
+ content: "\e259";
1604
+ }
1605
+ }
1606
+
1607
+ .glyphicon-menu-up {
1608
+ &:before {
1609
+ content: "\e260";
1610
+ }
1611
+ }