-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
61 changed files
with
15,831 additions
and
1 deletion.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Bordered & Pulled | ||
// ------------------------- | ||
|
||
.@{fa-css-prefix}-border { | ||
padding: .2em .25em .15em; | ||
border: solid .08em @fa-border-color; | ||
border-radius: .1em; | ||
} | ||
|
||
.pull-right { float: right; } | ||
.pull-left { float: left; } | ||
|
||
.@{fa-css-prefix} { | ||
&.pull-left { margin-right: .3em; } | ||
&.pull-right { margin-left: .3em; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
// Base Class Definition | ||
// ------------------------- | ||
|
||
.@{fa-css-prefix} { | ||
display: inline-block; | ||
font-family: FontAwesome; | ||
font-style: normal; | ||
font-weight: normal; | ||
line-height: 1; | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
// Fixed Width Icons | ||
// ------------------------- | ||
.@{fa-css-prefix}-fw { | ||
width: (18em / 14); | ||
text-align: center; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
/*! | ||
* Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome | ||
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) | ||
*/ | ||
|
||
@import "variables.less"; | ||
@import "mixins.less"; | ||
@import "path.less"; | ||
@import "core.less"; | ||
@import "larger.less"; | ||
@import "fixed-width.less"; | ||
@import "list.less"; | ||
@import "bordered-pulled.less"; | ||
@import "spinning.less"; | ||
@import "rotated-flipped.less"; | ||
@import "stacked.less"; | ||
@import "icons.less"; |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// Icon Sizes | ||
// ------------------------- | ||
|
||
/* makes the font 33% larger relative to the icon container */ | ||
.@{fa-css-prefix}-lg { | ||
font-size: (4em / 3); | ||
line-height: (3em / 4); | ||
vertical-align: -15%; | ||
} | ||
.@{fa-css-prefix}-2x { font-size: 2em; } | ||
.@{fa-css-prefix}-3x { font-size: 3em; } | ||
.@{fa-css-prefix}-4x { font-size: 4em; } | ||
.@{fa-css-prefix}-5x { font-size: 5em; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// List Icons | ||
// ------------------------- | ||
|
||
.@{fa-css-prefix}-ul { | ||
padding-left: 0; | ||
margin-left: @fa-li-width; | ||
list-style-type: none; | ||
> li { position: relative; } | ||
} | ||
.@{fa-css-prefix}-li { | ||
position: absolute; | ||
left: -@fa-li-width; | ||
width: @fa-li-width; | ||
top: (2em / 14); | ||
text-align: center; | ||
&.@{fa-css-prefix}-lg { | ||
left: -@fa-li-width + (4em / 14); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Mixins | ||
// -------------------------- | ||
|
||
.fa-icon-rotate(@degrees, @rotation) { | ||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation); | ||
-webkit-transform: rotate(@degrees); | ||
-moz-transform: rotate(@degrees); | ||
-ms-transform: rotate(@degrees); | ||
-o-transform: rotate(@degrees); | ||
transform: rotate(@degrees); | ||
} | ||
|
||
.fa-icon-flip(@horiz, @vert, @rotation) { | ||
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=@rotation, mirror=1); | ||
-webkit-transform: scale(@horiz, @vert); | ||
-moz-transform: scale(@horiz, @vert); | ||
-ms-transform: scale(@horiz, @vert); | ||
-o-transform: scale(@horiz, @vert); | ||
transform: scale(@horiz, @vert); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/* FONT PATH | ||
* -------------------------- */ | ||
|
||
@font-face { | ||
font-family: 'FontAwesome'; | ||
src: ~"url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}')"; | ||
src: ~"url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype')", | ||
~"url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff')", | ||
~"url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype')", | ||
~"url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg')"; | ||
// src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts | ||
font-weight: normal; | ||
font-style: normal; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
// Rotated & Flipped Icons | ||
// ------------------------- | ||
|
||
.@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } | ||
.@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } | ||
.@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } | ||
|
||
.@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } | ||
.@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// Spinning Icons | ||
// -------------------------- | ||
|
||
.@{fa-css-prefix}-spin { | ||
-webkit-animation: spin 2s infinite linear; | ||
-moz-animation: spin 2s infinite linear; | ||
-o-animation: spin 2s infinite linear; | ||
animation: spin 2s infinite linear; | ||
} | ||
|
||
@-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); } | ||
} | ||
@keyframes spin { | ||
0% { | ||
-webkit-transform: rotate(0deg); | ||
transform: rotate(0deg); | ||
} | ||
100% { | ||
-webkit-transform: rotate(359deg); | ||
transform: rotate(359deg); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
// Stacked Icons | ||
// ------------------------- | ||
|
||
.@{fa-css-prefix}-stack { | ||
position: relative; | ||
display: inline-block; | ||
width: 2em; | ||
height: 2em; | ||
line-height: 2em; | ||
vertical-align: middle; | ||
} | ||
.@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { | ||
position: absolute; | ||
left: 0; | ||
width: 100%; | ||
text-align: center; | ||
} | ||
.@{fa-css-prefix}-stack-1x { line-height: inherit; } | ||
.@{fa-css-prefix}-stack-2x { font-size: 2em; } | ||
.@{fa-css-prefix}-inverse { color: @fa-inverse; } |
Oops, something went wrong.