You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

137 lines
2.3 KiB

  1. /*!
  2. * Font Awesome 4 by @davegandy - http://fontawesome.io - @fontawesome
  3. * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
  4. */
  5. /* makes the font 33% larger relative to the icon container */
  6. .fa-lg {
  7. font-size: 1.33333333em;
  8. line-height: 0.75em;
  9. vertical-align: -15% !important;
  10. }
  11. .fa-2x {
  12. font-size: 2em;
  13. }
  14. .fa-3x {
  15. font-size: 3em;
  16. }
  17. .fa-4x {
  18. font-size: 4em;
  19. }
  20. .fa-5x {
  21. font-size: 5em;
  22. }
  23. .fa-6x {
  24. font-size: 6em;
  25. }
  26. .fa-7x {
  27. font-size: 7em;
  28. }
  29. .fa-8x {
  30. font-size: 8em;
  31. }
  32. .fa-9x {
  33. font-size: 9em;
  34. }
  35. .fa-10x {
  36. font-size: 10em;
  37. }
  38. .fa-fw {
  39. width: 1.28571429em;
  40. text-align: center;
  41. }
  42. .fa-ul {
  43. padding-left: 0;
  44. margin-left: 2.14285714em;
  45. list-style-type: none;
  46. }
  47. .fa-ul > li {
  48. position: relative;
  49. }
  50. .fa-li {
  51. position: absolute;
  52. left: -2.14285714em;
  53. width: 2.14285714em;
  54. top: 0.14285714em;
  55. text-align: center;
  56. }
  57. .fa-li.fa-lg {
  58. left: -1.85714286em;
  59. }
  60. .fa-border {
  61. padding: .2em .25em .15em;
  62. border: solid 0.08em #eee;
  63. border-radius: .1em;
  64. }
  65. .fa-pull-left {
  66. float: left;
  67. }
  68. .fa-pull-right {
  69. float: right;
  70. }
  71. .fa.fa-pull-left {
  72. margin-right: .3em;
  73. }
  74. .fa.fa-pull-right {
  75. margin-left: .3em;
  76. }
  77. .fa.pull-left {
  78. margin-right: .3em;
  79. }
  80. .fa.pull-right {
  81. margin-left: .3em;
  82. }
  83. .fa-spin {
  84. -webkit-animation: fa-spin 2s infinite linear;
  85. animation: fa-spin 2s infinite linear;
  86. }
  87. .fa-pulse {
  88. -webkit-animation: fa-spin 1s infinite steps(8);
  89. animation: fa-spin 1s infinite steps(8);
  90. }
  91. @-webkit-keyframes fa-spin {
  92. 0% {
  93. -webkit-transform: rotate(0deg);
  94. transform: rotate(0deg);
  95. }
  96. 100% {
  97. -webkit-transform: rotate(359deg);
  98. transform: rotate(359deg);
  99. }
  100. }
  101. @keyframes fa-spin {
  102. 0% {
  103. -webkit-transform: rotate(0deg);
  104. transform: rotate(0deg);
  105. }
  106. 100% {
  107. -webkit-transform: rotate(359deg);
  108. transform: rotate(359deg);
  109. }
  110. }
  111. .fa-stack {
  112. position: relative;
  113. display: inline-block;
  114. width: 2em;
  115. height: 2em;
  116. line-height: 2em;
  117. vertical-align: middle !important;
  118. }
  119. .fa-stack-1x,
  120. .fa-stack-2x {
  121. position: absolute;
  122. left: 0;
  123. width: 100%;
  124. text-align: center;
  125. top: 50%;
  126. margin-top: -0.5em;
  127. }
  128. .fa-stack-1x {
  129. line-height: inherit;
  130. }
  131. .fa-stack-2x {
  132. font-size: 2em;
  133. }
  134. .fa-inverse {
  135. color: #fff;
  136. }