diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..344bfc2 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,22 @@ +# How adding a new set icon + +## Prerequisites + +You need to have a icomoon account: https://icomoon.io/app/ +For future steps, i recommande to import actual set of keyrune's icons in icomoon. + +![import](./contributing/images/import-icon-btn.png) + +A model asking for "The glyphs in your SVG font were loaded. +Use this font's metrics and metadata when exporting fonts?" will appear, click on "Yes". + +![modal-import](./contributing/images/import-icon-modal.png) + +๐ŸŽ‰ Success, you have now all the keyrune's icons in your icomoon project. That will be useful for the next steps when we need to generate the font. + +## Summary + +1. [Update fonts and svg with the new icon](./contributing/UpdateFonts.md) +2. [Update codebase to handle the new icon](./contributing/UpdateCodebase.md) +3. [Generate associated css](./contributing/GenerateCss.md) +4. [Update the documentation](./contributing/UpdateDocumentation.md) \ No newline at end of file diff --git a/contributing/GenerateCss.md b/contributing/GenerateCss.md new file mode 100644 index 0000000..8e9d21b --- /dev/null +++ b/contributing/GenerateCss.md @@ -0,0 +1,22 @@ +# Generate CSS + +> exemple with the set icon of the set "Fondation" (FDN) + +## Steps + +Generate the CSS file with the following command: + +```bash +npm run lessmin & sassmin +``` +or for debug purpose you can run + +```bash +npm run less & sass +``` + +2 files will be generated in the `css` folder: `keyrune.css` and `keyrune.min.css`. + +![generate-css](./images/generate-css.png) + +Yaay ๐ŸŽ‰ you have generate the CSS file! Now you can use the new icon in the website. Follow the [Usage inside README.md](../README.md#usage) \ No newline at end of file diff --git a/contributing/UpdateCodebase.md b/contributing/UpdateCodebase.md new file mode 100644 index 0000000..d3f0e4e --- /dev/null +++ b/contributing/UpdateCodebase.md @@ -0,0 +1,27 @@ +# Update Codebase + +> exemple with the set icon of the set "Fondation" (FDN) + +## Prerequisites + +You need to have `lessc` and `sass` installed on your computer. + +## Steps + +1. Open the `sass/_variables.scss` file in the repository. +2. Add the new set icon in the `@keyrune-icons` list. (You can see that i add the short code `fdn` and the unicode character `1f31f`) + ```diff + + ("Foundations", "fdn", "\1f31f"), + ``` + +3. Open the `less/icons.less` file in the repository. +4. Add the new set icon in the `@keyrune-icons` list. (You can see that i add the short code `fdn` and the unicode character `1f31f`) + ```diff + + .@{ss-prefix}-fdn:before { content: "\1f31f"; } // Foundation + ``` + +Yaay ๐ŸŽ‰ you have update the codebase now everything is ready only one steps to use the new icon + +--- +**Go to the next step: [Generate CSS](./GenerateCss.md)** +--- diff --git a/contributing/UpdateDocumentation.md b/contributing/UpdateDocumentation.md new file mode 100644 index 0000000..be86719 --- /dev/null +++ b/contributing/UpdateDocumentation.md @@ -0,0 +1 @@ +# Update existing documentation \ No newline at end of file diff --git a/contributing/UpdateFonts.md b/contributing/UpdateFonts.md new file mode 100644 index 0000000..6768918 --- /dev/null +++ b/contributing/UpdateFonts.md @@ -0,0 +1,54 @@ +# Update Fonts + +> exemple with the set icon of the set "Fondation" (FDN) + +## Steps + +1. Search for the icon you want to add (from scryfall.com: https://svgs.scryfall.io/sets/fdn.svg) and download it (inspect DOM and copy/paste in a blank file). Save it in a temporary folder in your desktop. + +2. On icomoon, click on the "Import Icons" button. Select the previously downloaded icon. It will be added in a "Untilited Set". + + ![import-icon](./images/import-icon.png) + +3. Now you need to select all the icons you want to add in the font + the new one. On top right of each section you can find a menu with "Select all" and "Deselect all". + + ![select-all](./images/select-all.png) + +4. On the bottom of the page, you can check that you have the right number of icons selected. (Actual number + 1, the new one) + + ![check-number](./images/check-number.png) + +5. You can now click on the "Generate Font" button. You will be redirect to a page whith all setting for each icon. + + ![generate-font](./images/generate-font.png) + +6. Find your new icon and click on the "smiley" button to search for a unicode character and select it. + + ![icon-settings](./images/icon-settings.png) + + ๐Ÿšง Be sure to select a character that is not already used in the font.๐Ÿšง + + You can check how your icon will be displayed in the font by clicking on the "Get code " button. + + ![preview-icon](./images/preview-icon.png) + +> If you have info about how to determine wich character is free, please add it in this doc here. ๐Ÿ™ +> What I do is when i have selected my unicode character, i search in all the codebase if it's already used. If not, i use it. + +7. You can now donwload the font by clicking on the "Download" button. You get a zip file with all the files needed. + + ![download-font](./images/download-font.png) + +8. Unzip the file and copy the `fonts` folder in the keyrune `fonts` folder. Normally you will have the `keyrune.eot`, `keyrune.svg`, `keyrune.ttf`, `keyrune.woff` files. + + ![fonts-folder](./images/fonts-folder.png) + +Yaay ๐ŸŽ‰ you have update the keyrune font! And have your new icon available. + +--- +**Go to the next step: [Update codebase to handle the new icon](./UpdateCodebase.md)** +--- + +## Extra steps + +One files is missing inside the generated fonts, it's the `keyrune.woff2`. To get it you need to convert the `keyrune.woff` with online tools like [Cloudconvert](https://cloudconvert.com/woff-to-woff2) \ No newline at end of file diff --git a/contributing/images/check-number.png b/contributing/images/check-number.png new file mode 100644 index 0000000..38e1e73 Binary files /dev/null and b/contributing/images/check-number.png differ diff --git a/contributing/images/download-font.png b/contributing/images/download-font.png new file mode 100644 index 0000000..28c131c Binary files /dev/null and b/contributing/images/download-font.png differ diff --git a/contributing/images/fonts-folder.png b/contributing/images/fonts-folder.png new file mode 100644 index 0000000..9a7830a Binary files /dev/null and b/contributing/images/fonts-folder.png differ diff --git a/contributing/images/generate-css.png b/contributing/images/generate-css.png new file mode 100644 index 0000000..796ebc7 Binary files /dev/null and b/contributing/images/generate-css.png differ diff --git a/contributing/images/generate-font.png b/contributing/images/generate-font.png new file mode 100644 index 0000000..b673b96 Binary files /dev/null and b/contributing/images/generate-font.png differ diff --git a/contributing/images/icon-settings.png b/contributing/images/icon-settings.png new file mode 100644 index 0000000..31406c3 Binary files /dev/null and b/contributing/images/icon-settings.png differ diff --git a/contributing/images/import-icon-btn.png b/contributing/images/import-icon-btn.png new file mode 100644 index 0000000..d4da8a1 Binary files /dev/null and b/contributing/images/import-icon-btn.png differ diff --git a/contributing/images/import-icon-modal.png b/contributing/images/import-icon-modal.png new file mode 100644 index 0000000..14d99c9 Binary files /dev/null and b/contributing/images/import-icon-modal.png differ diff --git a/contributing/images/import-icon.png b/contributing/images/import-icon.png new file mode 100644 index 0000000..79892d0 Binary files /dev/null and b/contributing/images/import-icon.png differ diff --git a/contributing/images/preview-icon.png b/contributing/images/preview-icon.png new file mode 100644 index 0000000..b05471b Binary files /dev/null and b/contributing/images/preview-icon.png differ diff --git a/contributing/images/select-all.png b/contributing/images/select-all.png new file mode 100644 index 0000000..e703e33 Binary files /dev/null and b/contributing/images/select-all.png differ diff --git a/css/keyrune.css b/css/keyrune.css index e0ab688..9f8bebb 100644 --- a/css/keyrune.css +++ b/css/keyrune.css @@ -1,1418 +1 @@ -@charset "UTF-8"; -/** - * Globals */ -@font-face { - font-family: "Keyrune"; - src: url("../fonts/keyrune.eot?v=3.15.0"); - src: url("../fonts/keyrune.eot?#iefix&v=3.15.0") format("embedded-opentype"), url("../fonts/keyrune.woff2?v=3.15.0") format("woff2"), url("../fonts/keyrune.woff?v=3.15.0") format("woff"), url("../fonts/keyrune.ttf?v=3.15.0") format("truetype"), url("../fonts/keyrune.svg?v=3.15.0#keyrune") format("svg"); - font-weight: normal; - font-style: normal; -} -/** - * Sets */ -.ss { - display: inline-block; - font: normal normal normal 14px "Keyrune"; - font-size: inherit; - line-height: 1em; - text-rendering: auto; - transform: translate(0, 0); - speak: none; - text-transform: none; - vertical-align: middle; - -webkit-font-smoothing: antialiased; - -moz-font-smoothing: grayscale; -} -.ss:before { - content: "\e684"; -} -.ss-lea:before { /* Alpha */ - content: "\e600"; -} -.ss-leb:before { /* Beta */ - content: "\e601"; -} -.ss-2ed:before { /* Unlimited */ - content: "\e602"; -} -.ss-3ed:before { /* Revised */ - content: "\e603"; -} -.ss-4ed:before { /* 4th Edition */ - content: "\e604"; -} -.ss-psum:before { /* Summer Magic */ - content: "\e605"; -} -.ss-5ed:before { /* 5th Edition */ - content: "\e606"; -} -.ss-6ed:before { /* 6th Edition */ - content: "\e607"; -} -.ss-7ed:before { /* 7th Edition */ - content: "\e608"; -} -.ss-8ed:before { /* 8th Edition */ - content: "\e609"; -} -.ss-9ed:before { /* 9th Edition */ - content: "\e60a"; -} -.ss-10e:before { /* 10th Edition */ - content: "\e60b"; -} -.ss-m10:before { /* Magic 2010 */ - content: "\e60c"; -} -.ss-m11:before { /* Magic 2011 */ - content: "\e60d"; -} -.ss-m12:before { /* Magic 2012 */ - content: "\e60e"; -} -.ss-m13:before { /* Magic 2013 */ - content: "\e60f"; -} -.ss-m14:before { /* Magic 2014 */ - content: "\e610"; -} -.ss-m15:before { /* Magic 2015 */ - content: "\e611"; -} -.ss-bcore:before { /* Core background */ - content: "\e612"; -} -.ss-ori:before { /* Magic Origins */ - content: "\e697"; -} -.ss-m19:before { /* Magic 2019 */ - content: "\e941"; -} -.ss-m20:before { /* Magic 2020 */ - content: "\e95d"; -} -.ss-1e:before { /* Alpha (MODO) */ - content: "\e947"; -} -.ss-2e:before { /* Beta (MODO) */ - content: "\e948"; -} -.ss-2u:before { /* Unlimited (MODO) */ - content: "\e949"; -} -.ss-3e:before { /* Revised (MODO) */ - content: "\e94a"; -} -.ss-m21:before { /* Core 2021 */ - content: "\e960"; -} -.ss-xdnd:before { /* Adventures in the Forgotten Realms */ - content: "\e972"; -} -.ss-afr:before { /* Adventures in the Forgotten Realms */ - content: "\e972"; -} -.ss-arn:before { /* Arabian Nights */ - content: "\e613"; -} -.ss-atq:before { /* Antiquities */ - content: "\e614"; -} -.ss-leg:before { /* Legends */ - content: "\e615"; -} -.ss-drk:before { /* The Dark */ - content: "\e616"; -} -.ss-fem:before { /* Fallen Empires */ - content: "\e617"; -} -.ss-hml:before { /* Homelands */ - content: "\e618"; -} -.ss-ice:before { /* Ice Age */ - content: "\e619"; -} -.ss-ice2:before { /* Ice Age (Original) */ - content: "\e925"; -} -.ss-all:before { /* Alliances */ - content: "\e61a"; -} -.ss-csp:before { /* Coldsnap */ - content: "\e61b"; -} -.ss-mir:before { /* Mirage */ - content: "\e61c"; -} -.ss-vis:before { /* Visions */ - content: "\e61d"; -} -.ss-wth:before { /* Weatherlight */ - content: "\e61e"; -} -.ss-tmp:before { /* Tempest */ - content: "\e61f"; -} -.ss-sth:before { /* Stronghold */ - content: "\e620"; -} -.ss-exo:before { /* Exodus */ - content: "\e621"; -} -.ss-usg:before { /* Urza's Saga */ - content: "\e622"; -} -.ss-ulg:before { /* Urza's Legacy */ - content: "\e623"; -} -.ss-uds:before { /* Urza's Destiny */ - content: "\e624"; -} -.ss-mmq:before { /* Mercadian Masque */ - content: "\e625"; -} -.ss-nem:before { /* Nemesis */ - content: "\e626"; -} -.ss-nms:before { /* Nemesis */ - content: "\e626"; -} -.ss-pcy:before { /* Prophecy */ - content: "\e627"; -} -.ss-inv:before { /* Invasion */ - content: "\e628"; -} -.ss-pls:before { /* Planeshift */ - content: "\e629"; -} -.ss-apc:before { /* Apocalypse */ - content: "\e62a"; -} -.ss-ody:before { /* Odyssey */ - content: "\e62b"; -} -.ss-tor:before { /* Torment */ - content: "\e62c"; -} -.ss-jud:before { /* Judgement */ - content: "\e62d"; -} -.ss-ons:before { /* Onslaught */ - content: "\e62e"; -} -.ss-lgn:before { /* Legions */ - content: "\e62f"; -} -.ss-scg:before { /* Scourge */ - content: "\e630"; -} -.ss-mrd:before { /* Mirrodin */ - content: "\e631"; -} -.ss-dst:before { /* Darksteel */ - content: "\e632"; -} -.ss-5dn:before { /* 5th Dawn */ - content: "\e633"; -} -.ss-chk:before { /* Champions of Kamigawa */ - content: "\e634"; -} -.ss-bok:before { /* Betrayers of Kamigawa */ - content: "\e635"; -} -.ss-sok:before { /* Saviors of Kamigawa */ - content: "\e636"; -} -.ss-rav:before { /* Ravnica */ - content: "\e637"; -} -.ss-gpt:before { /* Guildpact */ - content: "\e638"; -} -.ss-dis:before { /* Dissension */ - content: "\e639"; -} -.ss-tsp:before { /* Time Spiral */ - content: "\e63a"; -} -.ss-plc:before { /* Planeshift */ - content: "\e63b"; -} -.ss-fut:before { /* Future Sight */ - content: "\e63c"; -} -.ss-lrw:before { /* Lorwyn */ - content: "\e63d"; -} -.ss-mor:before { /* Morningtide */ - content: "\e63e"; -} -.ss-shm:before { /* Shadowmoor */ - content: "\e63f"; -} -.ss-eve:before { /* Eventide */ - content: "\e640"; -} -.ss-ala:before { /* Shards of Alara */ - content: "\e641"; -} -.ss-con:before { /* Conflux */ - content: "\e642"; -} -.ss-arb:before { /* Alara Reborn */ - content: "\e643"; -} -.ss-zen:before { /* Zendikar */ - content: "\e644"; -} -.ss-wwk:before { /* Worldwake */ - content: "\e645"; -} -.ss-roe:before { /* Rise of Eldrazi */ - content: "\e646"; -} -.ss-som:before { /* Scars of Mirrodin */ - content: "\e647"; -} -.ss-mbs:before { /* Mirrodin Besieged */ - content: "\e648"; -} -.ss-nph:before { /* New Phyrexia */ - content: "\e649"; -} -.ss-isd:before { /* Innistrad */ - content: "\e64a"; -} -.ss-dka:before { /* Dark Ascension */ - content: "\e64b"; -} -.ss-avr:before { /* Avacyn Restored */ - content: "\e64c"; -} -.ss-rtr:before { /* Return to Ravnica */ - content: "\e64d"; -} -.ss-gtc:before { /* Gatecrash */ - content: "\e64e"; -} -.ss-dgm:before { /* Dragon's Maze */ - content: "\e64f"; -} -.ss-ths:before { /* Theros */ - content: "\e650"; -} -.ss-bng:before { /* Born of the Gods */ - content: "\e651"; -} -.ss-jou:before { /* Journey into Nyx */ - content: "\e652"; -} -.ss-ktk:before { /* Khans of Tarkir */ - content: "\e653"; -} -.ss-frf:before { /* Fate Reforged */ - content: "\e654"; -} -.ss-dtk:before { /* Dragons of Tarkir */ - content: "\e693"; -} -.ss-bfz:before { /* Battle for Zendikar */ - content: "\e699"; -} -.ss-ogw:before { /* Oath of the Gatewatch */ - content: "\e901"; -} -.ss-soi:before { /* Shadows Over Innistrad */ - content: "\e902"; -} -.ss-emn:before { /* Eldritch Moon */ - content: "\e90b"; -} -.ss-kld:before { /* Kaladesh */ - content: "\e90e"; -} -.ss-aer:before { /* Aether Revolt */ - content: "\e90f"; -} -.ss-akh:before { /* Amonkhet */ - content: "\e914"; -} -.ss-hou:before { /* Hour of Devastation */ - content: "\e924"; -} -.ss-xln:before { /* Ixalan */ - content: "\e92e"; -} -.ss-rix:before { /* Rivals of Ixalan */ - content: "\e92f"; -} -.ss-dom:before { /* Dominaria */ - content: "\e93f"; -} -.ss-grn:before { /* Guilds of Ravnica */ - content: "\e94b"; -} -.ss-gk1:before { /* GRN Guild Kits */ - content: "\e94b"; -} -.ss-rna:before { /* Ravnica Allegiance */ - content: "\e959"; -} -.ss-gk2:before { /* RNA Guild Kits */ - content: "\e959"; -} -.ss-war:before { /* War of the Spark */ - content: "\e95a"; -} -.ss-eld:before { /* Throne of Eldraine */ - content: "\e95e"; -} -.ss-thb:before { /* Theros: Beyond Death */ - content: "\e961"; -} -.ss-iko:before { /* Ikoria: Lair of Behemoths */ - content: "\e962"; -} -.ss-znr:before { /* Zendikar Rising */ - content: "\e963"; -} -.ss-khm:before { /* Kaldheim */ - content: "\e974"; -} -.ss-stx:before { /* Strixhaven: School of Mages */ - content: "\e975"; -} -.ss-mid:before { /* Innistrad: Midnight Hunt */ - content: "\e978"; -} -.ss-vow:before { /* Innistrad: Crimson Vow */ - content: "\e977"; -} -.ss-neo:before { /* Kamigawa: Neon Dynasty */ - content: "\e98c"; -} -.ss-snc:before { /* Streets of New Capenna */ - content: "\e98b"; -} -.ss-dmu:before { /* Dominaria United */ - content: "\e993"; -} -.ss-bro:before { /* The Brothers' War */ - content: "\e99d"; -} -.ss-one:before { /* Phyrexia: All Will Be One */ - content: "\e9a1"; -} -.ss-mom:before { /* March of the Machine */ - content: "\e9a2"; -} -.ss-mat:before { /* March of the Machine: The Aftermath */ - content: "\e9a3"; -} -.ss-woe:before { /* Wilds of Eldraine */ - content: "\e9ae"; -} -.ss-lci:before { /* Lost Caverns of Ixalan */ - content: "\e9c2"; -} -.ss-mkm:before { /* Murders at Karlov Manor */ - content: "\e9c9"; -} -.ss-otj:before { /* Outlaws of Thunder Junction */ - content: "\e9cc"; -} -.ss-blb:before { /* Bloomburrow */ - content: "\e9cd"; -} -.ss-dsk:before { /* Duskmourn: House of Horror */ - content: "๐ŸŒ…"; -} -.ss-van:before { /* Vanguard */ - content: "\e655"; -} -.ss-hop:before { /* Planechase 2009 */ - content: "\e656"; -} -.ss-arc:before { /* Archenemy */ - content: "\e657"; -} -.ss-cmd:before { /* Commander */ - content: "\e658"; -} -.ss-pc2:before { /* Planechase 2012 */ - content: "\e659"; -} -.ss-cm1:before { /* Commander's Arsenal */ - content: "\e65a"; -} -.ss-c13:before { /* Commander 2013 */ - content: "\e65b"; -} -.ss-cns:before { /* Conspiracy */ - content: "\e65c"; -} -.ss-c14:before { /* Commander 2014 */ - content: "\e65d"; -} -.ss-c15:before { /* Commander 2015 */ - content: "\e900"; -} -.ss-cn2:before { /* Conspiracy 2, Take */ - content: "\e904"; -} -.ss-c16:before { /* Commander 2016 */ - content: "\e910"; -} -.ss-pca:before { /* Planechase Anthology */ - content: "\e911"; -} -.ss-cma:before { /* Commander Anthology */ - content: "\e916"; -} -.ss-e01:before { /* Archenemy: Nicol Bolas */ - content: "\e92d"; -} -.ss-ann:before { /* Archenemy: Nicol Bolas */ - content: "\e92d"; -} -.ss-e02:before { /* Explorers of Ixalan */ - content: "\e931"; -} -.ss-c17:before { /* Commander 2017 */ - content: "\e934"; -} -.ss-cm2:before { /* Commander Anthology 2 */ - content: "\e940"; -} -.ss-bbd:before { /* Battlebond */ - content: "\e942"; -} -.ss-c18:before { /* Commander 2018 */ - content: "\e946"; -} -.ss-c19:before { /* Commander 2019 */ - content: "\e95f"; -} -.ss-c20:before { /* Ikoria: Commander 2020 */ - content: "\e966"; -} -.ss-znc:before { /* Zendikar Rising: Commander Decks */ - content: "\e967"; -} -.ss-cc1:before { /* Commander Collection: Green */ - content: "\e968"; -} -.ss-cmr:before { /* Commander Legends */ - content: "\e969"; -} -.ss-cmc:before { /* Commander Legends Decks */ - content: "\e969"; -} -.ss-khc:before { /* Kaldheim Commander */ - content: "\e97d"; -} -.ss-c21:before { /* Commander 2021 */ - content: "\e97e"; -} -.ss-afc:before { /* Forgotten Realms Commander */ - content: "\e981"; -} -.ss-mic:before { /* Innistrad: Midnight Hunt Commander */ - content: "\e985"; -} -.ss-voc:before { /* Innistrad: Crimson Vow Commander */ - content: "\e986"; -} -.ss-cc2:before { /* Commander Collection: Black */ - content: "\e987"; -} -.ss-nec:before { /* Kamigawa: Neon Dynasty Commander */ - content: "\e98d"; -} -.ss-ncc:before { /* Streets of New Capenna Commander */ - content: "\e98e"; -} -.ss-clb:before { /* Commander Legends: Battle for Baldur's Gate */ - content: "\e991"; -} -.ss-dmc:before { /* Dominaria United Commander */ - content: "\e994"; -} -.ss-40k:before { /* Warhammer 40K */ - content: "\e998"; -} -.ss-brc:before { /* The Brothers' War Commander */ - content: "\e99f"; -} -.ss-onc:before { /* Phyrexia: All Will Be One Commander */ - content: "\e9a8"; -} -.ss-moc:before { /* March of the Machines Commander */ - content: "\e9a9"; -} -.ss-scd:before { /* Starter Commander Decks */ - content: "\e9ab"; -} -.ss-cmm:before { /* Commander Masters */ - content: "\e9b5"; -} -.ss-ltc:before { /* The Lord of the Rings: Tales of Middle-Earth Commander */ - content: "\e9b6"; -} -.ss-woc:before { /* Wilds of Eldraine Commander */ - content: "\e9b9"; -} -.ss-lcc:before { /* Lost Caverns of Ixalan Commander */ - content: "\e9c7"; -} -.ss-mkc:before { /* Murders at Karlov Manor Commander */ - content: "\e9ca"; -} -.ss-otc:before { /* Outlaws of Thunder Junction Commander */ - content: "\e9d2"; -} -.ss-blc:before { /* Bloomburrow Commander */ - content: "\e9d4"; -} -.ss-m3c:before { /* Modern Horizons 3 Commander */ - content: "\e9d0"; -} -.ss-chr:before { /* Chronicles */ - content: "\e65e"; -} -.ss-ath:before { /* Anthologies */ - content: "\e65f"; -} -.ss-brb:before { /* Battle Royale */ - content: "\e660"; -} -.ss-btd:before { /* Beatdown */ - content: "\e661"; -} -.ss-dkm:before { /* Deckmasters */ - content: "\e662"; -} -.ss-mma:before { /* Modern Masters */ - content: "\e663"; -} -.ss-mm2:before { /* Modern Masters 2015 */ - content: "\e695"; -} -.ss-ema:before { /* Eternal Masters */ - content: "\e903"; -} -.ss-mm3:before { /* Modern Masters 2017 */ - content: "\e912"; -} -.ss-xren:before { /* Renaissance */ - content: "\e917"; -} -.ss-xrin:before { /* Rinascimento */ - content: "\e918"; -} -.ss-ima:before { /* Iconic Masters */ - content: "\e935"; -} -.ss-a25:before { /* Masters 25 */ - content: "\e93d"; -} -.ss-uma:before { /* Ultimate Masters */ - content: "\e958"; -} -.ss-mh1:before { /* Modern Horizons */ - content: "\e95b"; -} -.ss-2xm:before { /* Double Masters */ - content: "\e96e"; -} -.ss-jmp:before { /* Jumpstart */ - content: "\e96f"; -} -.ss-mb1:before { /* Mystery Booster */ - content: "\e971"; -} -.ss-mh2:before { /* Modern Horizons 2 */ - content: "\e97b"; -} -.ss-sta:before { /* Strixhaven: Mystical Archives */ - content: "\e980"; -} -.ss-j21:before { /* Jumpstart: Historic Horizons */ - content: "\e983"; -} -.ss-2x2:before { /* Double Masters 2022 */ - content: "\e99c"; -} -.ss-brr:before { /* The Brothers' War Retro Artifacts */ - content: "\e9a0"; -} -.ss-j22:before { /* Jumpstart 2022 */ - content: "\e9ad"; -} -.ss-mul:before { /* Multiverse Legends */ - content: "\e9ba"; -} -.ss-wot:before { /* Wilds of Eldraine Enchanting Tales */ - content: "\e9c0"; -} -.ss-br:before { /* Battle Royale (alternate) */ - content: "\e9c1"; -} -.ss-spg:before { /* Special Guests */ - content: "\e9c8"; -} -.ss-otp:before { /* Breaking News */ - content: "\e9d5"; -} -.ss-big:before { /* The Big Score */ - content: "\e9d6"; -} -.ss-h2r:before { /* Modern Horizons 2 Timeshifts */ - content: "\e97b"; -} -.ss-por:before { /* Portal */ - content: "\e664"; -} -.ss-p02:before { /* Portal 2 */ - content: "\e665"; -} -.ss-po2:before { /* Portal 2 */ - content: "\e665"; -} -.ss-ptk:before { /* Portal 3 Kingdoms */ - content: "\e666"; -} -.ss-s99:before { /* Starter 1999 */ - content: "\e667"; -} -.ss-s00:before { /* Starter 2000 */ - content: "\e668"; -} -.ss-w16:before { /* Welcome Deck 2016 */ - content: "\e907"; -} -.ss-w17:before { /* Welcome Deck 2017 */ - content: "\e923"; -} -.ss-evg:before { /* Elves vs. Goblins */ - content: "\e669"; -} -.ss-dd2:before { /* Jace vs. Chandra */ - content: "\e66a"; -} -.ss-ddc:before { /* Divine vs. Demonic */ - content: "\e66b"; -} -.ss-ddd:before { /* Garruk vs. Liliana */ - content: "\e66c"; -} -.ss-dde:before { /* Phyrexia vs. */ - content: "\e66d"; -} -.ss-ddf:before { /* Elspeth vs. */ - content: "\e66e"; -} -.ss-ddg:before { /* Knights vs. Dragons */ - content: "\e66f"; -} -.ss-ddh:before { /* Ajani vs. Nicol */ - content: "\e670"; -} -.ss-ddi:before { /* Venser vs. Koth */ - content: "\e671"; -} -.ss-ddj:before { /* Izzet vs. Golgari */ - content: "\e672"; -} -.ss-ddk:before { /* Sorin vs. Tibalt */ - content: "\e673"; -} -.ss-ddl:before { /* Heroes vs. Monsters */ - content: "\e674"; -} -.ss-ddm:before { /* Jace vs. Vraska */ - content: "\e675"; -} -.ss-ddn:before { /* Speed vs. Cunning */ - content: "\e676"; -} -.ss-ddo:before { /* Kiora vs. Elspeth */ - content: "\e677"; -} -.ss-ddp:before { /* Zendikar vs. */ - content: "\e698"; -} -.ss-ddq:before { /* Blessed vs. Cursed */ - content: "\e908"; -} -.ss-ddr:before { /* Nissa vs. Ob Nixilis */ - content: "\e90d"; -} -.ss-td2:before { /* New Phyrexia vs. Mirrodin Pure */ - content: "\e91c"; -} -.ss-dds:before { /* Mind vs. Might */ - content: "\e921"; -} -.ss-ddt:before { /* Merfolk vs. Goblins */ - content: "\e933"; -} -.ss-ddu:before { /* Elves vs. Inventors */ - content: "\e93e"; -} -.ss-drb:before { /* Dragons */ - content: "\e678"; -} -.ss-v09:before { /* Exiled */ - content: "\e679"; -} -.ss-v10:before { /* Relics */ - content: "\e67a"; -} -.ss-v11:before { /* Legends */ - content: "\e67b"; -} -.ss-v12:before { /* Realms */ - content: "\e67c"; -} -.ss-v13:before { /* Twenty */ - content: "\e67d"; -} -.ss-v14:before { /* Annihilation */ - content: "\e67e"; -} -.ss-v15:before { /* Angels */ - content: "\e905"; -} -.ss-v16:before { /* Lore */ - content: "\e906"; -} -.ss-v0x:before { /* Vaults */ - content: "\e920"; -} -.ss-v17:before { /* Transform */ - content: "\e939"; -} -.ss-h09:before { /* Slivers */ - content: "\e67f"; -} -.ss-pd2:before { /* Fire & Lightning */ - content: "\e680"; -} -.ss-pd3:before { /* Graveborn */ - content: "\e681"; -} -.ss-md1:before { /* Modern Event Deck */ - content: "\e682"; -} -.ss-ss1:before { /* Jace */ - content: "\e944"; -} -.ss-ss2:before { /* Gideon */ - content: "\e95c"; -} -.ss-ss3:before { /* Chandra */ - content: "\e96d"; -} -.ss-gs1:before { /* Jiang Yanggu & Mu Yanling */ - content: "\e945"; -} -.ss-azorius:before { /* Azorius */ - content: "\e94e"; -} -.ss-boros:before { /* Boros */ - content: "\e94f"; -} -.ss-dimir:before { /* Dimir */ - content: "\e950"; -} -.ss-golgari:before { /* Golgari */ - content: "\e951"; -} -.ss-gruul:before { /* Gruul */ - content: "\e952"; -} -.ss-izzet:before { /* Izzet */ - content: "\e953"; -} -.ss-orzhov:before { /* Orzhov */ - content: "\e954"; -} -.ss-rakdos:before { /* Rakdos */ - content: "\e955"; -} -.ss-selesnya:before { /* Selesnya */ - content: "\e956"; -} -.ss-simic:before { /* Simic */ - content: "\e957"; -} -.ss-gnt:before { /* Game Night */ - content: "\e94d"; -} -.ss-gn2:before { /* Game Night 2019 */ - content: "\e964"; -} -.ss-tsr:before { /* Time Spiral Remastered */ - content: "\e976"; -} -.ss-dmr:before { /* Dominaria Remastered */ - content: "\e9a4"; -} -.ss-gn3:before { /* Game Night: Free for All */ - content: "\e9a5"; -} -.ss-ltr:before { /* The Lord of the Rings: Tales of Middle-Earth */ - content: "\e9af"; -} -.ss-who:before { /* Universes Beyond: Doctor Who */ - content: "\e9b0"; -} -.ss-rvr:before { /* Ravnica Remastered */ - content: "\e9bb"; -} -.ss-pip:before { /* Universes Beyond: Fallout */ - content: "\e9c3"; -} -.ss-clu:before { /* Ravnica: Clue Edition */ - content: "\e9cb"; -} -.ss-acr:before { /* Universes Beyond: Assassin's Creed */ - content: "\e9ce"; -} -.ss-mh3:before { /* Modern Horizons 3 */ - content: "\e9cf"; -} -.ss-pgru:before { /* Guru */ - content: "\e683"; -} -.ss-pmtg1:before { /* Magic symbol */ - content: "\e684"; -} -.ss-pmtg2:before { /* Magic symbol */ - content: "\e685"; -} -.ss-pleaf:before { /* Leaf */ - content: "\e686"; -} -.ss-pmei:before { /* Media Insert */ - content: "\e687"; -} -.ss-parl:before { /* DCI (Arena) */ - content: "\e688"; -} -.ss-dpa:before { /* Dragons */ - content: "\e689"; -} -.ss-pbook:before { /* Book Insert */ - content: "\e68a"; -} -.ss-past:before { /* Astral */ - content: "\e68b"; -} -.ss-parl2:before { /* Arena logo */ - content: "\e68c"; -} -.ss-exp:before { /* Zendikar */ - content: "\e69a"; -} -.ss-psalvat05:before { /* Salvat 2005 */ - content: "\e909"; -} -.ss-psalvat11:before { /* Salvat 2011 */ - content: "\e90a"; -} -.ss-mp1:before { /* Kaladesh Inventions */ - content: "\e913"; -} -.ss-mps:before { /* Kaladesh Inventions */ - content: "\e913"; -} -.ss-pxbox:before { /* Xbox Media Promo */ - content: "\e915"; -} -.ss-pmps:before { /* Magic Premiere Shop */ - content: "\e919"; -} -.ss-pmpu:before { /* Mirrodin Pure */ - content: "\e91a"; -} -.ss-mp2:before { /* Amonkhet Invocations */ - content: "\e922"; -} -.ss-pidw:before { /* IDW Promo */ - content: "\e92c"; -} -.ss-pdrc:before { /* Dragon*Con Promo */ - content: "\e932"; -} -.ss-pheart:before { /* Phoenix Heart Celebration */ - content: "\e936"; -} -.ss-h17:before { /* HasCon 2017 */ - content: "\e938"; -} -.ss-pdep:before { /* Duelist Extra Pulled */ - content: "\e93a"; -} -.ss-psega:before { /* Sega Dreamcast */ - content: "\e93b"; -} -.ss-ptsa:before { /* The Sorcerer's Apprentice */ - content: "\e93c"; -} -.ss-parl3:before { /* Arena (MTGO) */ - content: "\e943"; -} -.ss-htr:before { /* Heroes of the Realm 2016 */ - content: "\e687"; -} -.ss-med:before { /* Mythic Edition */ - content: "\e94c"; -} -.ss-ptg:before { /* Ponies: the Galloping */ - content: "\e965"; -} -.ss-htr17:before { /* Heroes of the Realm 2017 */ - content: "\e687"; -} -.ss-j20:before { /* Judge Academy 2020 */ - content: "\e96a"; -} -.ss-zne:before { /* Zendikar Rising Expeditions */ - content: "\e97a"; -} -.ss-bot:before { /* The Brothers' War Transformers */ - content: "\e99e"; -} -.ss-rex:before { /* Jurassic World */ - content: "\e9c4"; -} -.ss-slu:before { /* Secret Lair: Ultimate Edition */ - content: "\e687"; -} -.ss-sld:before { /* Secret Lair Drop */ - content: "\e687"; -} -.ss-psld:before { /* Secret Lair Drop Promos */ - content: "\e687"; -} -.ss-sld2:before { /* Secret Lair Logo */ - content: "\e9bc"; -} -.ss-me1:before { /* Masters Edition */ - content: "\e68d"; -} -.ss-me2:before { /* Masters Edition II */ - content: "\e68e"; -} -.ss-me3:before { /* Masters Edition III */ - content: "\e68f"; -} -.ss-me4:before { /* Masters Edition IV */ - content: "\e690"; -} -.ss-tpr:before { /* Tempest Remastered */ - content: "\e694"; -} -.ss-vma:before { /* Vintage Masters */ - content: "\e696"; -} -.ss-xlcu:before { /* Legendary Cube */ - content: "\e90c"; -} -.ss-pz1:before { /* Legendary Cube */ - content: "\e90c"; -} -.ss-modo:before { /* Magic Online */ - content: "\e91b"; -} -.ss-pmodo:before { /* Magic Online */ - content: "\e91b"; -} -.ss-duels:before { /* Magic Duels */ - content: "\e91d"; -} -.ss-xduels:before { /* Magic Duels */ - content: "\e91d"; -} -.ss-xmods:before { /* Magic Online Deck Series */ - content: "\e91e"; -} -.ss-pz2:before { /* Treasure Chests */ - content: "\e91f"; -} -.ss-ha1:before { /* Historic Anthology 1 */ - content: "\e96b"; -} -.ss-akr:before { /* Amonkhet Remastered */ - content: "\e970"; -} -.ss-klr:before { /* Kaladesh Remastered */ - content: "\e97c"; -} -.ss-y22:before { /* Alchemy 2022 */ - content: "\e989"; -} -.ss-hbg:before { /* Alchemy Horizons: Baldur's Gate */ - content: "\e9a6"; -} -.ss-ydmu:before { /* Alchemy: Dominaria */ - content: "\e9a7"; -} -.ss-sir:before { /* Shadows Over Innistrad */ - content: "\e9b1"; -} -.ss-sis:before { /* Shadows of the Past */ - content: "\e9b2"; -} -.ss-ea1:before { /* Explorer Anthology 1 */ - content: "\e9b4"; -} -.ss-ugl:before { /* Unglued */ - content: "\e691"; -} -.ss-unh:before { /* Unhinged */ - content: "\e692"; -} -.ss-ust:before { /* Unstable */ - content: "\e930"; -} -.ss-und:before { /* Unsanctioned */ - content: "\e96c"; -} -.ss-unf:before { /* Unfinity */ - content: "\e98a"; -} -.ss-una:before { /* Unfinity Acorns */ - content: "\e9be"; -} -.ss-xcle:before { /* Collector's Edition */ - content: "\e926"; -} -.ss-xice:before { /* International Collector's Edition */ - content: "\e927"; -} -.ss-x2ps:before { /* Two Player Introductory Set */ - content: "\e928"; -} -.ss-x4ea:before { /* Alternate 4th Edition */ - content: "\e929"; -} -.ss-papac:before { /* APAC Lands */ - content: "\e92a"; -} -.ss-peuro:before { /* Euro Lands */ - content: "\e92b"; -} -.ss-pfnm:before { /* Friday Night Magic */ - content: "\e937"; -} -.ss-30a:before { /* 30th Anniversary Edition */ - content: "\e9aa"; -} - -/** - * Rarities */ -/* common */ -.ss.ss-common { - color: #1a1718; -} -.ss.ss-common.ss-grad { - /* Chrome, Safari4+ */ - background: -webkit-gradient(linear, left top, right top, color-stop(0%, #302b2c), color-stop(50%, #474040), color-stop(100%, #302b2c)); - /* Chrome10+, Safari5.1+ */ - background: -webkit-linear-gradient(left, #302b2c 0%, #474040 50%, #302b2c 100%); - -webkit-text-stroke: 0.03em #000; - -webkit-text-fill-color: transparent; - -webkit-background-clip: text; - background-clip: text; -} -.ss.ss-common.ss-grad.ss-no-border, .ss.ss-common.ss-grad.ss-duo { - -webkit-text-stroke: 0; -} -.ss.ss-common.ss-grad.ss-duo::after { - -webkit-text-fill-color: inherit; -} - -/* uncommon */ -.ss.ss-uncommon { - color: #707883; -} -.ss.ss-uncommon.ss-grad { - /* Chrome, Safari4+ */ - background: -webkit-gradient(linear, left top, right top, color-stop(0%, #5a6572), color-stop(50%, #9e9e9e), color-stop(100%, #5a6572)); - /* Chrome10+, Safari5.1+ */ - background: -webkit-linear-gradient(left, #5a6572 0%, #9e9e9e 50%, #5a6572 100%); - -webkit-text-stroke: 0.03em #111; - -webkit-text-fill-color: transparent; - -webkit-background-clip: text; - background-clip: text; -} -.ss.ss-uncommon.ss-grad.ss-no-border, .ss.ss-uncommon.ss-grad.ss-duo { - -webkit-text-stroke: 0; -} -.ss.ss-uncommon.ss-grad.ss-duo::after { - -webkit-text-fill-color: inherit; -} - -/* rare */ -.ss.ss-rare { - color: #a58e4a; -} -.ss.ss-rare.ss-grad { - /* Chrome, Safari4+ */ - background: -webkit-gradient(linear, left top, right top, color-stop(0%, #876a3b), color-stop(50%, #dfbd6b), color-stop(100%, #876a3b)); - /* Chrome10+, Safari5.1+ */ - background: -webkit-linear-gradient(left, #876a3b 0%, #dfbd6b 50%, #876a3b 100%); - -webkit-text-stroke: 0.03em #333; - -webkit-text-fill-color: transparent; - -webkit-background-clip: text; - background-clip: text; -} -.ss.ss-rare.ss-grad.ss-no-border, .ss.ss-rare.ss-grad.ss-duo { - -webkit-text-stroke: 0; -} -.ss.ss-rare.ss-grad.ss-duo::after { - -webkit-text-fill-color: inherit; -} - -/* mythic */ -.ss.ss-mythic { - color: #bf4427; -} -.ss.ss-mythic.ss-grad { - /* Chrome, Safari4+ */ - background: -webkit-gradient(linear, left top, right top, color-stop(0%, #b21f0f), color-stop(50%, #f38300), color-stop(100%, #b21f0f)); - /* Chrome10+, Safari5.1+ */ - background: -webkit-linear-gradient(left, #b21f0f 0%, #f38300 50%, #b21f0f 100%); - -webkit-text-stroke: 0.03em #333; - -webkit-text-fill-color: transparent; - -webkit-background-clip: text; - background-clip: text; -} -.ss.ss-mythic.ss-grad.ss-no-border, .ss.ss-mythic.ss-grad.ss-duo { - -webkit-text-stroke: 0; -} -.ss.ss-mythic.ss-grad.ss-duo::after { - -webkit-text-fill-color: inherit; -} - -/* timeshifted */ -.ss.ss-timeshifted { - color: #652978; -} -.ss.ss-timeshifted.ss-grad { - /* Chrome, Safari4+ */ - background: -webkit-gradient(linear, left top, right top, color-stop(0%, #652978), color-stop(50%, #c09ac5), color-stop(100%, #652978)); - /* Chrome10+, Safari5.1+ */ - background: -webkit-linear-gradient(left, #652978 0%, #c09ac5 50%, #652978 100%); - -webkit-text-stroke: 0.03em #333; - -webkit-text-fill-color: transparent; - -webkit-background-clip: text; - background-clip: text; -} -.ss.ss-timeshifted.ss-grad.ss-no-border, .ss.ss-timeshifted.ss-grad.ss-duo { - -webkit-text-stroke: 0; -} -.ss.ss-timeshifted.ss-grad.ss-duo::after { - -webkit-text-fill-color: inherit; -} - -.ss-foil { - color: #a6dced; -} -.ss-foil.ss-grad { - background: -webkit-linear-gradient(-45deg, #ea8d66 0%, #ea8d66 10%, #fdef8a 17%, #8bcc93 33%, #a6dced 50%, #6f75aa 67%, #e599c2 83%, #eeeeee 100%); /* Chrome10-25,Safari5.1-6 */ - background: linear-gradient(135deg, #ea8d66 0%, #ea8d66 15%, #fdef8a 28%, #8bcc93 42%, #a6dced 55%, #6f75aa 68%, #e599c2 84%, #e599c2 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ - -webkit-text-stroke: 0.03em #333; - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; - background-clip: text; -} -.ss-foil.ss-grad.ss-no-border, .ss-foil.ss-grad.ss-duo { - -webkit-text-stroke: 0; -} -.ss-foil.ss-grad.ss-duo::after { - -webkit-text-fill-color: inherit; -} - -/** - * Sizes */ -.ss.ss-2x { - font-size: 2em; -} - -.ss.ss-3x { - font-size: 3em; -} - -.ss.ss-4x { - font-size: 4em; -} - -.ss.ss-5x { - font-size: 5em; -} - -.ss.ss-6x { - font-size: 6em; -} - -/** - * Fixed width */ -.ss.ss-fw { - width: calc(18em / 14); - text-align: center; -} - -/** - * Force no border */ -.ss.ss-no-border { - -webkit-text-stroke: 0; - text-stroke: 0; -} - -/** - * Icon borders */ -.ss.ss-border:after { - content: ""; - position: absolute; - left: -0.05em; - top: 0em; - z-index: -1; - color: #fff; - font-size: 1.15em; - background: #fff; - -webkit-text-stroke: 0.05em #fff; - -webkit-background-clip: text; - -webkit-text-fill-color: transparent; -} -.ss.ss-border.ss-van:after { /* Vanguard */ - content: "\e655"; -} -.ss.ss-border.ss-arc:after { /* Archenemy */ - content: "\e657"; -} -.ss.ss-border.ss-cmd:after { /* Commander */ - content: "\e658"; -} -.ss.ss-border.ss-cm1:after { /* Commander's Arsenal */ - content: "\e65a"; -} -.ss.ss-border.ss-c13:after { /* Commander 2013 */ - content: "\e65b"; -} -.ss.ss-border.ss-c14:after { /* Commander 2014 */ - content: "\e65d"; -} -.ss.ss-border.ss-c15:after { /* Commander 2015 */ - content: "\e900"; -} -.ss.ss-border.ss-hop:after { /* Planechase 2009 */ - content: "\e656"; -} -.ss.ss-border.ss-pc2:after { /* Planechase 2012 */ - content: "\e659"; -} -.ss.ss-border.ss-cns:after { /* Conspiracy */ - content: "\e65c"; -} -.ss.ss-border.ss-sis:after { /* Shadows of the Past */ - content: "\e9b2"; -} -.ss.ss-border.ss-sis::before { - content: "\e9b3"; -} - -/** - * Dual-layered symbols */ -.ss.ss-duo::after { - color: #000; - content: ""; - display: block; - font-size: 1em; - height: 100%; - left: 0; - position: absolute; - top: 0; - width: 100%; -} -.ss.ss-duo { - color: #fff; -} -.ss.ss-duo.ss-40k::after { - content: "\e99b"; -} -.ss.ss-duo.ss-afc::after { - content: "\e982"; -} -.ss.ss-duo.ss-afr::after { - content: "\e973"; -} -.ss.ss-duo.ss-c21::after { - content: "\e97f"; -} -.ss.ss-duo.ss-clb::after { - content: "\e992"; -} -.ss.ss-duo.ss-cc2::after { - content: "\e988"; -} -.ss.ss-duo.ss-dmc::after { - content: "\e997"; -} -.ss.ss-duo.ss-j21::after { - content: "\e984"; -} -.ss.ss-duo.ss-khc::after { - content: "\e9c6"; -} -.ss.ss-duo.ss-ltc::after { - content: "\e9b8"; -} -.ss.ss-duo.ss-m3c::after { - content: "\e9d1"; -} -.ss.ss-duo.ss-mid::after { - content: "\e979"; -} -.ss.ss-duo.ss-otc::after { - content: "\e9d3"; -} -.ss.ss-duo.ss-ncc::after { - content: "\e990"; -} -.ss.ss-duo.ss-scd::after { - content: "\e9ac"; -} -.ss.ss-duo.ss-una::after { - content: "\e9bf"; -} -.ss.ss-duo.ss-ncc::before { - content: "\e98f"; -} -.ss.ss-duo.ss-40k::before { - content: "\e999"; -} -.ss.ss-duo.ss-dmc::before { - content: "\e995"; -} -.ss.ss-duo.ss-khc::before { - content: "\e9c5"; -} -.ss.ss-duo.ss-ltc::before { - content: "\e9b7"; -} -.ss.ss-duo.ss-common { - color: #fff; -} -.ss.ss-duo.ss-uncommon::after, .ss.ss-duo.ss-rare::after, .ss.ss-duo.ss-mythic::after { - color: #000; -} - -/*# sourceMappingURL=keyrune.css.map */ +๏ปฟ@font-face{font-family:"Keyrune";src:url("../fonts/keyrune.eot?v=3.15.0");src:url("../fonts/keyrune.eot?#iefix&v=3.15.0") format("embedded-opentype"),url("../fonts/keyrune.woff2?v=3.15.0") format("woff2"),url("../fonts/keyrune.woff?v=3.15.0") format("woff"),url("../fonts/keyrune.ttf?v=3.15.0") format("truetype"),url("../fonts/keyrune.svg?v=3.15.0#keyrune") format("svg");font-weight:normal;font-style:normal}.ss{display:inline-block;font:normal normal normal 14px "Keyrune";font-size:inherit;line-height:1em;text-rendering:auto;transform:translate(0, 0);speak:none;text-transform:none;vertical-align:middle;-webkit-font-smoothing:antialiased;-moz-font-smoothing:grayscale}.ss:before{content:"๎š„"}.ss-lea:before{content:"๎˜€"}.ss-leb:before{content:"๎˜"}.ss-2ed:before{content:"๎˜‚"}.ss-3ed:before{content:"๎˜ƒ"}.ss-4ed:before{content:"๎˜„"}.ss-psum:before{content:"๎˜…"}.ss-5ed:before{content:"๎˜†"}.ss-6ed:before{content:"๎˜‡"}.ss-7ed:before{content:"๎˜ˆ"}.ss-8ed:before{content:"๎˜‰"}.ss-9ed:before{content:"๎˜Š"}.ss-10e:before{content:"๎˜‹"}.ss-m10:before{content:"๎˜Œ"}.ss-m11:before{content:"๎˜"}.ss-m12:before{content:"๎˜Ž"}.ss-m13:before{content:"๎˜"}.ss-m14:before{content:"๎˜"}.ss-m15:before{content:"๎˜‘"}.ss-bcore:before{content:"๎˜’"}.ss-ori:before{content:"๎š—"}.ss-m19:before{content:"๎ฅ"}.ss-m20:before{content:"๎ฅ"}.ss-1e:before{content:"๎ฅ‡"}.ss-2e:before{content:"๎ฅˆ"}.ss-2u:before{content:"๎ฅ‰"}.ss-3e:before{content:"๎ฅŠ"}.ss-m21:before{content:"๎ฅ "}.ss-xdnd:before{content:"๎ฅฒ"}.ss-afr:before{content:"๎ฅฒ"}.ss-arn:before{content:"๎˜“"}.ss-atq:before{content:"๎˜”"}.ss-leg:before{content:"๎˜•"}.ss-drk:before{content:"๎˜–"}.ss-fem:before{content:"๎˜—"}.ss-hml:before{content:"๎˜˜"}.ss-ice:before{content:"๎˜™"}.ss-ice2:before{content:"๎คฅ"}.ss-all:before{content:"๎˜š"}.ss-csp:before{content:"๎˜›"}.ss-mir:before{content:"๎˜œ"}.ss-vis:before{content:"๎˜"}.ss-wth:before{content:"๎˜ž"}.ss-tmp:before{content:"๎˜Ÿ"}.ss-sth:before{content:"๎˜ "}.ss-exo:before{content:"๎˜ก"}.ss-usg:before{content:"๎˜ข"}.ss-ulg:before{content:"๎˜ฃ"}.ss-uds:before{content:"๎˜ค"}.ss-mmq:before{content:"๎˜ฅ"}.ss-nem:before{content:"๎˜ฆ"}.ss-nms:before{content:"๎˜ฆ"}.ss-pcy:before{content:"๎˜ง"}.ss-inv:before{content:"๎˜จ"}.ss-pls:before{content:"๎˜ฉ"}.ss-apc:before{content:"๎˜ช"}.ss-ody:before{content:"๎˜ซ"}.ss-tor:before{content:"๎˜ฌ"}.ss-jud:before{content:"๎˜ญ"}.ss-ons:before{content:"๎˜ฎ"}.ss-lgn:before{content:"๎˜ฏ"}.ss-scg:before{content:"๎˜ฐ"}.ss-mrd:before{content:"๎˜ฑ"}.ss-dst:before{content:"๎˜ฒ"}.ss-5dn:before{content:"๎˜ณ"}.ss-chk:before{content:"๎˜ด"}.ss-bok:before{content:"๎˜ต"}.ss-sok:before{content:"๎˜ถ"}.ss-rav:before{content:"๎˜ท"}.ss-gpt:before{content:"๎˜ธ"}.ss-dis:before{content:"๎˜น"}.ss-tsp:before{content:"๎˜บ"}.ss-plc:before{content:"๎˜ป"}.ss-fut:before{content:"๎˜ผ"}.ss-lrw:before{content:"๎˜ฝ"}.ss-mor:before{content:"๎˜พ"}.ss-shm:before{content:"๎˜ฟ"}.ss-eve:before{content:"๎™€"}.ss-ala:before{content:"๎™"}.ss-con:before{content:"๎™‚"}.ss-arb:before{content:"๎™ƒ"}.ss-zen:before{content:"๎™„"}.ss-wwk:before{content:"๎™…"}.ss-roe:before{content:"๎™†"}.ss-som:before{content:"๎™‡"}.ss-mbs:before{content:"๎™ˆ"}.ss-nph:before{content:"๎™‰"}.ss-isd:before{content:"๎™Š"}.ss-dka:before{content:"๎™‹"}.ss-avr:before{content:"๎™Œ"}.ss-rtr:before{content:"๎™"}.ss-gtc:before{content:"๎™Ž"}.ss-dgm:before{content:"๎™"}.ss-ths:before{content:"๎™"}.ss-bng:before{content:"๎™‘"}.ss-jou:before{content:"๎™’"}.ss-ktk:before{content:"๎™“"}.ss-frf:before{content:"๎™”"}.ss-dtk:before{content:"๎š“"}.ss-bfz:before{content:"๎š™"}.ss-ogw:before{content:"๎ค"}.ss-soi:before{content:"๎ค‚"}.ss-emn:before{content:"๎ค‹"}.ss-kld:before{content:"๎คŽ"}.ss-aer:before{content:"๎ค"}.ss-akh:before{content:"๎ค”"}.ss-hou:before{content:"๎คค"}.ss-xln:before{content:"๎คฎ"}.ss-rix:before{content:"๎คฏ"}.ss-dom:before{content:"๎คฟ"}.ss-grn:before{content:"๎ฅ‹"}.ss-gk1:before{content:"๎ฅ‹"}.ss-rna:before{content:"๎ฅ™"}.ss-gk2:before{content:"๎ฅ™"}.ss-war:before{content:"๎ฅš"}.ss-eld:before{content:"๎ฅž"}.ss-thb:before{content:"๎ฅก"}.ss-iko:before{content:"๎ฅข"}.ss-znr:before{content:"๎ฅฃ"}.ss-khm:before{content:"๎ฅด"}.ss-stx:before{content:"๎ฅต"}.ss-mid:before{content:"๎ฅธ"}.ss-vow:before{content:"๎ฅท"}.ss-neo:before{content:"๎ฆŒ"}.ss-snc:before{content:"๎ฆ‹"}.ss-dmu:before{content:"๎ฆ“"}.ss-bro:before{content:"๎ฆ"}.ss-one:before{content:"๎ฆก"}.ss-mom:before{content:"๎ฆข"}.ss-mat:before{content:"๎ฆฃ"}.ss-woe:before{content:"๎ฆฎ"}.ss-lci:before{content:"๎ง‚"}.ss-mkm:before{content:"๎ง‰"}.ss-otj:before{content:"๎งŒ"}.ss-blb:before{content:"๎ง"}.ss-dsk:before{content:"๐ŸŒ…"}.ss-Vanguard,.ss van,.ss ๎™•:before{content:""}.ss-hop:before{content:"๎™–"}.ss-arc:before{content:"๎™—"}.ss-cmd:before{content:"๎™˜"}.ss-pc2:before{content:"๎™™"}.ss-cm1:before{content:"๎™š"}.ss-c13:before{content:"๎™›"}.ss-cns:before{content:"๎™œ"}.ss-c14:before{content:"๎™"}.ss-c15:before{content:"๎ค€"}.ss-cn2:before{content:"๎ค„"}.ss-c16:before{content:"๎ค"}.ss-pca:before{content:"๎ค‘"}.ss-cma:before{content:"๎ค–"}.ss-e01:before{content:"๎คญ"}.ss-ann:before{content:"๎คญ"}.ss-e02:before{content:"๎คฑ"}.ss-c17:before{content:"๎คด"}.ss-cm2:before{content:"๎ฅ€"}.ss-bbd:before{content:"๎ฅ‚"}.ss-c18:before{content:"๎ฅ†"}.ss-c19:before{content:"๎ฅŸ"}.ss-c20:before{content:"๎ฅฆ"}.ss-znc:before{content:"๎ฅง"}.ss-cc1:before{content:"๎ฅจ"}.ss-cmr:before{content:"๎ฅฉ"}.ss-cmc:before{content:"๎ฅฉ"}.ss-khc:before{content:"๎ฅฝ"}.ss-c21:before{content:"๎ฅพ"}.ss-afc:before{content:"๎ฆ"}.ss-mic:before{content:"๎ฆ…"}.ss-voc:before{content:"๎ฆ†"}.ss-cc2:before{content:"๎ฆ‡"}.ss-nec:before{content:"๎ฆ"}.ss-ncc:before{content:"๎ฆŽ"}.ss-clb:before{content:"๎ฆ‘"}.ss-dmc:before{content:"๎ฆ”"}.ss-40k:before{content:"๎ฆ˜"}.ss-brc:before{content:"๎ฆŸ"}.ss-onc:before{content:"๎ฆจ"}.ss-moc:before{content:"๎ฆฉ"}.ss-scd:before{content:"๎ฆซ"}.ss-cmm:before{content:"๎ฆต"}.ss-ltc:before{content:"๎ฆถ"}.ss-woc:before{content:"๎ฆน"}.ss-lcc:before{content:"๎ง‡"}.ss-mkc:before{content:"๎งŠ"}.ss-otc:before{content:"๎ง’"}.ss-blc:before{content:"๎ง”"}.ss-m3c:before{content:"๎ง"}.ss-chr:before{content:"๎™ž"}.ss-ath:before{content:"๎™Ÿ"}.ss-brb:before{content:"๎™ "}.ss-btd:before{content:"๎™ก"}.ss-dkm:before{content:"๎™ข"}.ss-mma:before{content:"๎™ฃ"}.ss-mm2:before{content:"๎š•"}.ss-ema:before{content:"๎คƒ"}.ss-mm3:before{content:"๎ค’"}.ss-xren:before{content:"๎ค—"}.ss-xrin:before{content:"๎ค˜"}.ss-ima:before{content:"๎คต"}.ss-a25:before{content:"๎คฝ"}.ss-uma:before{content:"๎ฅ˜"}.ss-mh1:before{content:"๎ฅ›"}.ss-2xm:before{content:"๎ฅฎ"}.ss-jmp:before{content:"๎ฅฏ"}.ss-mb1:before{content:"๎ฅฑ"}.ss-mh2:before{content:"๎ฅป"}.ss-sta:before{content:"๎ฆ€"}.ss-j21:before{content:"๎ฆƒ"}.ss-2x2:before{content:"๎ฆœ"}.ss-brr:before{content:"๎ฆ "}.ss-j22:before{content:"๎ฆญ"}.ss-mul:before{content:"๎ฆบ"}.ss-wot:before{content:"๎ง€"}.ss-br:before{content:"๎ง"}.ss-spg:before{content:"๎งˆ"}.ss-otp:before{content:"๎ง•"}.ss-big:before{content:"๎ง–"}.ss-h2r:before{content:"๎ฅป"}.ss-por:before{content:"๎™ค"}.ss-p02:before{content:"๎™ฅ"}.ss-po2:before{content:"๎™ฅ"}.ss-ptk:before{content:"๎™ฆ"}.ss-s99:before{content:"๎™ง"}.ss-s00:before{content:"๎™จ"}.ss-w16:before{content:"๎ค‡"}.ss-w17:before{content:"๎คฃ"}.ss-evg:before{content:"๎™ฉ"}.ss-dd2:before{content:"๎™ช"}.ss-ddc:before{content:"๎™ซ"}.ss-ddd:before{content:"๎™ฌ"}.ss-dde:before{content:"๎™ญ"}.ss-ddf:before{content:"๎™ฎ"}.ss-ddg:before{content:"๎™ฏ"}.ss-ddh:before{content:"๎™ฐ"}.ss-ddi:before{content:"๎™ฑ"}.ss-ddj:before{content:"๎™ฒ"}.ss-ddk:before{content:"๎™ณ"}.ss-ddl:before{content:"๎™ด"}.ss-ddm:before{content:"๎™ต"}.ss-ddn:before{content:"๎™ถ"}.ss-ddo:before{content:"๎™ท"}.ss-ddp:before{content:"๎š˜"}.ss-ddq:before{content:"๎คˆ"}.ss-ddr:before{content:"๎ค"}.ss-td2:before{content:"๎คœ"}.ss-dds:before{content:"๎คก"}.ss-ddt:before{content:"๎คณ"}.ss-ddu:before{content:"๎คพ"}.ss-drb:before{content:"๎™ธ"}.ss-v09:before{content:"๎™น"}.ss-v10:before{content:"๎™บ"}.ss-v11:before{content:"๎™ป"}.ss-v12:before{content:"๎™ผ"}.ss-v13:before{content:"๎™ฝ"}.ss-v14:before{content:"๎™พ"}.ss-v15:before{content:"๎ค…"}.ss-v16:before{content:"๎ค†"}.ss-v0x:before{content:"๎ค "}.ss-v17:before{content:"๎คน"}.ss-h09:before{content:"๎™ฟ"}.ss-pd2:before{content:"๎š€"}.ss-pd3:before{content:"๎š"}.ss-md1:before{content:"๎š‚"}.ss-ss1:before{content:"๎ฅ„"}.ss-ss2:before{content:"๎ฅœ"}.ss-ss3:before{content:"๎ฅญ"}.ss-gs1:before{content:"๎ฅ…"}.ss-azorius:before{content:"๎ฅŽ"}.ss-boros:before{content:"๎ฅ"}.ss-dimir:before{content:"๎ฅ"}.ss-golgari:before{content:"๎ฅ‘"}.ss-gruul:before{content:"๎ฅ’"}.ss-izzet:before{content:"๎ฅ“"}.ss-orzhov:before{content:"๎ฅ”"}.ss-rakdos:before{content:"๎ฅ•"}.ss-selesnya:before{content:"๎ฅ–"}.ss-simic:before{content:"๎ฅ—"}.ss-gnt:before{content:"๎ฅ"}.ss-gn2:before{content:"๎ฅค"}.ss-tsr:before{content:"๎ฅถ"}.ss-dmr:before{content:"๎ฆค"}.ss-gn3:before{content:"๎ฆฅ"}.ss-ltr:before{content:"๎ฆฏ"}.ss-who:before{content:"๎ฆฐ"}.ss-rvr:before{content:"๎ฆป"}.ss-pip:before{content:"๎งƒ"}.ss-clu:before{content:"๎ง‹"}.ss-acr:before{content:"๎งŽ"}.ss-mh3:before{content:"๎ง"}.ss-pgru:before{content:"๎šƒ"}.ss-pmtg1:before{content:"๎š„"}.ss-pmtg2:before{content:"๎š…"}.ss-pleaf:before{content:"๎š†"}.ss-pmei:before{content:"๎š‡"}.ss-parl:before{content:"๎šˆ"}.ss-dpa:before{content:"๎š‰"}.ss-pbook:before{content:"๎šŠ"}.ss-past:before{content:"๎š‹"}.ss-parl2:before{content:"๎šŒ"}.ss-exp:before{content:"๎šš"}.ss-psalvat05:before{content:"๎ค‰"}.ss-psalvat11:before{content:"๎คŠ"}.ss-mp1:before{content:"๎ค“"}.ss-mps:before{content:"๎ค“"}.ss-pxbox:before{content:"๎ค•"}.ss-pmps:before{content:"๎ค™"}.ss-pmpu:before{content:"๎คš"}.ss-mp2:before{content:"๎คข"}.ss-pidw:before{content:"๎คฌ"}.ss-pdrc:before{content:"๎คฒ"}.ss-pheart:before{content:"๎คถ"}.ss-h17:before{content:"๎คธ"}.ss-pdep:before{content:"๎คบ"}.ss-psega:before{content:"๎คป"}.ss-ptsa:before{content:"๎คผ"}.ss-parl3:before{content:"๎ฅƒ"}.ss-htr:before{content:"๎š‡"}.ss-med:before{content:"๎ฅŒ"}.ss-ptg:before{content:"๎ฅฅ"}.ss-htr17:before{content:"๎š‡"}.ss-j20:before{content:"๎ฅช"}.ss-zne:before{content:"๎ฅบ"}.ss-bot:before{content:"๎ฆž"}.ss-rex:before{content:"๎ง„"}.ss-slu:before{content:"๎š‡"}.ss-sld:before{content:"๎š‡"}.ss-psld:before{content:"๎š‡"}.ss-sld2:before{content:"๎ฆผ"}.ss-me1:before{content:"๎š"}.ss-me2:before{content:"๎šŽ"}.ss-me3:before{content:"๎š"}.ss-me4:before{content:"๎š"}.ss-tpr:before{content:"๎š”"}.ss-vma:before{content:"๎š–"}.ss-xlcu:before{content:"๎คŒ"}.ss-pz1:before{content:"๎คŒ"}.ss-modo:before{content:"๎ค›"}.ss-pmodo:before{content:"๎ค›"}.ss-duels:before{content:"๎ค"}.ss-xduels:before{content:"๎ค"}.ss-xmods:before{content:"๎คž"}.ss-pz2:before{content:"๎คŸ"}.ss-ha1:before{content:"๎ฅซ"}.ss-akr:before{content:"๎ฅฐ"}.ss-klr:before{content:"๎ฅผ"}.ss-y22:before{content:"๎ฆ‰"}.ss-hbg:before{content:"๎ฆฆ"}.ss-ydmu:before{content:"๎ฆง"}.ss-sir:before{content:"๎ฆฑ"}.ss-sis:before{content:"๎ฆฒ"}.ss-ea1:before{content:"๎ฆด"}.ss-ugl:before{content:"๎š‘"}.ss-unh:before{content:"๎š’"}.ss-ust:before{content:"๎คฐ"}.ss-und:before{content:"๎ฅฌ"}.ss-unf:before{content:"๎ฆŠ"}.ss-una:before{content:"๎ฆพ"}.ss-xcle:before{content:"๎คฆ"}.ss-xice:before{content:"๎คง"}.ss-x2ps:before{content:"๎คจ"}.ss-x4ea:before{content:"๎คฉ"}.ss-papac:before{content:"๎คช"}.ss-peuro:before{content:"๎คซ"}.ss-pfnm:before{content:"๎คท"}.ss-30a:before{content:"๎ฆช"}.ss.ss-common{color:#1a1718}.ss.ss-common.ss-grad{background:-webkit-gradient(linear, left top, right top, color-stop(0%, #302b2c), color-stop(50%, #474040), color-stop(100%, #302b2c));background:-webkit-linear-gradient(left, #302b2c 0%, #474040 50%, #302b2c 100%);-webkit-text-stroke:.03em #000;-webkit-text-fill-color:rgba(0,0,0,0);-webkit-background-clip:text;background-clip:text}.ss.ss-common.ss-grad.ss-no-border,.ss.ss-common.ss-grad.ss-duo{-webkit-text-stroke:0}.ss.ss-common.ss-grad.ss-duo::after{-webkit-text-fill-color:inherit}.ss.ss-uncommon{color:#707883}.ss.ss-uncommon.ss-grad{background:-webkit-gradient(linear, left top, right top, color-stop(0%, #5a6572), color-stop(50%, #9e9e9e), color-stop(100%, #5a6572));background:-webkit-linear-gradient(left, #5a6572 0%, #9e9e9e 50%, #5a6572 100%);-webkit-text-stroke:.03em #111;-webkit-text-fill-color:rgba(0,0,0,0);-webkit-background-clip:text;background-clip:text}.ss.ss-uncommon.ss-grad.ss-no-border,.ss.ss-uncommon.ss-grad.ss-duo{-webkit-text-stroke:0}.ss.ss-uncommon.ss-grad.ss-duo::after{-webkit-text-fill-color:inherit}.ss.ss-rare{color:#a58e4a}.ss.ss-rare.ss-grad{background:-webkit-gradient(linear, left top, right top, color-stop(0%, #876a3b), color-stop(50%, #dfbd6b), color-stop(100%, #876a3b));background:-webkit-linear-gradient(left, #876a3b 0%, #dfbd6b 50%, #876a3b 100%);-webkit-text-stroke:.03em #333;-webkit-text-fill-color:rgba(0,0,0,0);-webkit-background-clip:text;background-clip:text}.ss.ss-rare.ss-grad.ss-no-border,.ss.ss-rare.ss-grad.ss-duo{-webkit-text-stroke:0}.ss.ss-rare.ss-grad.ss-duo::after{-webkit-text-fill-color:inherit}.ss.ss-mythic{color:#bf4427}.ss.ss-mythic.ss-grad{background:-webkit-gradient(linear, left top, right top, color-stop(0%, #b21f0f), color-stop(50%, #f38300), color-stop(100%, #b21f0f));background:-webkit-linear-gradient(left, #b21f0f 0%, #f38300 50%, #b21f0f 100%);-webkit-text-stroke:.03em #333;-webkit-text-fill-color:rgba(0,0,0,0);-webkit-background-clip:text;background-clip:text}.ss.ss-mythic.ss-grad.ss-no-border,.ss.ss-mythic.ss-grad.ss-duo{-webkit-text-stroke:0}.ss.ss-mythic.ss-grad.ss-duo::after{-webkit-text-fill-color:inherit}.ss.ss-timeshifted{color:#652978}.ss.ss-timeshifted.ss-grad{background:-webkit-gradient(linear, left top, right top, color-stop(0%, #652978), color-stop(50%, #c09ac5), color-stop(100%, #652978));background:-webkit-linear-gradient(left, #652978 0%, #c09ac5 50%, #652978 100%);-webkit-text-stroke:.03em #333;-webkit-text-fill-color:rgba(0,0,0,0);-webkit-background-clip:text;background-clip:text}.ss.ss-timeshifted.ss-grad.ss-no-border,.ss.ss-timeshifted.ss-grad.ss-duo{-webkit-text-stroke:0}.ss.ss-timeshifted.ss-grad.ss-duo::after{-webkit-text-fill-color:inherit}.ss-foil{color:#a6dced}.ss-foil.ss-grad{background:-webkit-linear-gradient(-45deg, #ea8d66 0%, #ea8d66 10%, #fdef8a 17%, #8bcc93 33%, #a6dced 50%, #6f75aa 67%, #e599c2 83%, #eeeeee 100%);background:linear-gradient(135deg, #ea8d66 0%, #ea8d66 15%, #fdef8a 28%, #8bcc93 42%, #a6dced 55%, #6f75aa 68%, #e599c2 84%, #e599c2 100%);-webkit-text-stroke:.03em #333;-webkit-background-clip:text;-webkit-text-fill-color:rgba(0,0,0,0);background-clip:text}.ss-foil.ss-grad.ss-no-border,.ss-foil.ss-grad.ss-duo{-webkit-text-stroke:0}.ss-foil.ss-grad.ss-duo::after{-webkit-text-fill-color:inherit}.ss.ss-2x{font-size:2em}.ss.ss-3x{font-size:3em}.ss.ss-4x{font-size:4em}.ss.ss-5x{font-size:5em}.ss.ss-6x{font-size:6em}.ss.ss-fw{width:calc(18em/14);text-align:center}.ss.ss-no-border{-webkit-text-stroke:0;text-stroke:0}.ss.ss-border:after{content:"";position:absolute;left:-0.05em;top:0em;z-index:-1;color:#fff;font-size:1.15em;background:#fff;-webkit-text-stroke:.05em #fff;-webkit-background-clip:text;-webkit-text-fill-color:rgba(0,0,0,0)}.ss.ss-border.ss-van:after{content:"๎™•"}.ss.ss-border.ss-arc:after{content:"๎™—"}.ss.ss-border.ss-cmd:after{content:"๎™˜"}.ss.ss-border.ss-cm1:after{content:"๎™š"}.ss.ss-border.ss-c13:after{content:"๎™›"}.ss.ss-border.ss-c14:after{content:"๎™"}.ss.ss-border.ss-c15:after{content:"๎ค€"}.ss.ss-border.ss-hop:after{content:"๎™–"}.ss.ss-border.ss-pc2:after{content:"๎™™"}.ss.ss-border.ss-cns:after{content:"๎™œ"}.ss.ss-border.ss-sis:after{content:"๎ฆฒ"}.ss.ss-border.ss-sis::before{content:"๎ฆณ"}.ss.ss-duo::after{color:#000;content:"";display:block;font-size:1em;height:100%;left:0;position:absolute;top:0;width:100%}.ss.ss-duo{color:#fff}.ss.ss-duo.ss-40k::after{content:"๎ฆ›"}.ss.ss-duo.ss-afc::after{content:"๎ฆ‚"}.ss.ss-duo.ss-afr::after{content:"๎ฅณ"}.ss.ss-duo.ss-c21::after{content:"๎ฅฟ"}.ss.ss-duo.ss-clb::after{content:"๎ฆ’"}.ss.ss-duo.ss-cc2::after{content:"๎ฆˆ"}.ss.ss-duo.ss-dmc::after{content:"๎ฆ—"}.ss.ss-duo.ss-j21::after{content:"๎ฆ„"}.ss.ss-duo.ss-khc::after{content:"๎ง†"}.ss.ss-duo.ss-ltc::after{content:"๎ฆธ"}.ss.ss-duo.ss-m3c::after{content:"๎ง‘"}.ss.ss-duo.ss-mid::after{content:"๎ฅน"}.ss.ss-duo.ss-otc::after{content:"๎ง“"}.ss.ss-duo.ss-ncc::after{content:"๎ฆ"}.ss.ss-duo.ss-scd::after{content:"๎ฆฌ"}.ss.ss-duo.ss-una::after{content:"๎ฆฟ"}.ss.ss-duo.ss-ncc::before{content:"๎ฆ"}.ss.ss-duo.ss-40k::before{content:"๎ฆ™"}.ss.ss-duo.ss-dmc::before{content:"๎ฆ•"}.ss.ss-duo.ss-khc::before{content:"๎ง…"}.ss.ss-duo.ss-ltc::before{content:"๎ฆท"}.ss.ss-duo.ss-common{color:#fff}.ss.ss-duo.ss-uncommon::after,.ss.ss-duo.ss-rare::after,.ss.ss-duo.ss-mythic::after{color:#000}/*# sourceMappingURL=keyrune.css.map */ diff --git a/css/keyrune.css.map b/css/keyrune.css.map index 4defa8d..d42035b 100644 --- a/css/keyrune.css.map +++ b/css/keyrune.css.map @@ -1 +1 @@ -{"version":3,"sourceRoot":"","sources":["../sass/_variables.scss","../sass/_typography.scss","../sass/_icons.scss","../sass/_rarities.scss","../sass/_helpers.scss"],"names":[],"mappings":";AAAA;AAAA;ACAA;EACE;EACA;EACA;EAKA,aDCoB;ECApB,YDFmB;;AEPrB;AAAA;AAEA;EACI;EACA,MFQW;EEPX;EACA;EACA;EACA;EACA;EACA;EACA;EAEA;EACA;;AAGA;EACI;;AAKA;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;;ACxBZ;AAAA;AAMI;AACA;EACI,OHaU;;AGZV;AAEI;EACA;AACA;EACA;EACA;EACA;EACA,yBHFc;EGGd,iBHHc;;AGKd;EAEI;;AAEJ;EACI;;;AAnBZ;AACA;EACI,OHaU;;AGZV;AAEI;EACA;AACA;EACA;EACA;EACA;EACA,yBHFc;EGGd,iBHHc;;AGKd;EAEI;;AAEJ;EACI;;;AAnBZ;AACA;EACI,OHaU;;AGZV;AAEI;EACA;AACA;EACA;EACA;EACA;EACA,yBHFc;EGGd,iBHHc;;AGKd;EAEI;;AAEJ;EACI;;;AAnBZ;AACA;EACI,OHaU;;AGZV;AAEI;EACA;AACA;EACA;EACA;EACA;EACA,yBHFc;EGGd,iBHHc;;AGKd;EAEI;;AAEJ;EACI;;;AAnBZ;AACA;EACI,OHaU;;AGZV;AAEI;EACA;AACA;EACA;EACA;EACA;EACA,yBHFc;EGGd,iBHHc;;AGKd;EAEI;;AAEJ;EACI;;;AAOhB;EACI;;AACA;EAEI;EACA;EACA;EACA;EACA;EACA,iBH1BkB;;AG4BlB;EAEI;;AAEJ;EACI;;;AC9CZ;AAAA;AAGI;EACI;;;AADJ;EACI;;;AADJ;EACI;;;AADJ;EACI;;;AADJ;EACI;;;AAIR;AAAA;AAEA;EACI;EACA;;;AAGJ;AAAA;AAEA;EACI;EACA;;;AAGJ;AAAA;AAGI;EACI;EACA;EACA;EACA;EACA;EACA,OJbA;EIcA;EACA,YJfA;EIgBA;EACA,yBJtBkB;EIuBlB,yBJtBY;;AI4BZ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AAOJ;EACI;;;AAKZ;AAAA;AAKI;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EAEI;;AAIA;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AADJ;EACI;;AAKR;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAEJ;EACI;;AAIJ;EACI;;AAEJ;EAGI","file":"keyrune.css"} \ No newline at end of file +{"version":3,"sourceRoot":"","sources":["../sass/_typography.scss","../sass/_variables.scss","../sass/_icons.scss","../sass/_rarities.scss","../sass/_helpers.scss"],"names":[],"mappings":"CAAA,WACE,sBACA,yCACA,2SAKA,YCCoB,kBAFD,OCLrB,IACI,qBACA,KDQW,oCCPX,kBACA,gBACA,oBACA,0BACA,WACA,oBACA,sBAEA,mCACA,8BAGA,WACI,YAKA,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,gBACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,iBACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,cACI,YADJ,cACI,YADJ,cACI,YADJ,cACI,YADJ,eACI,YADJ,gBACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,gBACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,aADJ,kCACI,WADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,gBACI,YADJ,gBACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,cACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,mBACI,YADJ,iBACI,YADJ,iBACI,YADJ,mBACI,YADJ,iBACI,YADJ,iBACI,YADJ,kBACI,YADJ,kBACI,YADJ,oBACI,YADJ,iBACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,gBACI,YADJ,iBACI,YADJ,iBACI,YADJ,iBACI,YADJ,gBACI,YADJ,gBACI,YADJ,eACI,YADJ,iBACI,YADJ,gBACI,YADJ,iBACI,YADJ,eACI,YADJ,qBACI,YADJ,qBACI,YADJ,eACI,YADJ,eACI,YADJ,iBACI,YADJ,gBACI,YADJ,gBACI,YADJ,eACI,YADJ,gBACI,YADJ,gBACI,YADJ,kBACI,YADJ,eACI,YADJ,gBACI,YADJ,iBACI,YADJ,gBACI,YADJ,iBACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,iBACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,gBACI,YADJ,gBACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,gBACI,YADJ,eACI,YADJ,gBACI,YADJ,iBACI,YADJ,iBACI,YADJ,kBACI,YADJ,iBACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,gBACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,eACI,YADJ,gBACI,YADJ,gBACI,YADJ,gBACI,YADJ,gBACI,YADJ,iBACI,YADJ,iBACI,YADJ,gBACI,YADJ,eACI,YCjBR,cACI,MFaU,QEZV,sBAGI,uIAEA,gFACA,+BACA,sCACA,wBFFc,KEGd,gBFHc,KEKd,gEAEI,sBAEJ,oCACI,gCAlBZ,gBACI,MFaU,QEZV,wBAGI,uIAEA,gFACA,+BACA,sCACA,wBFFc,KEGd,gBFHc,KEKd,oEAEI,sBAEJ,sCACI,gCAlBZ,YACI,MFaU,QEZV,oBAGI,uIAEA,gFACA,+BACA,sCACA,wBFFc,KEGd,gBFHc,KEKd,4DAEI,sBAEJ,kCACI,gCAlBZ,cACI,MFaU,QEZV,sBAGI,uIAEA,gFACA,+BACA,sCACA,wBFFc,KEGd,gBFHc,KEKd,gEAEI,sBAEJ,oCACI,gCAlBZ,mBACI,MFaU,QEZV,2BAGI,uIAEA,gFACA,+BACA,sCACA,wBFFc,KEGd,gBFHc,KEKd,0EAEI,sBAEJ,yCACI,gCAOhB,SACI,cACA,iBAEI,mJACA,2IACA,+BACA,6BACA,sCACA,gBF1BkB,KE4BlB,sDAEI,sBAEJ,+BACI,gCC3CR,UACI,cADJ,UACI,cADJ,UACI,cADJ,UACI,cADJ,UACI,cAMR,UACI,oBACA,kBAKJ,iBACI,sBACA,cAMA,oBACI,WACA,kBACA,aACA,QACA,WACA,MHbA,KGcA,iBACA,WHfA,KGgBA,+BACA,wBHtBkB,KGuBlB,wBHtBY,cG4BZ,2BACI,YADJ,2BACI,YADJ,2BACI,YADJ,2BACI,YADJ,2BACI,YADJ,2BACI,YADJ,2BACI,YADJ,2BACI,YADJ,2BACI,YADJ,2BACI,YADJ,2BACI,YAOJ,6BACI,YAUR,kBACI,WACA,WACA,cACA,cACA,YACA,OACA,kBACA,MACA,WAGJ,WAEI,WAIA,yBACI,YADJ,yBACI,YADJ,yBACI,YADJ,yBACI,YADJ,yBACI,YADJ,yBACI,YADJ,yBACI,YADJ,yBACI,YADJ,yBACI,YADJ,yBACI,YADJ,yBACI,YADJ,yBACI,YADJ,yBACI,YADJ,yBACI,YADJ,yBACI,YADJ,yBACI,YAKR,0BACI,YAEJ,0BACI,YAEJ,0BACI,YAEJ,0BACI,YAEJ,0BACI,YAIJ,qBACI,WAEJ,oFAGI","file":"keyrune.css"} \ No newline at end of file diff --git a/fonts/keyrune.eot b/fonts/keyrune.eot index cbde022..fa8e638 100644 Binary files a/fonts/keyrune.eot and b/fonts/keyrune.eot differ diff --git a/fonts/keyrune.svg b/fonts/keyrune.svg index ddb4288..35797e7 100644 --- a/fonts/keyrune.svg +++ b/fonts/keyrune.svg @@ -181,220 +181,221 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/keyrune.ttf b/fonts/keyrune.ttf index b915995..a3515f8 100644 Binary files a/fonts/keyrune.ttf and b/fonts/keyrune.ttf differ diff --git a/fonts/keyrune.woff b/fonts/keyrune.woff index 687a05c..0c7d41a 100644 Binary files a/fonts/keyrune.woff and b/fonts/keyrune.woff differ diff --git a/less/icons.less b/less/icons.less index ddf138f..0ea8c3c 100644 --- a/less/icons.less +++ b/less/icons.less @@ -178,6 +178,7 @@ .@{ss-prefix}-otj:before { content: "\e9cc"; } // Outlaws of Thunder Junction .@{ss-prefix}-blb:before { content: "\e9cd"; } // Bloomburrow .@{ss-prefix}-dsk:before { content: "\1f305"; } // Duskmourn: House of Horror +.@{ss-prefix}-fdn:before { content: "\1f31f"; } // Foundation /** * Command Zone */ diff --git a/sass/_variables.scss b/sass/_variables.scss index 91d587e..dc0cfaf 100644 --- a/sass/_variables.scss +++ b/sass/_variables.scss @@ -246,7 +246,7 @@ $keyrune_sets: ( ("Outlaws of Thunder Junction", "otj", "\e9cc"), ("Bloomburrow", "blb", "\e9cd"), ("Duskmourn: House of Horror", "dsk", "\1f305"), - // + ("Foundations", "fdn", "\1f31f") // Command zone ("Vanguard", "van", "\e655"), ("Planechase 2009", "hop", "\e656"),