|
1 | 1 | /*!
|
2 |
| - * Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome |
| 2 | + * Font Awesome 4.2.0 by @davegandy - http://fontawesome.io - @fontawesome |
3 | 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
|
4 | 4 | */
|
5 | 5 | /* FONT PATH
|
6 | 6 | * -------------------------- */
|
7 | 7 | @font-face {
|
8 | 8 | font-family: 'FontAwesome';
|
9 |
| - src: url('../fonts/fontawesome-webfont.eot?v=4.1.0'); |
10 |
| - src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg'); |
| 9 | + src: url('../fonts/fontawesome-webfont.eot?v=4.2.0'); |
| 10 | + src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg'); |
11 | 11 | font-weight: normal;
|
12 | 12 | font-style: normal;
|
13 | 13 | }
|
14 | 14 | .fa {
|
15 | 15 | display: inline-block;
|
16 |
| - font-family: FontAwesome; |
17 |
| - font-style: normal; |
18 |
| - font-weight: normal; |
19 |
| - line-height: 1; |
| 16 | + font: normal normal normal 14px/1 FontAwesome; |
| 17 | + font-size: inherit; |
| 18 | + text-rendering: auto; |
20 | 19 | -webkit-font-smoothing: antialiased;
|
21 | 20 | -moz-osx-font-smoothing: grayscale;
|
22 | 21 | }
|
|
78 | 77 | margin-left: .3em;
|
79 | 78 | }
|
80 | 79 | .fa-spin {
|
81 |
| - -webkit-animation: spin 2s infinite linear; |
82 |
| - -moz-animation: spin 2s infinite linear; |
83 |
| - -o-animation: spin 2s infinite linear; |
84 |
| - animation: spin 2s infinite linear; |
85 |
| -} |
86 |
| -@-moz-keyframes spin { |
87 |
| - 0% { |
88 |
| - -moz-transform: rotate(0deg); |
89 |
| - } |
90 |
| - 100% { |
91 |
| - -moz-transform: rotate(359deg); |
92 |
| - } |
| 80 | + -webkit-animation: fa-spin 2s infinite linear; |
| 81 | + animation: fa-spin 2s infinite linear; |
93 | 82 | }
|
94 |
| -@-webkit-keyframes spin { |
| 83 | +@-webkit-keyframes fa-spin { |
95 | 84 | 0% {
|
96 | 85 | -webkit-transform: rotate(0deg);
|
| 86 | + transform: rotate(0deg); |
97 | 87 | }
|
98 | 88 | 100% {
|
99 | 89 | -webkit-transform: rotate(359deg);
|
| 90 | + transform: rotate(359deg); |
100 | 91 | }
|
101 | 92 | }
|
102 |
| -@-o-keyframes spin { |
103 |
| - 0% { |
104 |
| - -o-transform: rotate(0deg); |
105 |
| - } |
106 |
| - 100% { |
107 |
| - -o-transform: rotate(359deg); |
108 |
| - } |
109 |
| -} |
110 |
| -@keyframes spin { |
| 93 | +@keyframes fa-spin { |
111 | 94 | 0% {
|
112 | 95 | -webkit-transform: rotate(0deg);
|
113 | 96 | transform: rotate(0deg);
|
|
120 | 103 | .fa-rotate-90 {
|
121 | 104 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
|
122 | 105 | -webkit-transform: rotate(90deg);
|
123 |
| - -moz-transform: rotate(90deg); |
124 | 106 | -ms-transform: rotate(90deg);
|
125 |
| - -o-transform: rotate(90deg); |
126 | 107 | transform: rotate(90deg);
|
127 | 108 | }
|
128 | 109 | .fa-rotate-180 {
|
129 | 110 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
|
130 | 111 | -webkit-transform: rotate(180deg);
|
131 |
| - -moz-transform: rotate(180deg); |
132 | 112 | -ms-transform: rotate(180deg);
|
133 |
| - -o-transform: rotate(180deg); |
134 | 113 | transform: rotate(180deg);
|
135 | 114 | }
|
136 | 115 | .fa-rotate-270 {
|
137 | 116 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
|
138 | 117 | -webkit-transform: rotate(270deg);
|
139 |
| - -moz-transform: rotate(270deg); |
140 | 118 | -ms-transform: rotate(270deg);
|
141 |
| - -o-transform: rotate(270deg); |
142 | 119 | transform: rotate(270deg);
|
143 | 120 | }
|
144 | 121 | .fa-flip-horizontal {
|
145 | 122 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
|
146 | 123 | -webkit-transform: scale(-1, 1);
|
147 |
| - -moz-transform: scale(-1, 1); |
148 | 124 | -ms-transform: scale(-1, 1);
|
149 |
| - -o-transform: scale(-1, 1); |
150 | 125 | transform: scale(-1, 1);
|
151 | 126 | }
|
152 | 127 | .fa-flip-vertical {
|
153 | 128 | filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
|
154 | 129 | -webkit-transform: scale(1, -1);
|
155 |
| - -moz-transform: scale(1, -1); |
156 | 130 | -ms-transform: scale(1, -1);
|
157 |
| - -o-transform: scale(1, -1); |
158 | 131 | transform: scale(1, -1);
|
159 | 132 | }
|
| 133 | +:root .fa-rotate-90, |
| 134 | +:root .fa-rotate-180, |
| 135 | +:root .fa-rotate-270, |
| 136 | +:root .fa-flip-horizontal, |
| 137 | +:root .fa-flip-vertical { |
| 138 | + filter: none; |
| 139 | +} |
160 | 140 | .fa-stack {
|
161 | 141 | position: relative;
|
162 | 142 | display: inline-block;
|
|
222 | 202 | .fa-check:before {
|
223 | 203 | content: "\f00c";
|
224 | 204 | }
|
| 205 | +.fa-remove:before, |
| 206 | +.fa-close:before, |
225 | 207 | .fa-times:before {
|
226 | 208 | content: "\f00d";
|
227 | 209 | }
|
|
551 | 533 | .fa-arrows-h:before {
|
552 | 534 | content: "\f07e";
|
553 | 535 | }
|
554 |
| -.fa-bar-chart-o:before { |
| 536 | +.fa-bar-chart-o:before, |
| 537 | +.fa-bar-chart:before { |
555 | 538 | content: "\f080";
|
556 | 539 | }
|
557 | 540 | .fa-twitter-square:before {
|
|
1380 | 1363 | .fa-digg:before {
|
1381 | 1364 | content: "\f1a6";
|
1382 | 1365 | }
|
1383 |
| -.fa-pied-piper-square:before, |
1384 | 1366 | .fa-pied-piper:before {
|
1385 | 1367 | content: "\f1a7";
|
1386 | 1368 | }
|
|
1497 | 1479 | content: "\f1cc";
|
1498 | 1480 | }
|
1499 | 1481 | .fa-life-bouy:before,
|
| 1482 | +.fa-life-buoy:before, |
1500 | 1483 | .fa-life-saver:before,
|
1501 | 1484 | .fa-support:before,
|
1502 | 1485 | .fa-life-ring:before {
|
|
1564 | 1547 | .fa-bomb:before {
|
1565 | 1548 | content: "\f1e2";
|
1566 | 1549 | }
|
| 1550 | +.fa-soccer-ball-o:before, |
| 1551 | +.fa-futbol-o:before { |
| 1552 | + content: "\f1e3"; |
| 1553 | +} |
| 1554 | +.fa-tty:before { |
| 1555 | + content: "\f1e4"; |
| 1556 | +} |
| 1557 | +.fa-binoculars:before { |
| 1558 | + content: "\f1e5"; |
| 1559 | +} |
| 1560 | +.fa-plug:before { |
| 1561 | + content: "\f1e6"; |
| 1562 | +} |
| 1563 | +.fa-slideshare:before { |
| 1564 | + content: "\f1e7"; |
| 1565 | +} |
| 1566 | +.fa-twitch:before { |
| 1567 | + content: "\f1e8"; |
| 1568 | +} |
| 1569 | +.fa-yelp:before { |
| 1570 | + content: "\f1e9"; |
| 1571 | +} |
| 1572 | +.fa-newspaper-o:before { |
| 1573 | + content: "\f1ea"; |
| 1574 | +} |
| 1575 | +.fa-wifi:before { |
| 1576 | + content: "\f1eb"; |
| 1577 | +} |
| 1578 | +.fa-calculator:before { |
| 1579 | + content: "\f1ec"; |
| 1580 | +} |
| 1581 | +.fa-paypal:before { |
| 1582 | + content: "\f1ed"; |
| 1583 | +} |
| 1584 | +.fa-google-wallet:before { |
| 1585 | + content: "\f1ee"; |
| 1586 | +} |
| 1587 | +.fa-cc-visa:before { |
| 1588 | + content: "\f1f0"; |
| 1589 | +} |
| 1590 | +.fa-cc-mastercard:before { |
| 1591 | + content: "\f1f1"; |
| 1592 | +} |
| 1593 | +.fa-cc-discover:before { |
| 1594 | + content: "\f1f2"; |
| 1595 | +} |
| 1596 | +.fa-cc-amex:before { |
| 1597 | + content: "\f1f3"; |
| 1598 | +} |
| 1599 | +.fa-cc-paypal:before { |
| 1600 | + content: "\f1f4"; |
| 1601 | +} |
| 1602 | +.fa-cc-stripe:before { |
| 1603 | + content: "\f1f5"; |
| 1604 | +} |
| 1605 | +.fa-bell-slash:before { |
| 1606 | + content: "\f1f6"; |
| 1607 | +} |
| 1608 | +.fa-bell-slash-o:before { |
| 1609 | + content: "\f1f7"; |
| 1610 | +} |
| 1611 | +.fa-trash:before { |
| 1612 | + content: "\f1f8"; |
| 1613 | +} |
| 1614 | +.fa-copyright:before { |
| 1615 | + content: "\f1f9"; |
| 1616 | +} |
| 1617 | +.fa-at:before { |
| 1618 | + content: "\f1fa"; |
| 1619 | +} |
| 1620 | +.fa-eyedropper:before { |
| 1621 | + content: "\f1fb"; |
| 1622 | +} |
| 1623 | +.fa-paint-brush:before { |
| 1624 | + content: "\f1fc"; |
| 1625 | +} |
| 1626 | +.fa-birthday-cake:before { |
| 1627 | + content: "\f1fd"; |
| 1628 | +} |
| 1629 | +.fa-area-chart:before { |
| 1630 | + content: "\f1fe"; |
| 1631 | +} |
| 1632 | +.fa-pie-chart:before { |
| 1633 | + content: "\f200"; |
| 1634 | +} |
| 1635 | +.fa-line-chart:before { |
| 1636 | + content: "\f201"; |
| 1637 | +} |
| 1638 | +.fa-lastfm:before { |
| 1639 | + content: "\f202"; |
| 1640 | +} |
| 1641 | +.fa-lastfm-square:before { |
| 1642 | + content: "\f203"; |
| 1643 | +} |
| 1644 | +.fa-toggle-off:before { |
| 1645 | + content: "\f204"; |
| 1646 | +} |
| 1647 | +.fa-toggle-on:before { |
| 1648 | + content: "\f205"; |
| 1649 | +} |
| 1650 | +.fa-bicycle:before { |
| 1651 | + content: "\f206"; |
| 1652 | +} |
| 1653 | +.fa-bus:before { |
| 1654 | + content: "\f207"; |
| 1655 | +} |
| 1656 | +.fa-ioxhost:before { |
| 1657 | + content: "\f208"; |
| 1658 | +} |
| 1659 | +.fa-angellist:before { |
| 1660 | + content: "\f209"; |
| 1661 | +} |
| 1662 | +.fa-cc:before { |
| 1663 | + content: "\f20a"; |
| 1664 | +} |
| 1665 | +.fa-shekel:before, |
| 1666 | +.fa-sheqel:before, |
| 1667 | +.fa-ils:before { |
| 1668 | + content: "\f20b"; |
| 1669 | +} |
| 1670 | +.fa-meanpath:before { |
| 1671 | + content: "\f20c"; |
| 1672 | +} |
0 commit comments