Adding the fantasy card symbol from The Duelist Extra Pulled column

This commit is contained in:
Andrew Gioia 2018-01-07 15:26:59 -05:00
parent f1acd07b99
commit 2371e4a657
13 changed files with 896 additions and 8 deletions

View File

@ -1,4 +1,4 @@
# Keyrune v3.1.6
# Keyrune v3.1.7
## The Magic: the Gathering set symbol font!
@ -60,6 +60,7 @@ Attribution is **greatly appreciated** but not required!
## Changelog
* v3.1.7 - Added the symbol used in The Duelist's "Extra Pulled" fantasy card column (issue 58)
* v3.1.6 - Added FTV: Transform and HasCon 2017 promo symbols
* v3.1.5 - Updated IMA and C17 with official hi-res versions; added FNM as an unofficial symbol (pFNM) and the heart symbol on Phoenix Heart (pHEART)
* v3.1.4 - New icons for Iconic Masters (IMA), Commander 2017 (C17), and Merfolk vs. Goblins (DDT), based on low-res version from Coming Soon

View File

@ -1,7 +1,7 @@
{
"name": "keyrune",
"homepage": "http://andrewgioia.github.io/Keyrune",
"version": "3.1.6",
"version": "3.1.7",
"authors": [
"Andrew Gioia <andrewgioia@gmail.com>"
],

View File

@ -2,8 +2,8 @@
* Global */
@font-face {
font-family: 'Keyrune';
src: url('../fonts/keyrune.eot?v=3.1.6');
src: url('../fonts/keyrune.eot?#iefix&v=3.1.6') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.1.6') format('woff2'), url('../fonts/keyrune.woff?v=3.1.6') format('woff'), url('../fonts/keyrune.ttf?v=3.1.6') format('truetype'), url('../fonts/keyrune.svg?v=3.1.6#keyrune') format('svg');
src: url('../fonts/keyrune.eot?v=3.1.7');
src: url('../fonts/keyrune.eot?#iefix&v=3.1.7') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.1.7') format('woff2'), url('../fonts/keyrune.woff?v=3.1.7') format('woff'), url('../fonts/keyrune.ttf?v=3.1.7') format('truetype'), url('../fonts/keyrune.svg?v=3.1.7#keyrune') format('svg');
font-weight: normal;
font-style: normal;
}
@ -762,6 +762,9 @@
.ss-h17:before {
content: "\e938";
}
.ss-pdep:before {
content: "\e93a";
}
/**
* Online */
.ss-med:before {

883
css/keyrune.min.css vendored

File diff suppressed because one or more lines are too long

Binary file not shown.

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 374 KiB

After

Width:  |  Height:  |  Size: 376 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -257,6 +257,7 @@
.@{ss-prefix}-pdrc:before { content: "\e932"; } // Dragon*Con promo
.@{ss-prefix}-pheart:before { content: "\e936"; } // Phoenix Heart celebration
.@{ss-prefix}-h17:before { content: "\e938"; } // HasCon 2017
.@{ss-prefix}-pdep:before { content: "\e93a"; } // Duelist Extra Pulled
/**
* Online */

View File

@ -2,6 +2,6 @@
* Global */
@ss-font-path: '../fonts';
@ss-version: '3.1.6';
@ss-version: '3.1.7';
@ss-font-size-base: 14px;
@ss-prefix: ss;

View File

@ -1,7 +1,7 @@
{
"name": "keyrune",
"description": "Keyrune",
"version": "3.1.6",
"version": "3.1.7",
"author": {
"name": "Andrew Gioia",
"email": "andrewgioia@gmail.com",

View File

@ -1,7 +1,7 @@
// _variables.scss
// #.
$keyrune_version: '3.1.6' !default;
$keyrune_version: '3.1.7' !default;
$keyrune_font_path: '../fonts' !default;
// #. Keyrune Font ==============================
@ -295,6 +295,7 @@ $mtg_setlist: (
("Dragon*Con Promo", 'pdrc', "\e932"),
("Phoenix Heart Celebration", 'pheart', "\e936"),
("HasCon 2017", 'h17', "\e938"),
("Duelist Extra Pulled", 'pdep', "\e93a"),
// # Online Only
("Masters Edition", 'med', "\e68d"),
("Masters Edition II", 'me2', "\e68e"),