adding space shuttle icon

This commit is contained in:
Dave Gandy 2014-04-26 14:46:07 -05:00
parent a19ef56257
commit 4eeccc897d
11 changed files with 1365 additions and 22 deletions

20
css/font-awesome.css vendored
View File

@ -6,8 +6,7 @@
* -------------------------- */ * -------------------------- */
@font-face { @font-face {
font-family: 'FontAwesome'; font-family: 'FontAwesome';
src: url('../fonts/fontawesome-webfont.eot?v=4.1.0'); src: url('../fonts/FontAwesome.otf') format('opentype');
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');
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }
@ -22,7 +21,7 @@
} }
/* makes the font 33% larger relative to the icon container */ /* makes the font 33% larger relative to the icon container */
.fa-lg { .fa-lg {
font-size: 1.3333333333333333em; font-size: 1.33333333em;
line-height: 0.75em; line-height: 0.75em;
vertical-align: -15%; vertical-align: -15%;
} }
@ -39,12 +38,12 @@
font-size: 5em; font-size: 5em;
} }
.fa-fw { .fa-fw {
width: 1.2857142857142858em; width: 1.28571429em;
text-align: center; text-align: center;
} }
.fa-ul { .fa-ul {
padding-left: 0; padding-left: 0;
margin-left: 2.142857142857143em; margin-left: 2.14285714em;
list-style-type: none; list-style-type: none;
} }
.fa-ul > li { .fa-ul > li {
@ -52,13 +51,13 @@
} }
.fa-li { .fa-li {
position: absolute; position: absolute;
left: -2.142857142857143em; left: -2.14285714em;
width: 2.142857142857143em; width: 2.14285714em;
top: 0.14285714285714285em; top: 0.14285714em;
text-align: center; text-align: center;
} }
.fa-li.fa-lg { .fa-li.fa-lg {
left: -1.8571428571428572em; left: -1.85714286em;
} }
.fa-border { .fa-border {
padding: .2em .25em .15em; padding: .2em .25em .15em;
@ -1330,3 +1329,6 @@
.fa-plus-square-o:before { .fa-plus-square-o:before {
content: "\f196"; content: "\f196";
} }
.fa-space-shuttle:before {
content: "\f197";
}

1332
css/font-awesome.min.css vendored

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -410,3 +410,4 @@
.@{fa-css-prefix}-turkish-lira:before, .@{fa-css-prefix}-turkish-lira:before,
.@{fa-css-prefix}-try:before { content: @fa-var-try; } .@{fa-css-prefix}-try:before { content: @fa-var-try; }
.@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; } .@{fa-css-prefix}-plus-square-o:before { content: @fa-var-plus-square-o; }
.@{fa-css-prefix}-space-shuttle:before { content: @fa-var-space-shuttle; }

View File

@ -3,12 +3,12 @@
@font-face { @font-face {
font-family: 'FontAwesome'; font-family: 'FontAwesome';
src: ~"url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}')"; // 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')", // 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.woff?v=@{fa-version}') format('woff')",
~"url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype')", // ~"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')"; // ~"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 src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }

View File

@ -378,4 +378,5 @@
@fa-var-vimeo-square: "\f194"; @fa-var-vimeo-square: "\f194";
@fa-var-try: "\f195"; @fa-var-try: "\f195";
@fa-var-plus-square-o: "\f196"; @fa-var-plus-square-o: "\f196";
@fa-var-space-shuttle: "\f197";

View File

@ -410,3 +410,4 @@
.#{$fa-css-prefix}-turkish-lira:before, .#{$fa-css-prefix}-turkish-lira:before,
.#{$fa-css-prefix}-try:before { content: $fa-var-try; } .#{$fa-css-prefix}-try:before { content: $fa-var-try; }
.#{$fa-css-prefix}-plus-square-o:before { content: $fa-var-plus-square-o; } .#{$fa-css-prefix}-plus-square-o:before { content: $fa-var-plus-square-o; }
.#{$fa-css-prefix}-space-shuttle:before { content: $fa-var-space-shuttle; }

View File

@ -378,4 +378,5 @@ $fa-var-wheelchair: "\f193";
$fa-var-vimeo-square: "\f194"; $fa-var-vimeo-square: "\f194";
$fa-var-try: "\f195"; $fa-var-try: "\f195";
$fa-var-plus-square-o: "\f196"; $fa-var-plus-square-o: "\f196";
$fa-var-space-shuttle: "\f197";

View File

@ -3,12 +3,12 @@
@font-face { @font-face {
font-family: 'FontAwesome'; font-family: 'FontAwesome';
src: ~"url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}')"; // 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')", // 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.woff?v=@{fa-version}') format('woff')",
~"url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype')", // ~"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')"; // ~"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 src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts
font-weight: normal; font-weight: normal;
font-style: normal; font-style: normal;
} }

View File

@ -2711,3 +2711,10 @@ icons:
categories: categories:
- Web Application Icons - Web Application Icons
- Form Control Icons - Form Control Icons
- name: Space Shuttle
id: space-shuttle
unicode: f197
created: 4.1
categories:
- Web Application Icons