Skip to content

Commit

Permalink
PT-95 Favorites Icon (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
ckorbel authored Nov 11, 2019
1 parent d28e11d commit 5e6dd83
Show file tree
Hide file tree
Showing 13 changed files with 54 additions and 7 deletions.
2 changes: 2 additions & 0 deletions dist/fonts/fender-icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified dist/fonts/fender-icons.ttf
Binary file not shown.
Binary file modified dist/fonts/fender-icons.woff
Binary file not shown.
4 changes: 3 additions & 1 deletion dist/icon-library.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
@font-face { font-family: 'fender-icons'; src: url( 'fonts/fender-icons.ttf?iimz8o' ) format( 'truetype' ), url( 'fonts/fender-icons.woff?iimz8o' ) format( 'woff' ), url( 'fonts/fender-icons.svg?iimz8o#fender-icons' ) format( 'svg' ); font-weight: normal; font-style: normal; }
@font-face { font-family: 'fender-icons'; src: url( 'fonts/fender-icons.ttf?oust5v' ) format( 'truetype' ), url( 'fonts/fender-icons.woff?oust5v' ) format( 'woff' ), url( 'fonts/fender-icons.svg?oust5v#fender-icons' ) format( 'svg' ); font-weight: normal; font-style: normal; font-display: block; }
[class^="icon-"], [class*=" icon-"] {/* use !important to prevent issues with browser extensions that change fonts */ font-family: 'fender-icons' !important; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.icon-heart:before { content: "\e999"; color: #888; }
.icon-heart-filled:before { content: "\e99a"; color: #d52b1e; }
.icon-megaphone-fill:before { content: "\e997"; }
.icon-megaphone:before { content: "\e998"; }
.icon-count-in-text:before { content: "\e996"; }
Expand Down
4 changes: 3 additions & 1 deletion dist/icon-library.min.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
@font-face { font-family: 'fender-icons'; src: url( 'fonts/fender-icons.ttf?iimz8o' ) format( 'truetype' ), url( 'fonts/fender-icons.woff?iimz8o' ) format( 'woff' ), url( 'fonts/fender-icons.svg?iimz8o#fender-icons' ) format( 'svg' ); font-weight: normal; font-style: normal; }
@font-face { font-family: 'fender-icons'; src: url( 'fonts/fender-icons.ttf?oust5v' ) format( 'truetype' ), url( 'fonts/fender-icons.woff?oust5v' ) format( 'woff' ), url( 'fonts/fender-icons.svg?oust5v#fender-icons' ) format( 'svg' ); font-weight: normal; font-style: normal; font-display: block; }
[class^="icon-"], [class*=" icon-"] {/* use !important to prevent issues with browser extensions that change fonts */ font-family: 'fender-icons' !important; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.icon-heart:before { content: "\e999"; color: #888; }
.icon-heart-filled:before { content: "\e99a"; color: #d52b1e; }
.icon-megaphone-fill:before { content: "\e997"; }
.icon-megaphone:before { content: "\e998"; }
.icon-count-in-text:before { content: "\e996"; }
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion selection.json

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions src-icons/heart-filled.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions src-icons/heart.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/fonts/fender-icons.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified src/fonts/fender-icons.ttf
Binary file not shown.
Binary file modified src/fonts/fender-icons.woff
Binary file not shown.
15 changes: 12 additions & 3 deletions src/style.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
@font-face {
font-family: 'fender-icons';
src:
url('fonts/fender-icons.ttf?iimz8o') format('truetype'),
url('fonts/fender-icons.woff?iimz8o') format('woff'),
url('fonts/fender-icons.svg?iimz8o#fender-icons') format('svg');
url('fonts/fender-icons.ttf?oust5v') format('truetype'),
url('fonts/fender-icons.woff?oust5v') format('woff'),
url('fonts/fender-icons.svg?oust5v#fender-icons') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
Expand All @@ -23,6 +24,14 @@
-moz-osx-font-smoothing: grayscale;
}

.icon-heart:before {
content: "\e999";
color: #888;
}
.icon-heart-filled:before {
content: "\e99a";
color: #d52b1e;
}
.icon-megaphone-fill:before {
content: "\e997";
}
Expand Down

0 comments on commit 5e6dd83

Please sign in to comment.