mirror of
https://github.com/andrewgioia/keyrune.git
synced 2024-12-22 07:29:56 +00:00
Magic Online Treasure Chest icon added, thanks to @csuhta
This commit is contained in:
parent
c22d0cee96
commit
8d79fa973b
@ -1,4 +1,4 @@
|
||||
# Keyrune v2.1.1
|
||||
# Keyrune v2.1.2
|
||||
|
||||
## The Magic: the Gathering set symbol font!
|
||||
|
||||
@ -36,6 +36,7 @@ Attribution is **greatly appreciated** but not required!
|
||||
|
||||
## Changelog
|
||||
|
||||
* v2.1.2 - Magic Online Treasure Chest added, thanks to @csuhta
|
||||
* v2.1.1 - Commander Anthology
|
||||
* v2.1.0 - A whole slew of new promo and digital symbols thanks to @fenhl
|
||||
* v2.0.1 - Xbox Media Promo symbol from original Duels of the Planeswalkers on Xbox
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "keyrune",
|
||||
"homepage": "http://andrewgioia.github.io/Keyrune",
|
||||
"version": "2.1.1",
|
||||
"version": "2.1.2",
|
||||
"authors": [
|
||||
"Andrew Gioia <andrewgioia@gmail.com>"
|
||||
],
|
||||
|
@ -2,8 +2,8 @@
|
||||
* Global */
|
||||
@font-face {
|
||||
font-family: 'Keyrune';
|
||||
src: url('../fonts/keyrune.eot?v=2.1.1');
|
||||
src: url('../fonts/keyrune.eot?#iefix&v=2.1.1') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=2.1.1') format('woff2'), url('../fonts/keyrune.woff?v=2.1.1') format('woff'), url('../fonts/keyrune.ttf?v=2.1.1') format('truetype'), url('../fonts/keyrune.svg?v=2.1.1#keyrune') format('svg');
|
||||
src: url('../fonts/keyrune.eot?v=2.1.2');
|
||||
src: url('../fonts/keyrune.eot?#iefix&v=2.1.2') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=2.1.2') format('woff2'), url('../fonts/keyrune.woff?v=2.1.2') format('woff'), url('../fonts/keyrune.ttf?v=2.1.2') format('truetype'), url('../fonts/keyrune.svg?v=2.1.2#keyrune') format('svg');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
@ -691,6 +691,7 @@
|
||||
.ss-vma:before {
|
||||
content: "\e696";
|
||||
}
|
||||
.ss-pz1:before,
|
||||
.ss-xlcu:before {
|
||||
content: "\e90c";
|
||||
}
|
||||
@ -705,6 +706,9 @@
|
||||
.ss-xmods:before {
|
||||
content: "\e91e";
|
||||
}
|
||||
.ss-pz2:before {
|
||||
content: "\e91f";
|
||||
}
|
||||
/**
|
||||
* Un-serious */
|
||||
.ss-ugl:before {
|
||||
|
2
css/keyrune.min.css
vendored
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: 283 KiB After Width: | Height: | Size: 285 KiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -244,12 +244,14 @@
|
||||
.@{ss-prefix}-me4:before { content: "\e690"; } // Masters Edition IV
|
||||
.@{ss-prefix}-tpr:before { content: "\e694"; } // Tempest Remastered
|
||||
.@{ss-prefix}-vma:before { content: "\e696"; } // Vintage Masters
|
||||
.@{ss-prefix}-pz1:before,
|
||||
.@{ss-prefix}-xlcu:before { content: "\e90c"; } // Legendary Cube
|
||||
.@{ss-prefix}-modo:before,
|
||||
.@{ss-prefix}-pmodo:before { content: "\e91b"; } // Magic Online promos
|
||||
.@{ss-prefix}-duels:before,
|
||||
.@{ss-prefix}-xduels:before { content: "\e91d"; } // Magic Duels
|
||||
.@{ss-prefix}-xmods:before { content: "\e91e"; } // Magic Online Deck Series
|
||||
.@{ss-prefix}-pz2:before { content: "\e91f"; } // Treasure Chests
|
||||
|
||||
|
||||
/**
|
||||
|
@ -2,6 +2,6 @@
|
||||
* Global */
|
||||
|
||||
@ss-font-path: '../fonts';
|
||||
@ss-version: '2.1.1';
|
||||
@ss-version: '2.1.2';
|
||||
@ss-font-size-base: 14px;
|
||||
@ss-prefix: ss;
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "keyrune",
|
||||
"description": "Keyrune",
|
||||
"version": "2.1.1",
|
||||
"version": "2.1.2",
|
||||
"author": {
|
||||
"name": "Andrew Gioia",
|
||||
"email": "andrewgioia@gmail.com",
|
||||
|
@ -1,7 +1,7 @@
|
||||
// _variables.scss
|
||||
|
||||
// #.
|
||||
$keyrune_version: '2.1.1' !default;
|
||||
$keyrune_version: '2.1.2' !default;
|
||||
$keyrune_font_path: '../fonts' !default;
|
||||
|
||||
// #. Keyrune Font ==============================
|
||||
@ -279,12 +279,14 @@ $mtg_setlist: (
|
||||
("Masters Edition IV", 'me4', "\e690"),
|
||||
("Tempest Remastered", 'tpr', "\e694"),
|
||||
("Vintage Masters", 'vma', "\e696"),
|
||||
("Legendary Cube", 'xlcu', "\e90c"),
|
||||
//("Legendary Cube", 'xlcu', "\e90c"), not sure if we can include dupes here
|
||||
("Legendary Cube", 'pz1', "\e90c"),
|
||||
("Magic Online", 'modo', "\e91b"),
|
||||
("Magic Online", 'pmodo', "\e91b"),
|
||||
("Magic Duels", 'duels', "\e91d"),
|
||||
("Magic Duels", 'xduels', "\e91d"),
|
||||
("Magic Online Deck Series", 'xmods', "\e91e"),
|
||||
("Treasure Chests", 'pz2', "\e91f"),
|
||||
// # The Unsets
|
||||
("Unglued", 'ugl', "\e691"),
|
||||
("Unhinged", 'unh', "\e692")
|
||||
|
Loading…
Reference in New Issue
Block a user