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.
82 lines
1.8 KiB
82 lines
1.8 KiB
/*! |
|
* Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome |
|
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) |
|
*/ |
|
/* FONT PATH |
|
* -------------------------- */ |
|
@font-face { |
|
font-family: 'FontAwesome'; |
|
src: url('../fonts/fontawesome-webfont.eot?v=4.0.3'); |
|
src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg'); |
|
font-weight: normal; |
|
font-style: normal; |
|
} |
|
.fa { |
|
display: inline-block; |
|
font-family: FontAwesome; |
|
font-style: normal; |
|
font-weight: normal; |
|
line-height: 1; |
|
-webkit-font-smoothing: antialiased; |
|
-moz-osx-font-smoothing: grayscale; |
|
} |
|
/* makes the font 33% larger relative to the icon container */ |
|
|
|
.fa-ul > li { |
|
position: relative; |
|
} |
|
|
|
.pull-left { |
|
float: left; |
|
} |
|
.fa.pull-left { |
|
margin-right: .3em; |
|
} |
|
|
|
@-moz-keyframes spin { |
|
0% { |
|
-moz-transform: rotate(0deg); |
|
} |
|
100% { |
|
-moz-transform: rotate(359deg); |
|
} |
|
} |
|
@-webkit-keyframes spin { |
|
0% { |
|
-webkit-transform: rotate(0deg); |
|
} |
|
100% { |
|
-webkit-transform: rotate(359deg); |
|
} |
|
} |
|
@-o-keyframes spin { |
|
0% { |
|
-o-transform: rotate(0deg); |
|
} |
|
100% { |
|
-o-transform: rotate(359deg); |
|
} |
|
} |
|
@-ms-keyframes spin { |
|
0% { |
|
-ms-transform: rotate(0deg); |
|
} |
|
100% { |
|
-ms-transform: rotate(359deg); |
|
} |
|
} |
|
@keyframes spin { |
|
0% { |
|
transform: rotate(0deg); |
|
} |
|
100% { |
|
transform: rotate(359deg); |
|
} |
|
} |
|
|
|
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen |
|
readers do not read off random characters that represent icons */ |
|
|
|
.fa-check:before { |
|
content: "\f00c"; |
|
}
|
|
|