Adding unofficial WAR and MH1 symbols, alias for GK2

This commit is contained in:
Andrew Gioia 2019-04-01 14:14:48 -04:00
parent bad3bb1674
commit f3cb376510
13 changed files with 28 additions and 12 deletions

View File

@ -1,4 +1,4 @@
# Keyrune v3.3.3
# Keyrune v3.4.0
## The Magic: the Gathering set symbol font!
@ -54,6 +54,7 @@ All set symbol images are trademarks of Wizards of the Coast ([http://magicthega
## Changelog
* v3.4.0 - War of the Spark and Modern Horizons unofficial icons added, GK2 alias
* v3.3.3 - Ravnica Allegiance added (official symbol)
* v3.3.2 - Ultimate Masters icon added
* v3.3.1 - All 10 guilds added as Guild Kit symbols

View File

@ -1,7 +1,7 @@
{
"name": "keyrune",
"homepage": "http://andrewgioia.github.io/Keyrune",
"version": "3.3.3",
"version": "3.4.0",
"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.3.3');
src: url('../fonts/keyrune.eot?#iefix&v=3.3.3') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.3.3') format('woff2'), url('../fonts/keyrune.woff?v=3.3.3') format('woff'), url('../fonts/keyrune.ttf?v=3.3.3') format('truetype'), url('../fonts/keyrune.svg?v=3.3.3#keyrune') format('svg');
src: url('../fonts/keyrune.eot?v=3.4.0');
src: url('../fonts/keyrune.eot?#iefix&v=3.4.0') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.4.0') format('woff2'), url('../fonts/keyrune.woff?v=3.4.0') format('woff'), url('../fonts/keyrune.ttf?v=3.4.0') format('truetype'), url('../fonts/keyrune.svg?v=3.4.0#keyrune') format('svg');
font-weight: normal;
font-style: normal;
}
@ -487,9 +487,13 @@
.ss-gk1:before {
content: "\e94b";
}
.ss-rna:before {
.ss-rna:before,
.ss-gk2:before {
content: "\e959";
}
.ss-war:before {
content: "\e95a";
}
/**
* Command Zone */
.ss-van:before {
@ -597,6 +601,9 @@
.ss-uma:before {
content: "\e958";
}
.ss-mh1:before {
content: "\e95b";
}
/**
* Beginner */
.ss-por:before {

2
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: 510 KiB

After

Width:  |  Height:  |  Size: 512 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -141,8 +141,10 @@
.@{ss-prefix}-dom:before { content: "\e93f"; } // Dominaria
/* Guilds of Ravnica Block */
.@{ss-prefix}-grn:before, // Guilds of Ravnica
.@{ss-prefix}-gk1:before { content: "\e94b"; } // Guild Kits
.@{ss-prefix}-rna:before { content: "\e959"; } // Ravnica Allegiance
.@{ss-prefix}-gk1:before { content: "\e94b"; } // GRM Guild Kits
.@{ss-prefix}-rna:before, // Ravnica Allegiance
.@{ss-prefix}-gk2:before { content: "\e959"; } // RNA Guild Kits
.@{ss-prefix}-war:before { content: "\e95a"; } // War of the Spark
/**
* Command Zone */
@ -186,6 +188,7 @@
.@{ss-prefix}-ima:before { content: "\e935"; } // Iconic Masters
.@{ss-prefix}-a25:before { content: "\e93d"; } // Masters 25
.@{ss-prefix}-uma:before { content: "\e958"; } // Ultimate Masters
.@{ss-prefix}-mh1:before { content: "\e95b"; } // Modern Horizons
/**
* Beginner */

View File

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

View File

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

View File

@ -1,7 +1,7 @@
// _variables.scss
// #.
$keyrune_version: '3.3.3' !default;
$keyrune_version: '3.4.0' !default;
$keyrune_font_path: '../fonts' !default;
// #. Keyrune Font ==============================
@ -200,8 +200,10 @@ $mtg_setlist: (
("Dominaria", "dom", "\e93f"),
// Guilds of Ravnica block
("Guilds of Ravnica", "grn", "\e94b"),
("Guild Kits", "gk1", "\e94b"),
("GRN Guild Kits", "gk1", "\e94b"),
("Ravnica Allegiance", "rna", "\e959"),
("RNA Guild Kits", "gk2", "\e959"),
("War of the Spark", "war", "\e95a"),
// # Commander Sets
("Vanguard", 'van', "\e655"),
("Planechase 2009", 'hop', "\e656"),
@ -239,6 +241,7 @@ $mtg_setlist: (
("Iconic Masters", 'ima', "\e935"),
("Masters 25", 'a25', "\e93d"),
("Ultimate Masters", 'uma', "\e958"),
("Modern Horizons", 'mh1', "\e95b"),
// # Beginner Sets
("Portal", 'por', "\e664"),
("Portal 2", 'p02', "\e665"),