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..4f28f68 --- /dev/null +++ b/contributing/GenerateCss.md @@ -0,0 +1,26 @@ +# 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 && npm run sassmin +``` +or for debug purpose you can run + +```bash +npm run less && npm run 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) + +--- +**Go to the next step: [Update the documentation](./UpdateDocumentation.md)** +--- \ 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..aca1856 --- /dev/null +++ b/contributing/UpdateDocumentation.md @@ -0,0 +1,34 @@ +# Update existing documentation + +After you have added a new set icon, update the codebase and generate the new `keyrune.css` file, you need to update the documentation to reflect the changes. + +## Steps + +1. Run this command + ```bash + npm run build + ``` + This will copy fonts and css files to the `docs` folder. +2. Add the new icon usage inside the `cheatsheet.html`. + ```diff + +
+ ``` + Replace `fdn` with the short code of the new icon. +3. Add the new icon usage inside the `icons.html`. + ```diff + +
+ + Foundation (fdn) + +
+ ``` + Replace `fdn` with the short code of the new icon. + + > A data attribute with the version is present, but i don't know how it's working. If you have info about it, please add it in this doc here. ๐Ÿ™ + +You can open each html file in your browser to see the changes. Or use tools like `Live Server` in Visual Studio Code. +Normally you can see the changes in the `./cheatsheet.html` and `./icons.html` . + +![cheatsheet.html](./images/cheatsheet-html.png) ![icons.html](./images/icons-html.png) + +Yaay! You have successfully updated the documentation. ๐ŸŽ‰ + +You can now commit your changes and create a pull request. \ 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/cheatsheet-html.png b/contributing/images/cheatsheet-html.png new file mode 100644 index 0000000..abafc6f Binary files /dev/null and b/contributing/images/cheatsheet-html.png differ 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/icons-html.png b/contributing/images/icons-html.png new file mode 100644 index 0000000..215e5d7 Binary files /dev/null and b/contributing/images/icons-html.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..47148a1 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-fdn:before{content:"๐ŸŒŸ"}.ss-van: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..9e81127 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,eACI,aADJ,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,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/css/keyrune.min.css b/css/keyrune.min.css index fe7d9a9..4ee31fb 100644 --- a/css/keyrune.min.css +++ b/css/keyrune.min.css @@ -1 +1,1484 @@ -@font-face{font-family:Keyrune;src:url(../fonts/keyrune.eot?v=3.13.1);src:url(../fonts/keyrune.eot?#iefix&v=3.13.1) format('embedded-opentype'),url(../fonts/keyrune.woff2?v=3.13.1) format('woff2'),url(../fonts/keyrune.woff?v=3.13.1) format('woff'),url(../fonts/keyrune.ttf?v=3.13.1) format('truetype'),url(../fonts/keyrune.svg?v=3.13.1#keyrune) format('svg');font-weight:400;font-style:normal}.ss{display:inline-block;font:normal normal normal 14px/1 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-osx-font-smoothing:grayscale}.ss:before{content:"\e684"}.ss-2x{font-size:2em}.ss-3x{font-size:3em}.ss-4x{font-size:4em}.ss-5x{font-size:5em}.ss-6x{font-size:6em}.ss-duo{color:#fff}.ss-duo::after{color:#000;content:'';display:block;font-size:1em;height:100%;left:0;position:absolute;top:0;width:100%}.ss-duo.ss-40k::before{content:"\e999";width:100%}.ss-duo.ss-40k::after{content:"\e99b";color:#fff!important}.ss-duo.ss-afr::after,.ss-duo.ss-xdnd::after{content:"\e973"}.ss-duo.ss-afc::after{content:"\e982"}.ss-duo.ss-c21::after{content:"\e97f"}.ss-duo.ss-clb::after{content:"\e992"}.ss-duo.ss-cc2::after{content:"\e988"}.ss-duo.ss-dmc::before{content:"\e995";width:100%}.ss-duo.ss-dmc::after{content:"\e997";color:#fff!important}.ss-duo.ss-j21::after{content:"\e984"}.ss-duo.ss-khc::before{content:"\e9c5";width:100%}.ss-duo.ss-khc::after{content:"\e9c6";color:#fff!important}.ss-duo.ss-ltc::before{content:"\e9b7";width:100%}.ss-duo.ss-ltc::after{content:"\e9b8";color:#fff!important}.ss-duo.ss-mid::after{content:"\e979"}.ss-duo.ss-m3c::after{content:"\e9d1";color:#fff!important}.ss-duo.ss-otc::after{content:"\e9d3";color:#fff!important}.ss-duo.ss-scd::after{content:"\e9ac"}.ss-duo.ss-ncc::before{content:"\e98f"}.ss-duo.ss-ncc::after{content:"\e990"}.ss-duo.ss-una::after{content:"\e9bf";color:#fff!important}.ss-duo.ss-common:after{color:#fff}.ss-duo.ss-mythic::after,.ss-duo.ss-rare::after,.ss-duo.ss-uncommon::after{color:#000}.ss-duo.ss-mythic.ss-clb::after,.ss-duo.ss-rare.ss-clb::after,.ss-duo.ss-uncommon.ss-clb::after{color:#fff}.ss-common{color:#1A1718}.ss-common.ss-grad{background:-webkit-gradient(linear,left top,right top,color-stop(1%,#302b2c),color-stop(50%,#474040),color-stop(100%,#302b2c));background:-webkit-linear-gradient(left,#302b2c 1%,#474040 50%,#302b2c 100%);-webkit-text-stroke:.03em #000;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.ss-common.ss-grad.ss-duo,.ss-common.ss-grad.ss-no-border{-webkit-text-stroke:0}.ss-uncommon{color:#707883}.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-background-clip:text;-webkit-text-fill-color:transparent}.ss-uncommon.ss-grad.ss-duo,.ss-uncommon.ss-grad.ss-no-border{-webkit-text-stroke:0}.ss-uncommon.ss-grad.ss-duo::after{-webkit-text-fill-color:inherit}.ss-rare{color:#A58E4A}.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-background-clip:text;-webkit-text-fill-color:transparent}.ss-rare.ss-grad.ss-duo,.ss-rare.ss-grad.ss-no-border{-webkit-text-stroke:0}.ss-rare.ss-grad.ss-duo::after{-webkit-text-fill-color:inherit}.ss-mythic{color:#BF4427}.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-background-clip:text;-webkit-text-fill-color:transparent}.ss-mythic.ss-grad.ss-duo,.ss-mythic.ss-grad.ss-no-border{-webkit-text-stroke:0}.ss-mythic.ss-grad.ss-duo::after{-webkit-text-fill-color:inherit}.ss-timeshifted{color:#652978}.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(-45deg,#652978 0,#c09ac5 50%,#652978 100%);background:linear-gradient(135deg,#652978 0,#c09ac5 50%,#652978 100%);-webkit-text-stroke:.03em #333;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.ss-timeshifted.ss-grad.ss-duo,.ss-timeshifted.ss-grad.ss-no-border{-webkit-text-stroke:0}.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%,#eee 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:transparent}.ss-foil.ss-grad.ss-duo,.ss-foil.ss-grad.ss-no-border{-webkit-text-stroke:0}.ss-foil.ss-grad.ss-duo::after{-webkit-text-fill-color:inherit}.ss-fw{width:1.28571429em;text-align:center}.ss-lea:before{content:"\e600"}.ss-leb:before{content:"\e601"}.ss-2ed:before{content:"\e602"}.ss-3ed:before{content:"\e603"}.ss-4ed:before{content:"\e604"}.ss-psum:before{content:"\e605"}.ss-5ed:before{content:"\e606"}.ss-6ed:before{content:"\e607"}.ss-7ed:before{content:"\e608"}.ss-8ed:before{content:"\e609"}.ss-9ed:before{content:"\e60a"}.ss-10e:before{content:"\e60b"}.ss-m10:before{content:"\e60c"}.ss-m11:before{content:"\e60d"}.ss-m12:before{content:"\e60e"}.ss-m13:before{content:"\e60f"}.ss-m14:before{content:"\e610"}.ss-m15:before{content:"\e611"}.ss-bcore:before{content:"\e612"}.ss-ori:before{content:"\e697"}.ss-m19:before{content:"\e941"}.ss-m20:before{content:"\e95d"}.ss-1e:before{content:"\e947"}.ss-2e:before{content:"\e948"}.ss-2u:before{content:"\e949"}.ss-3e:before{content:"\e94a"}.ss-m21:before{content:"\e960"}.ss-afr:before,.ss-xdnd:before{content:"\e972"}.ss-arn:before{content:"\e613"}.ss-atq:before{content:"\e614"}.ss-leg:before{content:"\e615"}.ss-drk:before{content:"\e616"}.ss-fem:before{content:"\e617"}.ss-hml:before{content:"\e618"}.ss-ice:before{content:"\e619"}.ss-ice2:before{content:"\e925"}.ss-all:before{content:"\e61a"}.ss-csp:before{content:"\e61b"}.ss-mir:before{content:"\e61c"}.ss-vis:before{content:"\e61d"}.ss-wth:before{content:"\e61e"}.ss-tmp:before{content:"\e61f"}.ss-sth:before{content:"\e620"}.ss-exo:before{content:"\e621"}.ss-usg:before{content:"\e622"}.ss-ulg:before{content:"\e623"}.ss-uds:before{content:"\e624"}.ss-mmq:before{content:"\e625"}.ss-nem:before,.ss-nms:before{content:"\e626"}.ss-pcy:before{content:"\e627"}.ss-inv:before{content:"\e628"}.ss-pls:before{content:"\e629"}.ss-apc:before{content:"\e62a"}.ss-ody:before{content:"\e62b"}.ss-tor:before{content:"\e62c"}.ss-jud:before{content:"\e62d"}.ss-ons:before{content:"\e62e"}.ss-lgn:before{content:"\e62f"}.ss-scg:before{content:"\e630"}.ss-mrd:before{content:"\e631"}.ss-dst:before{content:"\e632"}.ss-5dn:before{content:"\e633"}.ss-chk:before{content:"\e634"}.ss-bok:before{content:"\e635"}.ss-sok:before{content:"\e636"}.ss-rav:before{content:"\e637"}.ss-gpt:before{content:"\e638"}.ss-dis:before{content:"\e639"}.ss-tsp:before{content:"\e63a"}.ss-plc:before{content:"\e63b"}.ss-fut:before{content:"\e63c"}.ss-lrw:before{content:"\e63d"}.ss-mor:before{content:"\e63e"}.ss-shm:before{content:"\e63f"}.ss-eve:before{content:"\e640"}.ss-ala:before{content:"\e641"}.ss-con:before{content:"\e642"}.ss-arb:before{content:"\e643"}.ss-zen:before{content:"\e644"}.ss-wwk:before{content:"\e645"}.ss-roe:before{content:"\e646"}.ss-som:before{content:"\e647"}.ss-mbs:before{content:"\e648"}.ss-nph:before{content:"\e649"}.ss-isd:before{content:"\e64a"}.ss-dka:before{content:"\e64b"}.ss-avr:before{content:"\e64c"}.ss-rtr:before{content:"\e64d"}.ss-gtc:before{content:"\e64e"}.ss-dgm:before{content:"\e64f"}.ss-ths:before{content:"\e650"}.ss-bng:before{content:"\e651"}.ss-jou:before{content:"\e652"}.ss-ktk:before{content:"\e653"}.ss-frf:before{content:"\e654"}.ss-dtk:before{content:"\e693"}.ss-bfz:before{content:"\e699"}.ss-ogw:before{content:"\e901"}.ss-soi:before{content:"\e902"}.ss-emn:before{content:"\e90b"}.ss-kld:before{content:"\e90e"}.ss-aer:before{content:"\e90f"}.ss-akh:before{content:"\e914"}.ss-hou:before{content:"\e924"}.ss-xln:before{content:"\e92e"}.ss-rix:before{content:"\e92f"}.ss-dom:before{content:"\e93f"}.ss-gk1:before,.ss-grn:before{content:"\e94b"}.ss-gk2:before,.ss-rna:before{content:"\e959"}.ss-war:before{content:"\e95a"}.ss-eld:before{content:"\e95e"}.ss-thb:before{content:"\e961"}.ss-iko:before{content:"\e962"}.ss-znr:before{content:"\e963"}.ss-khm:before,.ss-xkld:before{content:"\e974"}.ss-stx:before,.ss-xssm:before{content:"\e975"}.ss-mid:before{content:"\e978"}.ss-vow:before{content:"\e977"}.ss-neo:before{content:"\e98c"}.ss-snc:before{content:"\e98b"}.ss-dmu:before{content:"\e993"}.ss-bro:before{content:"\e99d"}.ss-one:before{content:"\e9a1"}.ss-mom:before{content:"\e9a2"}.ss-mat:before{content:"\e9a3"}.ss-woe:before{content:"\e9ae"}.ss-lci:before{content:"\e9c2"}.ss-mkm:before{content:"\e9c9"}.ss-otj:before{content:"\e9cc"}.ss-blb:before{content:"\e9cd"}.ss-van:before{content:"\e655"}.ss-hop:before{content:"\e656"}.ss-arc:before{content:"\e657"}.ss-cmd:before{content:"\e658"}.ss-pc2:before{content:"\e659"}.ss-cm1:before{content:"\e65a"}.ss-c13:before{content:"\e65b"}.ss-cns:before{content:"\e65c"}.ss-c14:before{content:"\e65d"}.ss-c15:before{content:"\e900"}.ss-cn2:before{content:"\e904"}.ss-c16:before{content:"\e910"}.ss-pca:before{content:"\e911"}.ss-cma:before{content:"\e916"}.ss-ann:before,.ss-e01:before{content:"\e92d"}.ss-e02:before{content:"\e931"}.ss-c17:before{content:"\e934"}.ss-cm2:before{content:"\e940"}.ss-bbd:before{content:"\e942"}.ss-c18:before{content:"\e946"}.ss-c19:before{content:"\e95f"}.ss-c20:before{content:"\e966"}.ss-znc:before{content:"\e967"}.ss-cc1:before{content:"\e968"}.ss-cmc:before,.ss-cmr:before{content:"\e969"}.ss-khc:before{content:"\e97d"}.ss-c21:before{content:"\e97e"}.ss-afc:before{content:"\e981"}.ss-mic:before{content:"\e985"}.ss-voc:before{content:"\e986"}.ss-cc2:before{content:"\e987"}.ss-nec:before{content:"\e98d"}.ss-ncc:before{content:"\e98e"}.ss-clb:before{content:"\e991"}.ss-dmc:before{content:"\e994"}.ss-40k:before{content:"\e998"}.ss-brc:before{content:"\e99f"}.ss-onc:before{content:"\e9a8"}.ss-moc:before{content:"\e9a9"}.ss-scd:before{content:"\e9ab"}.ss-cmm:before{content:"\e9b5"}.ss-ltc:before{content:"\e9b6"}.ss-woc:before{content:"\e9b9"}.ss-lcc:before{content:"\e9c7"}.ss-mkc:before{content:"\e9ca"}.ss-otc:before{content:"\e9d2"}.ss-blc:before{content:"\e9d4"}.ss-m3c:before{content:"\e9d0"}.ss-chr:before{content:"\e65e"}.ss-ath:before{content:"\e65f"}.ss-brb:before{content:"\e660"}.ss-btd:before{content:"\e661"}.ss-dkm:before{content:"\e662"}.ss-mma:before{content:"\e663"}.ss-mm2:before{content:"\e695"}.ss-ema:before{content:"\e903"}.ss-mm3:before{content:"\e912"}.ss-xren:before{content:"\e917"}.ss-xrin:before{content:"\e918"}.ss-ima:before{content:"\e935"}.ss-a25:before{content:"\e93d"}.ss-uma:before{content:"\e958"}.ss-mh1:before{content:"\e95b"}.ss-2xm:before{content:"\e96e"}.ss-jmp:before{content:"\e96f"}.ss-mb1:before{content:"\e971"}.ss-mh2:before{content:"\e97b"}.ss-sta:before{content:"\e980"}.ss-j21:before{content:"\e983"}.ss-2x2:before{content:"\e99c"}.ss-brr:before{content:"\e9a0"}.ss-j22:before{content:"\e9ad"}.ss-mul:before{content:"\e9ba"}.ss-wot:before{content:"\e9c0"}.ss-br:before{content:"\e9c1"}.ss-spg:before{content:"\e9c8"}.ss-otp:before{content:"\e9d5"}.ss-big:before{content:"\e9d6"}.ss-por:before{content:"\e664"}.ss-p02:before,.ss-po2:before{content:"\e665"}.ss-ptk:before{content:"\e666"}.ss-s99:before{content:"\e667"}.ss-s00:before{content:"\e668"}.ss-w16:before{content:"\e907"}.ss-w17:before{content:"\e923"}.ss-evg:before{content:"\e669"}.ss-dd2:before{content:"\e66a"}.ss-ddc:before{content:"\e66b"}.ss-ddd:before{content:"\e66c"}.ss-dde:before{content:"\e66d"}.ss-ddf:before{content:"\e66e"}.ss-ddg:before{content:"\e66f"}.ss-ddh:before{content:"\e670"}.ss-ddi:before{content:"\e671"}.ss-ddj:before{content:"\e672"}.ss-ddk:before{content:"\e673"}.ss-ddl:before{content:"\e674"}.ss-ddm:before{content:"\e675"}.ss-ddn:before{content:"\e676"}.ss-ddo:before{content:"\e677"}.ss-ddp:before{content:"\e698"}.ss-ddq:before{content:"\e908"}.ss-ddr:before{content:"\e90d"}.ss-td2:before{content:"\e91c"}.ss-dds:before{content:"\e921"}.ss-ddt:before{content:"\e933"}.ss-ddu:before{content:"\e93e"}.ss-drb:before{content:"\e678"}.ss-v09:before{content:"\e679"}.ss-v10:before{content:"\e67a"}.ss-v11:before{content:"\e67b"}.ss-v12:before{content:"\e67c"}.ss-v13:before{content:"\e67d"}.ss-v14:before{content:"\e67e"}.ss-v15:before{content:"\e905"}.ss-v16:before{content:"\e906"}.ss-v0x:before{content:"\e920"}.ss-v17:before{content:"\e939"}.ss-h09:before{content:"\e67f"}.ss-pd2:before{content:"\e680"}.ss-pd3:before{content:"\e681"}.ss-md1:before{content:"\e682"}.ss-ss1:before{content:"\e944"}.ss-ss2:before{content:"\e95c"}.ss-ss3:before{content:"\e96d"}.ss-gs1:before{content:"\e945"}.ss-azorius:before{content:"\e94e"}.ss-boros:before{content:"\e94f"}.ss-dimir:before{content:"\e950"}.ss-golgari:before{content:"\e951"}.ss-gruul:before{content:"\e952"}.ss-izzet:before{content:"\e953"}.ss-orzhov:before{content:"\e954"}.ss-rakdos:before{content:"\e955"}.ss-selesnya:before{content:"\e956"}.ss-simic:before{content:"\e957"}.ss-gnt:before{content:"\e94d"}.ss-gn2:before{content:"\e964"}.ss-tsr:before{content:"\e976"}.ss-dmr:before{content:"\e9a4"}.ss-gn3:before{content:"\e9a5"}.ss-ltr:before{content:"\e9af"}.ss-who:before{content:"\e9b0"}.ss-rvr:before{content:"\e9bb"}.ss-pip:before{content:"\e9c3"}.ss-clu:before{content:"\e9cb"}.ss-acr:before{content:"\e9ce"}.ss-mh3:before{content:"\e9cf"}.ss-pgru:before{content:"\e683"}.ss-pmtg1:before{content:"\e684"}.ss-pmtg2:before{content:"\e685"}.ss-pleaf:before{content:"\e686"}.ss-htr17:before,.ss-htr:before,.ss-pmei:before{content:"\e687"}.ss-parl:before{content:"\e688"}.ss-dpa:before{content:"\e689"}.ss-pbook:before{content:"\e68a"}.ss-past:before{content:"\e68b"}.ss-parl2:before{content:"\e68c"}.ss-exp:before{content:"\e69a"}.ss-psalvat05:before{content:"\e909"}.ss-psalvat11:before{content:"\e90a"}.ss-mp1:before,.ss-mps:before{content:"\e913"}.ss-pxbox:before{content:"\e915"}.ss-pmps:before{content:"\e919"}.ss-pmpu:before{content:"\e91a"}.ss-mp2:before{content:"\e922"}.ss-pidw:before{content:"\e92c"}.ss-pdrc:before{content:"\e932"}.ss-pheart:before{content:"\e936"}.ss-h17:before{content:"\e938"}.ss-pdep:before{content:"\e93a"}.ss-psega:before{content:"\e93b"}.ss-ptsa:before{content:"\e93c"}.ss-parl3:before{content:"\e943"}.ss-med:before{content:"\e94c"}.ss-ptg:before{content:"\e965"}.ss-j20:before{content:"\e96a"}.ss-zne:before{content:"\e97a"}.ss-bot:before{content:"\e99e"}.ss-rex:before{content:"\e9c4"}.ss-slu:before{content:"\e687"}.ss-sld:before{content:"\e687"}.ss-psld:before{content:"\e687"}.ss-sld2:before{content:"\e9bc"}.ss-me1:before{content:"\e68d"}.ss-me2:before{content:"\e68e"}.ss-me3:before{content:"\e68f"}.ss-me4:before{content:"\e690"}.ss-tpr:before{content:"\e694"}.ss-vma:before{content:"\e696"}.ss-pz1:before,.ss-xlcu:before{content:"\e90c"}.ss-modo:before,.ss-pmodo:before{content:"\e91b"}.ss-duels:before,.ss-xduels:before{content:"\e91d"}.ss-xmods:before{content:"\e91e"}.ss-pz2:before{content:"\e91f"}.ss-ha1:before{content:"\e96b"}.ss-akr:before{content:"\e970"}.ss-klr:before{content:"\e97c"}.ss-y22:before{content:"\e989"}.ss-hbg:before{content:"\e9a6"}.ss-ydmu:before{content:"\e9a7"}.ss-sir:before{content:"\e9b1"}.ss-sis:before{content:"\e9b2"}.ss-ea1:before{content:"\e9b4"}.ss-y24:before{content:"\e9bd"}.ss-ugl:before{content:"\e691"}.ss-unh:before{content:"\e692"}.ss-ust:before{content:"\e930"}.ss-und:before{content:"\e96c"}.ss-unf:before{content:"\e98a"}.ss-una:before{content:"\e9be"}.ss-xcle:before{content:"\e926"}.ss-xice:before{content:"\e927"}.ss-x2ps:before{content:"\e928"}.ss-x4ea:before{content:"\e929"}.ss-papac:before{content:"\e92a"}.ss-peuro:before{content:"\e92b"}.ss-pfnm:before{content:"\e937"}.ss-30a:before{content:"\e9aa"}.ss-border:not(.ss-duo)::after{content:"";position:absolute;left:-.05em;top:0;color:#fff;font-size:1.15em;z-index:-1;background:#fff;-webkit-text-stroke:.05em #fff;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.ss-border.ss-van:after{content:"\e655"}.ss-border.ss-hop:after{content:"\e656"}.ss-border.ss-arc:after{content:"\e657"}.ss-border.ss-cmd:after{content:"\e658"}.ss-border.ss-pc2:after{content:"\e659"}.ss-border.ss-cm1:after{content:"\e65a"}.ss-border.ss-c13:after{content:"\e65b"}.ss-border.ss-cns:after{content:"\e65c"}.ss-border.ss-c14:after{content:"\e65d"}.ss-border.ss-c15:after{content:"\e900"}.ss-border.ss-sis::before{content:"\e9b3"}.ss-border.ss-sis::after{content:"\e9b2"}.ss-border.ss-40k{display:list-item;list-style-position:inside}.ss-border.ss-40k::before{position:absolute;left:0;top:0}.ss-border.ss-40k::marker{content:"\e99a";color:#000}.ss-border.ss-dmc{display:list-item;list-style-position:inside}.ss-border.ss-dmc::before{position:absolute;left:0;top:0}.ss-border.ss-dmc::marker{content:"\e996";color:#000} \ No newline at end of file +/** + * Global */ +@font-face { + font-family: 'Keyrune'; + src: url('../fonts/keyrune.eot?v=3.14.0'); + src: url('../fonts/keyrune.eot?#iefix&v=3.14.0') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.14.0') format('woff2'), url('../fonts/keyrune.woff?v=3.14.0') format('woff'), url('../fonts/keyrune.ttf?v=3.14.0') format('truetype'), url('../fonts/keyrune.svg?v=3.14.0#keyrune') format('svg'); + font-weight: normal; + font-style: normal; +} +.ss { + display: inline-block; + font: normal normal normal 14px/1 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-osx-font-smoothing: grayscale; +} +.ss:before { + content: "\e684"; +} +/** + * Larger sizes */ +.ss-2x { + font-size: 2em; +} +.ss-3x { + font-size: 3em; +} +.ss-4x { + font-size: 4em; +} +.ss-5x { + font-size: 5em; +} +.ss-6x { + font-size: 6em; +} +/** + * Handling for set symbols that use an inner and outer layer, like M21 + * + * The inner layer is what gets colorized and is the traditional "set symbol" + * The outer layer takes over as the border, and is white for common cards + * but black for uncommon, rare, and mythic. + */ +.ss-duo { + color: #fff; + /** + * white sections are ::after + * color sections are ::before */ +} +.ss-duo::after { + color: #000; + content: ''; + display: block; + font-size: 1em; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; +} +.ss-duo.ss-40k::before { + content: "\e999"; + width: 100%; +} +.ss-duo.ss-40k::after { + content: "\e99b"; + color: #fff !important; +} +.ss-duo.ss-xdnd::after, +.ss-duo.ss-afr::after { + content: "\e973"; +} +.ss-duo.ss-afc::after { + content: "\e982"; +} +.ss-duo.ss-c21::after { + content: "\e97f"; +} +.ss-duo.ss-clb::after { + content: "\e992"; +} +.ss-duo.ss-cc2::after { + content: "\e988"; +} +.ss-duo.ss-dmc::before { + content: "\e995"; + width: 100%; +} +.ss-duo.ss-dmc::after { + content: "\e997"; + color: #fff !important; +} +.ss-duo.ss-j21::after { + content: "\e984"; +} +.ss-duo.ss-khc::before { + content: "\e9c5"; + width: 100%; +} +.ss-duo.ss-khc::after { + content: "\e9c6"; + color: #fff !important; +} +.ss-duo.ss-ltc::before { + content: "\e9b7"; + width: 100%; +} +.ss-duo.ss-ltc::after { + content: "\e9b8"; + color: #fff !important; +} +.ss-duo.ss-m3c::after { + content: "\e9d1"; + color: #fff !important; +} +.ss-duo.ss-mid::after { + content: "\e979"; +} +.ss-duo.ss-otc::after { + content: "\e9d3"; + color: #fff !important; +} +.ss-duo.ss-scd::after { + content: "\e9ac"; +} +.ss-duo.ss-ncc::before { + content: "\e98f"; +} +.ss-duo.ss-ncc::after { + content: "\e990"; +} +.ss-duo.ss-una::after { + content: "\e9bf"; + color: #fff !important; +} +.ss-duo.ss-common:after { + color: #fff; +} +.ss-duo.ss-uncommon::after, +.ss-duo.ss-rare::after, +.ss-duo.ss-mythic::after { + color: #000; +} +.ss-duo.ss-uncommon.ss-clb::after, +.ss-duo.ss-rare.ss-clb::after, +.ss-duo.ss-mythic.ss-clb::after { + color: #fff; +} +/** + * Rarity colors */ +.ss-common { + color: #1A1718; +} +.ss-common.ss-grad { + background: -webkit-gradient(linear, left top, right top, color-stop(1%, #302b2c), color-stop(50%, #474040), color-stop(100%, #302b2c)); + /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(left, #302b2c 1%, #474040 50%, #302b2c 100%); + -webkit-text-stroke: 0.03em #000; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} +.ss-common.ss-grad.ss-no-border, +.ss-common.ss-grad.ss-duo { + -webkit-text-stroke: 0; +} +.ss-uncommon { + color: #707883; +} +.ss-uncommon.ss-grad { + background: -webkit-gradient(linear, left top, right top, color-stop(0%, #5a6572), color-stop(50%, #9e9e9e), color-stop(100%, #5a6572)); + /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(left, #5a6572 0%, #9e9e9e 50%, #5a6572 100%); + -webkit-text-stroke: 0.03em #111; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} +.ss-uncommon.ss-grad.ss-no-border, +.ss-uncommon.ss-grad.ss-duo { + -webkit-text-stroke: 0; +} +.ss-uncommon.ss-grad.ss-duo::after { + -webkit-text-fill-color: inherit; +} +.ss-rare { + color: #A58E4A; +} +.ss-rare.ss-grad { + background: -webkit-gradient(linear, left top, right top, color-stop(0%, #876a3b), color-stop(50%, #dfbd6b), color-stop(100%, #876a3b)); + /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(left, #876a3b 0%, #dfbd6b 50%, #876a3b 100%); + -webkit-text-stroke: 0.03em #333; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} +.ss-rare.ss-grad.ss-no-border, +.ss-rare.ss-grad.ss-duo { + -webkit-text-stroke: 0; +} +.ss-rare.ss-grad.ss-duo::after { + -webkit-text-fill-color: inherit; +} +.ss-mythic { + color: #BF4427; +} +.ss-mythic.ss-grad { + background: -webkit-gradient(linear, left top, right top, color-stop(0%, #b21f0f), color-stop(50%, #f38300), color-stop(100%, #b21f0f)); + /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(left, #b21f0f 0%, #f38300 50%, #b21f0f 100%); + -webkit-text-stroke: 0.03em #333; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} +.ss-mythic.ss-grad.ss-no-border, +.ss-mythic.ss-grad.ss-duo { + -webkit-text-stroke: 0; +} +.ss-mythic.ss-grad.ss-duo::after { + -webkit-text-fill-color: inherit; +} +.ss-timeshifted { + color: #652978; +} +.ss-timeshifted.ss-grad { + background: -webkit-gradient(linear, left top, right top, color-stop(0%, #652978), color-stop(50%, #c09ac5), color-stop(100%, #652978)); + /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(-45deg, #652978 0%, #c09ac5 50%, #652978 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(135deg, #652978 0%, #c09ac5 50%, #652978 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + -webkit-text-stroke: 0.03em #333; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} +.ss-timeshifted.ss-grad.ss-no-border, +.ss-timeshifted.ss-grad.ss-duo { + -webkit-text-stroke: 0; +} +.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; +} +.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; +} +/** + * Fixed width */ +.ss-fw { + width: 1.28571429em; + text-align: center; +} +/** + * Core */ +.ss-lea:before { + content: "\e600"; +} +.ss-leb:before { + content: "\e601"; +} +.ss-2ed:before { + content: "\e602"; +} +.ss-3ed:before { + content: "\e603"; +} +.ss-4ed:before { + content: "\e604"; +} +.ss-psum:before { + content: "\e605"; +} +.ss-5ed:before { + content: "\e606"; +} +.ss-6ed:before { + content: "\e607"; +} +.ss-7ed:before { + content: "\e608"; +} +.ss-8ed:before { + content: "\e609"; +} +.ss-9ed:before { + content: "\e60a"; +} +.ss-10e:before { + content: "\e60b"; +} +.ss-m10:before { + content: "\e60c"; +} +.ss-m11:before { + content: "\e60d"; +} +.ss-m12:before { + content: "\e60e"; +} +.ss-m13:before { + content: "\e60f"; +} +.ss-m14:before { + content: "\e610"; +} +.ss-m15:before { + content: "\e611"; +} +.ss-bcore:before { + content: "\e612"; +} +.ss-ori:before { + content: "\e697"; +} +.ss-m19:before { + content: "\e941"; +} +.ss-m20:before { + content: "\e95d"; +} +.ss-1e:before { + content: "\e947"; +} +.ss-2e:before { + content: "\e948"; +} +.ss-2u:before { + content: "\e949"; +} +.ss-3e:before { + content: "\e94a"; +} +.ss-m21:before { + content: "\e960"; +} +.ss-xdnd:before, +.ss-afr:before { + content: "\e972"; +} +/** + * Expansions */ +/* Artifact Block */ +.ss-arn:before { + content: "\e613"; +} +.ss-atq:before { + content: "\e614"; +} +.ss-leg:before { + content: "\e615"; +} +/* Wizards Block */ +.ss-drk:before { + content: "\e616"; +} +.ss-fem:before { + content: "\e617"; +} +.ss-hml:before { + content: "\e618"; +} +/* Ice Age Block */ +.ss-ice:before { + content: "\e619"; +} +.ss-ice2:before { + content: "\e925"; +} +.ss-all:before { + content: "\e61a"; +} +.ss-csp:before { + content: "\e61b"; +} +/* Mirage Block */ +.ss-mir:before { + content: "\e61c"; +} +.ss-vis:before { + content: "\e61d"; +} +.ss-wth:before { + content: "\e61e"; +} +/* Tempest Block */ +.ss-tmp:before { + content: "\e61f"; +} +.ss-sth:before { + content: "\e620"; +} +.ss-exo:before { + content: "\e621"; +} +/* Urza's Block */ +.ss-usg:before { + content: "\e622"; +} +.ss-ulg:before { + content: "\e623"; +} +.ss-uds:before { + content: "\e624"; +} +/* Mercadian Block */ +.ss-mmq:before { + content: "\e625"; +} +.ss-nem:before, +.ss-nms:before { + content: "\e626"; +} +.ss-pcy:before { + content: "\e627"; +} +/* Invasion Block */ +.ss-inv:before { + content: "\e628"; +} +.ss-pls:before { + content: "\e629"; +} +.ss-apc:before { + content: "\e62a"; +} +/* Odyssey Block */ +.ss-ody:before { + content: "\e62b"; +} +.ss-tor:before { + content: "\e62c"; +} +.ss-jud:before { + content: "\e62d"; +} +/* Onslaught Block */ +.ss-ons:before { + content: "\e62e"; +} +.ss-lgn:before { + content: "\e62f"; +} +.ss-scg:before { + content: "\e630"; +} +/* Mirrodin Block */ +.ss-mrd:before { + content: "\e631"; +} +.ss-dst:before { + content: "\e632"; +} +.ss-5dn:before { + content: "\e633"; +} +/* Kamigawa Block */ +.ss-chk:before { + content: "\e634"; +} +.ss-bok:before { + content: "\e635"; +} +.ss-sok:before { + content: "\e636"; +} +/* Ravnica Block */ +.ss-rav:before { + content: "\e637"; +} +.ss-gpt:before { + content: "\e638"; +} +.ss-dis:before { + content: "\e639"; +} +/* Time Spiral Block */ +.ss-tsp:before { + content: "\e63a"; +} +.ss-plc:before { + content: "\e63b"; +} +.ss-fut:before { + content: "\e63c"; +} +/* Lorwyn Block */ +.ss-lrw:before { + content: "\e63d"; +} +.ss-mor:before { + content: "\e63e"; +} +/* Shadowmoor Block */ +.ss-shm:before { + content: "\e63f"; +} +.ss-eve:before { + content: "\e640"; +} +/* Alara Block */ +.ss-ala:before { + content: "\e641"; +} +.ss-con:before { + content: "\e642"; +} +.ss-arb:before { + content: "\e643"; +} +/* Zendikar Block */ +.ss-zen:before { + content: "\e644"; +} +.ss-wwk:before { + content: "\e645"; +} +.ss-roe:before { + content: "\e646"; +} +/* Scars Block */ +.ss-som:before { + content: "\e647"; +} +.ss-mbs:before { + content: "\e648"; +} +.ss-nph:before { + content: "\e649"; +} +/* Innistrad Block */ +.ss-isd:before { + content: "\e64a"; +} +.ss-dka:before { + content: "\e64b"; +} +.ss-avr:before { + content: "\e64c"; +} +/* RTR Block */ +.ss-rtr:before { + content: "\e64d"; +} +.ss-gtc:before { + content: "\e64e"; +} +.ss-dgm:before { + content: "\e64f"; +} +/* Theros Block */ +.ss-ths:before { + content: "\e650"; +} +.ss-bng:before { + content: "\e651"; +} +.ss-jou:before { + content: "\e652"; +} +/* Khans Block */ +.ss-ktk:before { + content: "\e653"; +} +.ss-frf:before { + content: "\e654"; +} +.ss-dtk:before { + content: "\e693"; +} +/* Return to Zendikar Block */ +.ss-bfz:before { + content: "\e699"; +} +.ss-ogw:before { + content: "\e901"; +} +/* Return to Innistrad Block */ +.ss-soi:before { + content: "\e902"; +} +.ss-emn:before { + content: "\e90b"; +} +/* Kaladesh Block */ +.ss-kld:before { + content: "\e90e"; +} +.ss-aer:before { + content: "\e90f"; +} +/* Amonkhet Block */ +.ss-akh:before { + content: "\e914"; +} +.ss-hou:before { + content: "\e924"; +} +/* Ixalan Block */ +.ss-xln:before { + content: "\e92e"; +} +.ss-rix:before { + content: "\e92f"; +} +/* Dominaria Block */ +.ss-dom:before { + content: "\e93f"; +} +/* Guilds of Ravnica Block */ +.ss-grn:before, +.ss-gk1:before { + content: "\e94b"; +} +.ss-rna:before, +.ss-gk2:before { + content: "\e959"; +} +.ss-war:before { + content: "\e95a"; +} +/* Eldraine Block */ +.ss-eld:before { + content: "\e95e"; +} +/* 2020 Sets */ +.ss-thb:before { + content: "\e961"; +} +.ss-iko:before { + content: "\e962"; +} +.ss-znr:before { + content: "\e963"; +} +/* 2021 Sets */ +.ss-xkld:before, +.ss-khm:before { + content: "\e974"; +} +.ss-xssm:before, +.ss-stx:before { + content: "\e975"; +} +.ss-mid:before { + content: "\e978"; +} +.ss-vow:before { + content: "\e977"; +} +/* 2022 Sets */ +.ss-neo:before { + content: "\e98c"; +} +.ss-snc:before { + content: "\e98b"; +} +.ss-dmu:before { + content: "\e993"; +} +.ss-bro:before { + content: "\e99d"; +} +/* 2023 Sets */ +.ss-one:before { + content: "\e9a1"; +} +.ss-mom:before { + content: "\e9a2"; +} +.ss-mat:before { + content: "\e9a3"; +} +.ss-woe:before { + content: "\e9ae"; +} +.ss-lci:before { + content: "\e9c2"; +} +/* 2024 Sets */ +.ss-mkm:before { + content: "\e9c9"; +} +.ss-otj:before { + content: "\e9cc"; +} +.ss-blb:before { + content: "\e9cd"; +} +.ss-dsk:before { + content: "\1f305"; +} +.ss-fdn:before { + content: "\1f31f"; +} +/** + * Command Zone */ +.ss-van:before { + content: "\e655"; +} +.ss-hop:before { + content: "\e656"; +} +.ss-arc:before { + content: "\e657"; +} +.ss-cmd:before { + content: "\e658"; +} +.ss-pc2:before { + content: "\e659"; +} +.ss-cm1:before { + content: "\e65a"; +} +.ss-c13:before { + content: "\e65b"; +} +.ss-cns:before { + content: "\e65c"; +} +.ss-c14:before { + content: "\e65d"; +} +.ss-c15:before { + content: "\e900"; +} +.ss-cn2:before { + content: "\e904"; +} +.ss-c16:before { + content: "\e910"; +} +.ss-pca:before { + content: "\e911"; +} +.ss-cma:before { + content: "\e916"; +} +.ss-e01:before, +.ss-ann:before { + content: "\e92d"; +} +.ss-e02:before { + content: "\e931"; +} +.ss-c17:before { + content: "\e934"; +} +.ss-cm2:before { + content: "\e940"; +} +.ss-bbd:before { + content: "\e942"; +} +.ss-c18:before { + content: "\e946"; +} +.ss-c19:before { + content: "\e95f"; +} +.ss-c20:before { + content: "\e966"; +} +.ss-znc:before { + content: "\e967"; +} +.ss-cc1:before { + content: "\e968"; +} +.ss-cmr:before, +.ss-cmc:before { + content: "\e969"; +} +.ss-khc:before { + content: "\e97d"; +} +.ss-c21:before { + content: "\e97e"; +} +.ss-afc:before { + content: "\e981"; +} +.ss-mic:before { + content: "\e985"; +} +.ss-voc:before { + content: "\e986"; +} +.ss-cc2:before { + content: "\e987"; +} +.ss-nec:before { + content: "\e98d"; +} +.ss-ncc:before { + content: "\e98e"; +} +.ss-clb:before { + content: "\e991"; +} +.ss-dmc:before { + content: "\e994"; +} +.ss-40k:before { + content: "\e998"; +} +.ss-brc:before { + content: "\e99f"; +} +.ss-onc:before { + content: "\e9a8"; +} +.ss-moc:before { + content: "\e9a9"; +} +.ss-scd:before { + content: "\e9ab"; +} +.ss-cmm:before { + content: "\e9b5"; +} +.ss-ltc:before { + content: "\e9b6"; +} +.ss-woc:before { + content: "\e9b9"; +} +.ss-lcc:before { + content: "\e9c7"; +} +.ss-mkc:before { + content: "\e9ca"; +} +.ss-otc:before { + content: "\e9d2"; +} +.ss-blc:before { + content: "\e9d4"; +} +.ss-m3c:before { + content: "\e9d0"; +} +/** + * Reprint */ +.ss-chr:before { + content: "\e65e"; +} +.ss-ath:before { + content: "\e65f"; +} +.ss-brb:before { + content: "\e660"; +} +.ss-btd:before { + content: "\e661"; +} +.ss-dkm:before { + content: "\e662"; +} +.ss-mma:before { + content: "\e663"; +} +.ss-mm2:before { + content: "\e695"; +} +.ss-ema:before { + content: "\e903"; +} +.ss-mm3:before { + content: "\e912"; +} +.ss-xren:before { + content: "\e917"; +} +.ss-xrin:before { + content: "\e918"; +} +.ss-ima:before { + content: "\e935"; +} +.ss-a25:before { + content: "\e93d"; +} +.ss-uma:before { + content: "\e958"; +} +.ss-mh1:before { + content: "\e95b"; +} +.ss-2xm:before { + content: "\e96e"; +} +.ss-jmp:before { + content: "\e96f"; +} +.ss-mb1:before { + content: "\e971"; +} +.ss-mh2:before { + content: "\e97b"; +} +.ss-sta:before { + content: "\e980"; +} +.ss-j21:before { + content: "\e983"; +} +.ss-2x2:before { + content: "\e99c"; +} +.ss-brr:before { + content: "\e9a0"; +} +.ss-j22:before { + content: "\e9ad"; +} +.ss-mul:before { + content: "\e9ba"; +} +.ss-wot:before { + content: "\e9c0"; +} +.ss-br:before { + content: "\e9c1"; +} +.ss-spg:before { + content: "\e9c8"; +} +.ss-otp:before { + content: "\e9d5"; +} +.ss-big:before { + content: "\e9d6"; +} +/** + * Beginner */ +.ss-por:before { + content: "\e664"; +} +.ss-p02:before, +.ss-po2:before { + content: "\e665"; +} +.ss-ptk:before { + content: "\e666"; +} +.ss-s99:before { + content: "\e667"; +} +.ss-s00:before { + content: "\e668"; +} +.ss-w16:before { + content: "\e907"; +} +.ss-w17:before { + content: "\e923"; +} +/** + * Duel Decks */ +.ss-evg:before { + content: "\e669"; +} +.ss-dd2:before { + content: "\e66a"; +} +.ss-ddc:before { + content: "\e66b"; +} +.ss-ddd:before { + content: "\e66c"; +} +.ss-dde:before { + content: "\e66d"; +} +.ss-ddf:before { + content: "\e66e"; +} +.ss-ddg:before { + content: "\e66f"; +} +.ss-ddh:before { + content: "\e670"; +} +.ss-ddi:before { + content: "\e671"; +} +.ss-ddj:before { + content: "\e672"; +} +.ss-ddk:before { + content: "\e673"; +} +.ss-ddl:before { + content: "\e674"; +} +.ss-ddm:before { + content: "\e675"; +} +.ss-ddn:before { + content: "\e676"; +} +.ss-ddo:before { + content: "\e677"; +} +.ss-ddp:before { + content: "\e698"; +} +.ss-ddq:before { + content: "\e908"; +} +.ss-ddr:before { + content: "\e90d"; +} +.ss-td2:before { + content: "\e91c"; +} +.ss-dds:before { + content: "\e921"; +} +.ss-ddt:before { + content: "\e933"; +} +.ss-ddu:before { + content: "\e93e"; +} +/** + * From the Vault */ +.ss-drb:before { + content: "\e678"; +} +.ss-v09:before { + content: "\e679"; +} +.ss-v10:before { + content: "\e67a"; +} +.ss-v11:before { + content: "\e67b"; +} +.ss-v12:before { + content: "\e67c"; +} +.ss-v13:before { + content: "\e67d"; +} +.ss-v14:before { + content: "\e67e"; +} +.ss-v15:before { + content: "\e905"; +} +.ss-v16:before { + content: "\e906"; +} +.ss-v0x:before { + content: "\e920"; +} +.ss-v17:before { + content: "\e939"; +} +/** + * Premium Deck Series */ +.ss-h09:before { + content: "\e67f"; +} +.ss-pd2:before { + content: "\e680"; +} +.ss-pd3:before { + content: "\e681"; +} +.ss-md1:before { + content: "\e682"; +} +/** + * Signature Spellbook */ +.ss-ss1:before { + content: "\e944"; +} +.ss-ss2:before { + content: "\e95c"; +} +.ss-ss3:before { + content: "\e96d"; +} +/** + * Global Series */ +.ss-gs1:before { + content: "\e945"; +} +/** + * Guild Kits */ +.ss-azorius:before { + content: "\e94e"; +} +.ss-boros:before { + content: "\e94f"; +} +.ss-dimir:before { + content: "\e950"; +} +.ss-golgari:before { + content: "\e951"; +} +.ss-gruul:before { + content: "\e952"; +} +.ss-izzet:before { + content: "\e953"; +} +.ss-orzhov:before { + content: "\e954"; +} +.ss-rakdos:before { + content: "\e955"; +} +.ss-selesnya:before { + content: "\e956"; +} +.ss-simic:before { + content: "\e957"; +} +/** + * Other Supplemental Products */ +.ss-gnt:before { + content: "\e94d"; +} +.ss-gn2:before { + content: "\e964"; +} +.ss-tsr:before { + content: "\e976"; +} +.ss-dmr:before { + content: "\e9a4"; +} +.ss-gn3:before { + content: "\e9a5"; +} +.ss-ltr:before { + content: "\e9af"; +} +.ss-who:before { + content: "\e9b0"; +} +.ss-rvr:before { + content: "\e9bb"; +} +.ss-pip:before { + content: "\e9c3"; +} +.ss-clu:before { + content: "\e9cb"; +} +.ss-acr:before { + content: "\e9ce"; +} +.ss-mh3:before { + content: "\e9cf"; +} +/** + * Promotional */ +.ss-pgru:before { + content: "\e683"; +} +.ss-pmtg1:before { + content: "\e684"; +} +.ss-pmtg2:before { + content: "\e685"; +} +.ss-pleaf:before { + content: "\e686"; +} +.ss-pmei:before, +.ss-htr:before, +.ss-htr17:before { + content: "\e687"; +} +.ss-parl:before { + content: "\e688"; +} +.ss-dpa:before { + content: "\e689"; +} +.ss-pbook:before { + content: "\e68a"; +} +.ss-past:before { + content: "\e68b"; +} +.ss-parl2:before { + content: "\e68c"; +} +.ss-exp:before { + content: "\e69a"; +} +.ss-psalvat05:before { + content: "\e909"; +} +.ss-psalvat11:before { + content: "\e90a"; +} +.ss-mps:before, +.ss-mp1:before { + content: "\e913"; +} +.ss-pxbox:before { + content: "\e915"; +} +.ss-pmps:before { + content: "\e919"; +} +.ss-pmpu:before { + content: "\e91a"; +} +.ss-mp2:before { + content: "\e922"; +} +.ss-pidw:before { + content: "\e92c"; +} +.ss-pdrc:before { + content: "\e932"; +} +.ss-pheart:before { + content: "\e936"; +} +.ss-h17:before { + content: "\e938"; +} +.ss-pdep:before { + content: "\e93a"; +} +.ss-psega:before { + content: "\e93b"; +} +.ss-ptsa:before { + content: "\e93c"; +} +.ss-parl3:before { + content: "\e943"; +} +.ss-med:before { + content: "\e94c"; +} +.ss-ptg:before { + content: "\e965"; +} +.ss-j20:before { + content: "\e96a"; +} +.ss-zne:before { + content: "\e97a"; +} +.ss-bot:before { + content: "\e99e"; +} +.ss-rex:before { + content: "\e9c4"; +} +/** + * Secret Lairs */ +.ss-slu:before { + content: "\e687"; +} +.ss-sld:before { + content: "\e687"; +} +.ss-psld:before { + content: "\e687"; +} +.ss-sld2:before { + content: "\e9bc"; +} +/** + * Online */ +.ss-me1:before { + content: "\e68d"; +} +.ss-me2:before { + content: "\e68e"; +} +.ss-me3:before { + content: "\e68f"; +} +.ss-me4:before { + content: "\e690"; +} +.ss-tpr:before { + content: "\e694"; +} +.ss-vma:before { + content: "\e696"; +} +.ss-pz1:before, +.ss-xlcu:before { + content: "\e90c"; +} +.ss-modo:before, +.ss-pmodo:before { + content: "\e91b"; +} +.ss-duels:before, +.ss-xduels:before { + content: "\e91d"; +} +.ss-xmods:before { + content: "\e91e"; +} +.ss-pz2:before { + content: "\e91f"; +} +.ss-ha1:before { + content: "\e96b"; +} +.ss-akr:before { + content: "\e970"; +} +.ss-klr:before { + content: "\e97c"; +} +.ss-y22:before { + content: "\e989"; +} +.ss-hbg:before { + content: "\e9a6"; +} +.ss-ydmu:before { + content: "\e9a7"; +} +.ss-sir:before { + content: "\e9b1"; +} +.ss-sis:before { + content: "\e9b2"; +} +.ss-ea1:before { + content: "\e9b4"; +} +.ss-y24:before { + content: "\e9bd"; +} +/** + * Un-serious */ +.ss-ugl:before { + content: "\e691"; +} +.ss-unh:before { + content: "\e692"; +} +.ss-ust:before { + content: "\e930"; +} +.ss-und:before { + content: "\e96c"; +} +.ss-unf:before { + content: "\e98a"; +} +.ss-una:before { + content: "\e9be"; +} +/** + * Unofficial */ +.ss-xcle:before { + content: "\e926"; +} +.ss-xice:before { + content: "\e927"; +} +.ss-x2ps:before { + content: "\e928"; +} +.ss-x4ea:before { + content: "\e929"; +} +.ss-papac:before { + content: "\e92a"; +} +.ss-peuro:before { + content: "\e92b"; +} +.ss-pfnm:before { + content: "\e937"; +} +.ss-30a:before { + content: "\e9aa"; +} +.ss-border:not(.ss-duo)::after { + content: ""; + position: absolute; + left: -0.05em; + top: 0em; + color: #fff; + font-size: 1.15em; + z-index: -1; + background: #fff; + -webkit-text-stroke: 0.05em #fff; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} +.ss-border.ss-van:after { + content: "\e655"; +} +.ss-border.ss-hop:after { + content: "\e656"; +} +.ss-border.ss-arc:after { + content: "\e657"; +} +.ss-border.ss-cmd:after { + content: "\e658"; +} +.ss-border.ss-pc2:after { + content: "\e659"; +} +.ss-border.ss-cm1:after { + content: "\e65a"; +} +.ss-border.ss-c13:after { + content: "\e65b"; +} +.ss-border.ss-cns:after { + content: "\e65c"; +} +.ss-border.ss-c14:after { + content: "\e65d"; +} +.ss-border.ss-c15:after { + content: "\e900"; +} +.ss-border.ss-sis::before { + content: "\e9b3"; +} +.ss-border.ss-sis::after { + content: "\e9b2"; +} +.ss-border.ss-40k { + display: list-item; + list-style-position: inside; +} +.ss-border.ss-40k::before { + position: absolute; + left: 0; + top: 0; +} +.ss-border.ss-40k::marker { + content: "\e99a"; + color: #000; +} +.ss-border.ss-dmc { + display: list-item; + list-style-position: inside; +} +.ss-border.ss-dmc::before { + position: absolute; + left: 0; + top: 0; +} +.ss-border.ss-dmc::marker { + content: "\e996"; + color: #000; +} diff --git a/docs/assets/keyrune.min.css b/docs/assets/keyrune.min.css index fe7d9a9..4ee31fb 100644 --- a/docs/assets/keyrune.min.css +++ b/docs/assets/keyrune.min.css @@ -1 +1,1484 @@ -@font-face{font-family:Keyrune;src:url(../fonts/keyrune.eot?v=3.13.1);src:url(../fonts/keyrune.eot?#iefix&v=3.13.1) format('embedded-opentype'),url(../fonts/keyrune.woff2?v=3.13.1) format('woff2'),url(../fonts/keyrune.woff?v=3.13.1) format('woff'),url(../fonts/keyrune.ttf?v=3.13.1) format('truetype'),url(../fonts/keyrune.svg?v=3.13.1#keyrune) format('svg');font-weight:400;font-style:normal}.ss{display:inline-block;font:normal normal normal 14px/1 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-osx-font-smoothing:grayscale}.ss:before{content:"\e684"}.ss-2x{font-size:2em}.ss-3x{font-size:3em}.ss-4x{font-size:4em}.ss-5x{font-size:5em}.ss-6x{font-size:6em}.ss-duo{color:#fff}.ss-duo::after{color:#000;content:'';display:block;font-size:1em;height:100%;left:0;position:absolute;top:0;width:100%}.ss-duo.ss-40k::before{content:"\e999";width:100%}.ss-duo.ss-40k::after{content:"\e99b";color:#fff!important}.ss-duo.ss-afr::after,.ss-duo.ss-xdnd::after{content:"\e973"}.ss-duo.ss-afc::after{content:"\e982"}.ss-duo.ss-c21::after{content:"\e97f"}.ss-duo.ss-clb::after{content:"\e992"}.ss-duo.ss-cc2::after{content:"\e988"}.ss-duo.ss-dmc::before{content:"\e995";width:100%}.ss-duo.ss-dmc::after{content:"\e997";color:#fff!important}.ss-duo.ss-j21::after{content:"\e984"}.ss-duo.ss-khc::before{content:"\e9c5";width:100%}.ss-duo.ss-khc::after{content:"\e9c6";color:#fff!important}.ss-duo.ss-ltc::before{content:"\e9b7";width:100%}.ss-duo.ss-ltc::after{content:"\e9b8";color:#fff!important}.ss-duo.ss-mid::after{content:"\e979"}.ss-duo.ss-m3c::after{content:"\e9d1";color:#fff!important}.ss-duo.ss-otc::after{content:"\e9d3";color:#fff!important}.ss-duo.ss-scd::after{content:"\e9ac"}.ss-duo.ss-ncc::before{content:"\e98f"}.ss-duo.ss-ncc::after{content:"\e990"}.ss-duo.ss-una::after{content:"\e9bf";color:#fff!important}.ss-duo.ss-common:after{color:#fff}.ss-duo.ss-mythic::after,.ss-duo.ss-rare::after,.ss-duo.ss-uncommon::after{color:#000}.ss-duo.ss-mythic.ss-clb::after,.ss-duo.ss-rare.ss-clb::after,.ss-duo.ss-uncommon.ss-clb::after{color:#fff}.ss-common{color:#1A1718}.ss-common.ss-grad{background:-webkit-gradient(linear,left top,right top,color-stop(1%,#302b2c),color-stop(50%,#474040),color-stop(100%,#302b2c));background:-webkit-linear-gradient(left,#302b2c 1%,#474040 50%,#302b2c 100%);-webkit-text-stroke:.03em #000;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.ss-common.ss-grad.ss-duo,.ss-common.ss-grad.ss-no-border{-webkit-text-stroke:0}.ss-uncommon{color:#707883}.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-background-clip:text;-webkit-text-fill-color:transparent}.ss-uncommon.ss-grad.ss-duo,.ss-uncommon.ss-grad.ss-no-border{-webkit-text-stroke:0}.ss-uncommon.ss-grad.ss-duo::after{-webkit-text-fill-color:inherit}.ss-rare{color:#A58E4A}.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-background-clip:text;-webkit-text-fill-color:transparent}.ss-rare.ss-grad.ss-duo,.ss-rare.ss-grad.ss-no-border{-webkit-text-stroke:0}.ss-rare.ss-grad.ss-duo::after{-webkit-text-fill-color:inherit}.ss-mythic{color:#BF4427}.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-background-clip:text;-webkit-text-fill-color:transparent}.ss-mythic.ss-grad.ss-duo,.ss-mythic.ss-grad.ss-no-border{-webkit-text-stroke:0}.ss-mythic.ss-grad.ss-duo::after{-webkit-text-fill-color:inherit}.ss-timeshifted{color:#652978}.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(-45deg,#652978 0,#c09ac5 50%,#652978 100%);background:linear-gradient(135deg,#652978 0,#c09ac5 50%,#652978 100%);-webkit-text-stroke:.03em #333;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.ss-timeshifted.ss-grad.ss-duo,.ss-timeshifted.ss-grad.ss-no-border{-webkit-text-stroke:0}.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%,#eee 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:transparent}.ss-foil.ss-grad.ss-duo,.ss-foil.ss-grad.ss-no-border{-webkit-text-stroke:0}.ss-foil.ss-grad.ss-duo::after{-webkit-text-fill-color:inherit}.ss-fw{width:1.28571429em;text-align:center}.ss-lea:before{content:"\e600"}.ss-leb:before{content:"\e601"}.ss-2ed:before{content:"\e602"}.ss-3ed:before{content:"\e603"}.ss-4ed:before{content:"\e604"}.ss-psum:before{content:"\e605"}.ss-5ed:before{content:"\e606"}.ss-6ed:before{content:"\e607"}.ss-7ed:before{content:"\e608"}.ss-8ed:before{content:"\e609"}.ss-9ed:before{content:"\e60a"}.ss-10e:before{content:"\e60b"}.ss-m10:before{content:"\e60c"}.ss-m11:before{content:"\e60d"}.ss-m12:before{content:"\e60e"}.ss-m13:before{content:"\e60f"}.ss-m14:before{content:"\e610"}.ss-m15:before{content:"\e611"}.ss-bcore:before{content:"\e612"}.ss-ori:before{content:"\e697"}.ss-m19:before{content:"\e941"}.ss-m20:before{content:"\e95d"}.ss-1e:before{content:"\e947"}.ss-2e:before{content:"\e948"}.ss-2u:before{content:"\e949"}.ss-3e:before{content:"\e94a"}.ss-m21:before{content:"\e960"}.ss-afr:before,.ss-xdnd:before{content:"\e972"}.ss-arn:before{content:"\e613"}.ss-atq:before{content:"\e614"}.ss-leg:before{content:"\e615"}.ss-drk:before{content:"\e616"}.ss-fem:before{content:"\e617"}.ss-hml:before{content:"\e618"}.ss-ice:before{content:"\e619"}.ss-ice2:before{content:"\e925"}.ss-all:before{content:"\e61a"}.ss-csp:before{content:"\e61b"}.ss-mir:before{content:"\e61c"}.ss-vis:before{content:"\e61d"}.ss-wth:before{content:"\e61e"}.ss-tmp:before{content:"\e61f"}.ss-sth:before{content:"\e620"}.ss-exo:before{content:"\e621"}.ss-usg:before{content:"\e622"}.ss-ulg:before{content:"\e623"}.ss-uds:before{content:"\e624"}.ss-mmq:before{content:"\e625"}.ss-nem:before,.ss-nms:before{content:"\e626"}.ss-pcy:before{content:"\e627"}.ss-inv:before{content:"\e628"}.ss-pls:before{content:"\e629"}.ss-apc:before{content:"\e62a"}.ss-ody:before{content:"\e62b"}.ss-tor:before{content:"\e62c"}.ss-jud:before{content:"\e62d"}.ss-ons:before{content:"\e62e"}.ss-lgn:before{content:"\e62f"}.ss-scg:before{content:"\e630"}.ss-mrd:before{content:"\e631"}.ss-dst:before{content:"\e632"}.ss-5dn:before{content:"\e633"}.ss-chk:before{content:"\e634"}.ss-bok:before{content:"\e635"}.ss-sok:before{content:"\e636"}.ss-rav:before{content:"\e637"}.ss-gpt:before{content:"\e638"}.ss-dis:before{content:"\e639"}.ss-tsp:before{content:"\e63a"}.ss-plc:before{content:"\e63b"}.ss-fut:before{content:"\e63c"}.ss-lrw:before{content:"\e63d"}.ss-mor:before{content:"\e63e"}.ss-shm:before{content:"\e63f"}.ss-eve:before{content:"\e640"}.ss-ala:before{content:"\e641"}.ss-con:before{content:"\e642"}.ss-arb:before{content:"\e643"}.ss-zen:before{content:"\e644"}.ss-wwk:before{content:"\e645"}.ss-roe:before{content:"\e646"}.ss-som:before{content:"\e647"}.ss-mbs:before{content:"\e648"}.ss-nph:before{content:"\e649"}.ss-isd:before{content:"\e64a"}.ss-dka:before{content:"\e64b"}.ss-avr:before{content:"\e64c"}.ss-rtr:before{content:"\e64d"}.ss-gtc:before{content:"\e64e"}.ss-dgm:before{content:"\e64f"}.ss-ths:before{content:"\e650"}.ss-bng:before{content:"\e651"}.ss-jou:before{content:"\e652"}.ss-ktk:before{content:"\e653"}.ss-frf:before{content:"\e654"}.ss-dtk:before{content:"\e693"}.ss-bfz:before{content:"\e699"}.ss-ogw:before{content:"\e901"}.ss-soi:before{content:"\e902"}.ss-emn:before{content:"\e90b"}.ss-kld:before{content:"\e90e"}.ss-aer:before{content:"\e90f"}.ss-akh:before{content:"\e914"}.ss-hou:before{content:"\e924"}.ss-xln:before{content:"\e92e"}.ss-rix:before{content:"\e92f"}.ss-dom:before{content:"\e93f"}.ss-gk1:before,.ss-grn:before{content:"\e94b"}.ss-gk2:before,.ss-rna:before{content:"\e959"}.ss-war:before{content:"\e95a"}.ss-eld:before{content:"\e95e"}.ss-thb:before{content:"\e961"}.ss-iko:before{content:"\e962"}.ss-znr:before{content:"\e963"}.ss-khm:before,.ss-xkld:before{content:"\e974"}.ss-stx:before,.ss-xssm:before{content:"\e975"}.ss-mid:before{content:"\e978"}.ss-vow:before{content:"\e977"}.ss-neo:before{content:"\e98c"}.ss-snc:before{content:"\e98b"}.ss-dmu:before{content:"\e993"}.ss-bro:before{content:"\e99d"}.ss-one:before{content:"\e9a1"}.ss-mom:before{content:"\e9a2"}.ss-mat:before{content:"\e9a3"}.ss-woe:before{content:"\e9ae"}.ss-lci:before{content:"\e9c2"}.ss-mkm:before{content:"\e9c9"}.ss-otj:before{content:"\e9cc"}.ss-blb:before{content:"\e9cd"}.ss-van:before{content:"\e655"}.ss-hop:before{content:"\e656"}.ss-arc:before{content:"\e657"}.ss-cmd:before{content:"\e658"}.ss-pc2:before{content:"\e659"}.ss-cm1:before{content:"\e65a"}.ss-c13:before{content:"\e65b"}.ss-cns:before{content:"\e65c"}.ss-c14:before{content:"\e65d"}.ss-c15:before{content:"\e900"}.ss-cn2:before{content:"\e904"}.ss-c16:before{content:"\e910"}.ss-pca:before{content:"\e911"}.ss-cma:before{content:"\e916"}.ss-ann:before,.ss-e01:before{content:"\e92d"}.ss-e02:before{content:"\e931"}.ss-c17:before{content:"\e934"}.ss-cm2:before{content:"\e940"}.ss-bbd:before{content:"\e942"}.ss-c18:before{content:"\e946"}.ss-c19:before{content:"\e95f"}.ss-c20:before{content:"\e966"}.ss-znc:before{content:"\e967"}.ss-cc1:before{content:"\e968"}.ss-cmc:before,.ss-cmr:before{content:"\e969"}.ss-khc:before{content:"\e97d"}.ss-c21:before{content:"\e97e"}.ss-afc:before{content:"\e981"}.ss-mic:before{content:"\e985"}.ss-voc:before{content:"\e986"}.ss-cc2:before{content:"\e987"}.ss-nec:before{content:"\e98d"}.ss-ncc:before{content:"\e98e"}.ss-clb:before{content:"\e991"}.ss-dmc:before{content:"\e994"}.ss-40k:before{content:"\e998"}.ss-brc:before{content:"\e99f"}.ss-onc:before{content:"\e9a8"}.ss-moc:before{content:"\e9a9"}.ss-scd:before{content:"\e9ab"}.ss-cmm:before{content:"\e9b5"}.ss-ltc:before{content:"\e9b6"}.ss-woc:before{content:"\e9b9"}.ss-lcc:before{content:"\e9c7"}.ss-mkc:before{content:"\e9ca"}.ss-otc:before{content:"\e9d2"}.ss-blc:before{content:"\e9d4"}.ss-m3c:before{content:"\e9d0"}.ss-chr:before{content:"\e65e"}.ss-ath:before{content:"\e65f"}.ss-brb:before{content:"\e660"}.ss-btd:before{content:"\e661"}.ss-dkm:before{content:"\e662"}.ss-mma:before{content:"\e663"}.ss-mm2:before{content:"\e695"}.ss-ema:before{content:"\e903"}.ss-mm3:before{content:"\e912"}.ss-xren:before{content:"\e917"}.ss-xrin:before{content:"\e918"}.ss-ima:before{content:"\e935"}.ss-a25:before{content:"\e93d"}.ss-uma:before{content:"\e958"}.ss-mh1:before{content:"\e95b"}.ss-2xm:before{content:"\e96e"}.ss-jmp:before{content:"\e96f"}.ss-mb1:before{content:"\e971"}.ss-mh2:before{content:"\e97b"}.ss-sta:before{content:"\e980"}.ss-j21:before{content:"\e983"}.ss-2x2:before{content:"\e99c"}.ss-brr:before{content:"\e9a0"}.ss-j22:before{content:"\e9ad"}.ss-mul:before{content:"\e9ba"}.ss-wot:before{content:"\e9c0"}.ss-br:before{content:"\e9c1"}.ss-spg:before{content:"\e9c8"}.ss-otp:before{content:"\e9d5"}.ss-big:before{content:"\e9d6"}.ss-por:before{content:"\e664"}.ss-p02:before,.ss-po2:before{content:"\e665"}.ss-ptk:before{content:"\e666"}.ss-s99:before{content:"\e667"}.ss-s00:before{content:"\e668"}.ss-w16:before{content:"\e907"}.ss-w17:before{content:"\e923"}.ss-evg:before{content:"\e669"}.ss-dd2:before{content:"\e66a"}.ss-ddc:before{content:"\e66b"}.ss-ddd:before{content:"\e66c"}.ss-dde:before{content:"\e66d"}.ss-ddf:before{content:"\e66e"}.ss-ddg:before{content:"\e66f"}.ss-ddh:before{content:"\e670"}.ss-ddi:before{content:"\e671"}.ss-ddj:before{content:"\e672"}.ss-ddk:before{content:"\e673"}.ss-ddl:before{content:"\e674"}.ss-ddm:before{content:"\e675"}.ss-ddn:before{content:"\e676"}.ss-ddo:before{content:"\e677"}.ss-ddp:before{content:"\e698"}.ss-ddq:before{content:"\e908"}.ss-ddr:before{content:"\e90d"}.ss-td2:before{content:"\e91c"}.ss-dds:before{content:"\e921"}.ss-ddt:before{content:"\e933"}.ss-ddu:before{content:"\e93e"}.ss-drb:before{content:"\e678"}.ss-v09:before{content:"\e679"}.ss-v10:before{content:"\e67a"}.ss-v11:before{content:"\e67b"}.ss-v12:before{content:"\e67c"}.ss-v13:before{content:"\e67d"}.ss-v14:before{content:"\e67e"}.ss-v15:before{content:"\e905"}.ss-v16:before{content:"\e906"}.ss-v0x:before{content:"\e920"}.ss-v17:before{content:"\e939"}.ss-h09:before{content:"\e67f"}.ss-pd2:before{content:"\e680"}.ss-pd3:before{content:"\e681"}.ss-md1:before{content:"\e682"}.ss-ss1:before{content:"\e944"}.ss-ss2:before{content:"\e95c"}.ss-ss3:before{content:"\e96d"}.ss-gs1:before{content:"\e945"}.ss-azorius:before{content:"\e94e"}.ss-boros:before{content:"\e94f"}.ss-dimir:before{content:"\e950"}.ss-golgari:before{content:"\e951"}.ss-gruul:before{content:"\e952"}.ss-izzet:before{content:"\e953"}.ss-orzhov:before{content:"\e954"}.ss-rakdos:before{content:"\e955"}.ss-selesnya:before{content:"\e956"}.ss-simic:before{content:"\e957"}.ss-gnt:before{content:"\e94d"}.ss-gn2:before{content:"\e964"}.ss-tsr:before{content:"\e976"}.ss-dmr:before{content:"\e9a4"}.ss-gn3:before{content:"\e9a5"}.ss-ltr:before{content:"\e9af"}.ss-who:before{content:"\e9b0"}.ss-rvr:before{content:"\e9bb"}.ss-pip:before{content:"\e9c3"}.ss-clu:before{content:"\e9cb"}.ss-acr:before{content:"\e9ce"}.ss-mh3:before{content:"\e9cf"}.ss-pgru:before{content:"\e683"}.ss-pmtg1:before{content:"\e684"}.ss-pmtg2:before{content:"\e685"}.ss-pleaf:before{content:"\e686"}.ss-htr17:before,.ss-htr:before,.ss-pmei:before{content:"\e687"}.ss-parl:before{content:"\e688"}.ss-dpa:before{content:"\e689"}.ss-pbook:before{content:"\e68a"}.ss-past:before{content:"\e68b"}.ss-parl2:before{content:"\e68c"}.ss-exp:before{content:"\e69a"}.ss-psalvat05:before{content:"\e909"}.ss-psalvat11:before{content:"\e90a"}.ss-mp1:before,.ss-mps:before{content:"\e913"}.ss-pxbox:before{content:"\e915"}.ss-pmps:before{content:"\e919"}.ss-pmpu:before{content:"\e91a"}.ss-mp2:before{content:"\e922"}.ss-pidw:before{content:"\e92c"}.ss-pdrc:before{content:"\e932"}.ss-pheart:before{content:"\e936"}.ss-h17:before{content:"\e938"}.ss-pdep:before{content:"\e93a"}.ss-psega:before{content:"\e93b"}.ss-ptsa:before{content:"\e93c"}.ss-parl3:before{content:"\e943"}.ss-med:before{content:"\e94c"}.ss-ptg:before{content:"\e965"}.ss-j20:before{content:"\e96a"}.ss-zne:before{content:"\e97a"}.ss-bot:before{content:"\e99e"}.ss-rex:before{content:"\e9c4"}.ss-slu:before{content:"\e687"}.ss-sld:before{content:"\e687"}.ss-psld:before{content:"\e687"}.ss-sld2:before{content:"\e9bc"}.ss-me1:before{content:"\e68d"}.ss-me2:before{content:"\e68e"}.ss-me3:before{content:"\e68f"}.ss-me4:before{content:"\e690"}.ss-tpr:before{content:"\e694"}.ss-vma:before{content:"\e696"}.ss-pz1:before,.ss-xlcu:before{content:"\e90c"}.ss-modo:before,.ss-pmodo:before{content:"\e91b"}.ss-duels:before,.ss-xduels:before{content:"\e91d"}.ss-xmods:before{content:"\e91e"}.ss-pz2:before{content:"\e91f"}.ss-ha1:before{content:"\e96b"}.ss-akr:before{content:"\e970"}.ss-klr:before{content:"\e97c"}.ss-y22:before{content:"\e989"}.ss-hbg:before{content:"\e9a6"}.ss-ydmu:before{content:"\e9a7"}.ss-sir:before{content:"\e9b1"}.ss-sis:before{content:"\e9b2"}.ss-ea1:before{content:"\e9b4"}.ss-y24:before{content:"\e9bd"}.ss-ugl:before{content:"\e691"}.ss-unh:before{content:"\e692"}.ss-ust:before{content:"\e930"}.ss-und:before{content:"\e96c"}.ss-unf:before{content:"\e98a"}.ss-una:before{content:"\e9be"}.ss-xcle:before{content:"\e926"}.ss-xice:before{content:"\e927"}.ss-x2ps:before{content:"\e928"}.ss-x4ea:before{content:"\e929"}.ss-papac:before{content:"\e92a"}.ss-peuro:before{content:"\e92b"}.ss-pfnm:before{content:"\e937"}.ss-30a:before{content:"\e9aa"}.ss-border:not(.ss-duo)::after{content:"";position:absolute;left:-.05em;top:0;color:#fff;font-size:1.15em;z-index:-1;background:#fff;-webkit-text-stroke:.05em #fff;-webkit-background-clip:text;-webkit-text-fill-color:transparent}.ss-border.ss-van:after{content:"\e655"}.ss-border.ss-hop:after{content:"\e656"}.ss-border.ss-arc:after{content:"\e657"}.ss-border.ss-cmd:after{content:"\e658"}.ss-border.ss-pc2:after{content:"\e659"}.ss-border.ss-cm1:after{content:"\e65a"}.ss-border.ss-c13:after{content:"\e65b"}.ss-border.ss-cns:after{content:"\e65c"}.ss-border.ss-c14:after{content:"\e65d"}.ss-border.ss-c15:after{content:"\e900"}.ss-border.ss-sis::before{content:"\e9b3"}.ss-border.ss-sis::after{content:"\e9b2"}.ss-border.ss-40k{display:list-item;list-style-position:inside}.ss-border.ss-40k::before{position:absolute;left:0;top:0}.ss-border.ss-40k::marker{content:"\e99a";color:#000}.ss-border.ss-dmc{display:list-item;list-style-position:inside}.ss-border.ss-dmc::before{position:absolute;left:0;top:0}.ss-border.ss-dmc::marker{content:"\e996";color:#000} \ No newline at end of file +/** + * Global */ +@font-face { + font-family: 'Keyrune'; + src: url('../fonts/keyrune.eot?v=3.14.0'); + src: url('../fonts/keyrune.eot?#iefix&v=3.14.0') format('embedded-opentype'), url('../fonts/keyrune.woff2?v=3.14.0') format('woff2'), url('../fonts/keyrune.woff?v=3.14.0') format('woff'), url('../fonts/keyrune.ttf?v=3.14.0') format('truetype'), url('../fonts/keyrune.svg?v=3.14.0#keyrune') format('svg'); + font-weight: normal; + font-style: normal; +} +.ss { + display: inline-block; + font: normal normal normal 14px/1 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-osx-font-smoothing: grayscale; +} +.ss:before { + content: "\e684"; +} +/** + * Larger sizes */ +.ss-2x { + font-size: 2em; +} +.ss-3x { + font-size: 3em; +} +.ss-4x { + font-size: 4em; +} +.ss-5x { + font-size: 5em; +} +.ss-6x { + font-size: 6em; +} +/** + * Handling for set symbols that use an inner and outer layer, like M21 + * + * The inner layer is what gets colorized and is the traditional "set symbol" + * The outer layer takes over as the border, and is white for common cards + * but black for uncommon, rare, and mythic. + */ +.ss-duo { + color: #fff; + /** + * white sections are ::after + * color sections are ::before */ +} +.ss-duo::after { + color: #000; + content: ''; + display: block; + font-size: 1em; + height: 100%; + left: 0; + position: absolute; + top: 0; + width: 100%; +} +.ss-duo.ss-40k::before { + content: "\e999"; + width: 100%; +} +.ss-duo.ss-40k::after { + content: "\e99b"; + color: #fff !important; +} +.ss-duo.ss-xdnd::after, +.ss-duo.ss-afr::after { + content: "\e973"; +} +.ss-duo.ss-afc::after { + content: "\e982"; +} +.ss-duo.ss-c21::after { + content: "\e97f"; +} +.ss-duo.ss-clb::after { + content: "\e992"; +} +.ss-duo.ss-cc2::after { + content: "\e988"; +} +.ss-duo.ss-dmc::before { + content: "\e995"; + width: 100%; +} +.ss-duo.ss-dmc::after { + content: "\e997"; + color: #fff !important; +} +.ss-duo.ss-j21::after { + content: "\e984"; +} +.ss-duo.ss-khc::before { + content: "\e9c5"; + width: 100%; +} +.ss-duo.ss-khc::after { + content: "\e9c6"; + color: #fff !important; +} +.ss-duo.ss-ltc::before { + content: "\e9b7"; + width: 100%; +} +.ss-duo.ss-ltc::after { + content: "\e9b8"; + color: #fff !important; +} +.ss-duo.ss-m3c::after { + content: "\e9d1"; + color: #fff !important; +} +.ss-duo.ss-mid::after { + content: "\e979"; +} +.ss-duo.ss-otc::after { + content: "\e9d3"; + color: #fff !important; +} +.ss-duo.ss-scd::after { + content: "\e9ac"; +} +.ss-duo.ss-ncc::before { + content: "\e98f"; +} +.ss-duo.ss-ncc::after { + content: "\e990"; +} +.ss-duo.ss-una::after { + content: "\e9bf"; + color: #fff !important; +} +.ss-duo.ss-common:after { + color: #fff; +} +.ss-duo.ss-uncommon::after, +.ss-duo.ss-rare::after, +.ss-duo.ss-mythic::after { + color: #000; +} +.ss-duo.ss-uncommon.ss-clb::after, +.ss-duo.ss-rare.ss-clb::after, +.ss-duo.ss-mythic.ss-clb::after { + color: #fff; +} +/** + * Rarity colors */ +.ss-common { + color: #1A1718; +} +.ss-common.ss-grad { + background: -webkit-gradient(linear, left top, right top, color-stop(1%, #302b2c), color-stop(50%, #474040), color-stop(100%, #302b2c)); + /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(left, #302b2c 1%, #474040 50%, #302b2c 100%); + -webkit-text-stroke: 0.03em #000; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} +.ss-common.ss-grad.ss-no-border, +.ss-common.ss-grad.ss-duo { + -webkit-text-stroke: 0; +} +.ss-uncommon { + color: #707883; +} +.ss-uncommon.ss-grad { + background: -webkit-gradient(linear, left top, right top, color-stop(0%, #5a6572), color-stop(50%, #9e9e9e), color-stop(100%, #5a6572)); + /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(left, #5a6572 0%, #9e9e9e 50%, #5a6572 100%); + -webkit-text-stroke: 0.03em #111; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} +.ss-uncommon.ss-grad.ss-no-border, +.ss-uncommon.ss-grad.ss-duo { + -webkit-text-stroke: 0; +} +.ss-uncommon.ss-grad.ss-duo::after { + -webkit-text-fill-color: inherit; +} +.ss-rare { + color: #A58E4A; +} +.ss-rare.ss-grad { + background: -webkit-gradient(linear, left top, right top, color-stop(0%, #876a3b), color-stop(50%, #dfbd6b), color-stop(100%, #876a3b)); + /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(left, #876a3b 0%, #dfbd6b 50%, #876a3b 100%); + -webkit-text-stroke: 0.03em #333; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} +.ss-rare.ss-grad.ss-no-border, +.ss-rare.ss-grad.ss-duo { + -webkit-text-stroke: 0; +} +.ss-rare.ss-grad.ss-duo::after { + -webkit-text-fill-color: inherit; +} +.ss-mythic { + color: #BF4427; +} +.ss-mythic.ss-grad { + background: -webkit-gradient(linear, left top, right top, color-stop(0%, #b21f0f), color-stop(50%, #f38300), color-stop(100%, #b21f0f)); + /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(left, #b21f0f 0%, #f38300 50%, #b21f0f 100%); + -webkit-text-stroke: 0.03em #333; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} +.ss-mythic.ss-grad.ss-no-border, +.ss-mythic.ss-grad.ss-duo { + -webkit-text-stroke: 0; +} +.ss-mythic.ss-grad.ss-duo::after { + -webkit-text-fill-color: inherit; +} +.ss-timeshifted { + color: #652978; +} +.ss-timeshifted.ss-grad { + background: -webkit-gradient(linear, left top, right top, color-stop(0%, #652978), color-stop(50%, #c09ac5), color-stop(100%, #652978)); + /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(-45deg, #652978 0%, #c09ac5 50%, #652978 100%); + /* Chrome10-25,Safari5.1-6 */ + background: linear-gradient(135deg, #652978 0%, #c09ac5 50%, #652978 100%); + /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ + -webkit-text-stroke: 0.03em #333; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} +.ss-timeshifted.ss-grad.ss-no-border, +.ss-timeshifted.ss-grad.ss-duo { + -webkit-text-stroke: 0; +} +.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; +} +.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; +} +/** + * Fixed width */ +.ss-fw { + width: 1.28571429em; + text-align: center; +} +/** + * Core */ +.ss-lea:before { + content: "\e600"; +} +.ss-leb:before { + content: "\e601"; +} +.ss-2ed:before { + content: "\e602"; +} +.ss-3ed:before { + content: "\e603"; +} +.ss-4ed:before { + content: "\e604"; +} +.ss-psum:before { + content: "\e605"; +} +.ss-5ed:before { + content: "\e606"; +} +.ss-6ed:before { + content: "\e607"; +} +.ss-7ed:before { + content: "\e608"; +} +.ss-8ed:before { + content: "\e609"; +} +.ss-9ed:before { + content: "\e60a"; +} +.ss-10e:before { + content: "\e60b"; +} +.ss-m10:before { + content: "\e60c"; +} +.ss-m11:before { + content: "\e60d"; +} +.ss-m12:before { + content: "\e60e"; +} +.ss-m13:before { + content: "\e60f"; +} +.ss-m14:before { + content: "\e610"; +} +.ss-m15:before { + content: "\e611"; +} +.ss-bcore:before { + content: "\e612"; +} +.ss-ori:before { + content: "\e697"; +} +.ss-m19:before { + content: "\e941"; +} +.ss-m20:before { + content: "\e95d"; +} +.ss-1e:before { + content: "\e947"; +} +.ss-2e:before { + content: "\e948"; +} +.ss-2u:before { + content: "\e949"; +} +.ss-3e:before { + content: "\e94a"; +} +.ss-m21:before { + content: "\e960"; +} +.ss-xdnd:before, +.ss-afr:before { + content: "\e972"; +} +/** + * Expansions */ +/* Artifact Block */ +.ss-arn:before { + content: "\e613"; +} +.ss-atq:before { + content: "\e614"; +} +.ss-leg:before { + content: "\e615"; +} +/* Wizards Block */ +.ss-drk:before { + content: "\e616"; +} +.ss-fem:before { + content: "\e617"; +} +.ss-hml:before { + content: "\e618"; +} +/* Ice Age Block */ +.ss-ice:before { + content: "\e619"; +} +.ss-ice2:before { + content: "\e925"; +} +.ss-all:before { + content: "\e61a"; +} +.ss-csp:before { + content: "\e61b"; +} +/* Mirage Block */ +.ss-mir:before { + content: "\e61c"; +} +.ss-vis:before { + content: "\e61d"; +} +.ss-wth:before { + content: "\e61e"; +} +/* Tempest Block */ +.ss-tmp:before { + content: "\e61f"; +} +.ss-sth:before { + content: "\e620"; +} +.ss-exo:before { + content: "\e621"; +} +/* Urza's Block */ +.ss-usg:before { + content: "\e622"; +} +.ss-ulg:before { + content: "\e623"; +} +.ss-uds:before { + content: "\e624"; +} +/* Mercadian Block */ +.ss-mmq:before { + content: "\e625"; +} +.ss-nem:before, +.ss-nms:before { + content: "\e626"; +} +.ss-pcy:before { + content: "\e627"; +} +/* Invasion Block */ +.ss-inv:before { + content: "\e628"; +} +.ss-pls:before { + content: "\e629"; +} +.ss-apc:before { + content: "\e62a"; +} +/* Odyssey Block */ +.ss-ody:before { + content: "\e62b"; +} +.ss-tor:before { + content: "\e62c"; +} +.ss-jud:before { + content: "\e62d"; +} +/* Onslaught Block */ +.ss-ons:before { + content: "\e62e"; +} +.ss-lgn:before { + content: "\e62f"; +} +.ss-scg:before { + content: "\e630"; +} +/* Mirrodin Block */ +.ss-mrd:before { + content: "\e631"; +} +.ss-dst:before { + content: "\e632"; +} +.ss-5dn:before { + content: "\e633"; +} +/* Kamigawa Block */ +.ss-chk:before { + content: "\e634"; +} +.ss-bok:before { + content: "\e635"; +} +.ss-sok:before { + content: "\e636"; +} +/* Ravnica Block */ +.ss-rav:before { + content: "\e637"; +} +.ss-gpt:before { + content: "\e638"; +} +.ss-dis:before { + content: "\e639"; +} +/* Time Spiral Block */ +.ss-tsp:before { + content: "\e63a"; +} +.ss-plc:before { + content: "\e63b"; +} +.ss-fut:before { + content: "\e63c"; +} +/* Lorwyn Block */ +.ss-lrw:before { + content: "\e63d"; +} +.ss-mor:before { + content: "\e63e"; +} +/* Shadowmoor Block */ +.ss-shm:before { + content: "\e63f"; +} +.ss-eve:before { + content: "\e640"; +} +/* Alara Block */ +.ss-ala:before { + content: "\e641"; +} +.ss-con:before { + content: "\e642"; +} +.ss-arb:before { + content: "\e643"; +} +/* Zendikar Block */ +.ss-zen:before { + content: "\e644"; +} +.ss-wwk:before { + content: "\e645"; +} +.ss-roe:before { + content: "\e646"; +} +/* Scars Block */ +.ss-som:before { + content: "\e647"; +} +.ss-mbs:before { + content: "\e648"; +} +.ss-nph:before { + content: "\e649"; +} +/* Innistrad Block */ +.ss-isd:before { + content: "\e64a"; +} +.ss-dka:before { + content: "\e64b"; +} +.ss-avr:before { + content: "\e64c"; +} +/* RTR Block */ +.ss-rtr:before { + content: "\e64d"; +} +.ss-gtc:before { + content: "\e64e"; +} +.ss-dgm:before { + content: "\e64f"; +} +/* Theros Block */ +.ss-ths:before { + content: "\e650"; +} +.ss-bng:before { + content: "\e651"; +} +.ss-jou:before { + content: "\e652"; +} +/* Khans Block */ +.ss-ktk:before { + content: "\e653"; +} +.ss-frf:before { + content: "\e654"; +} +.ss-dtk:before { + content: "\e693"; +} +/* Return to Zendikar Block */ +.ss-bfz:before { + content: "\e699"; +} +.ss-ogw:before { + content: "\e901"; +} +/* Return to Innistrad Block */ +.ss-soi:before { + content: "\e902"; +} +.ss-emn:before { + content: "\e90b"; +} +/* Kaladesh Block */ +.ss-kld:before { + content: "\e90e"; +} +.ss-aer:before { + content: "\e90f"; +} +/* Amonkhet Block */ +.ss-akh:before { + content: "\e914"; +} +.ss-hou:before { + content: "\e924"; +} +/* Ixalan Block */ +.ss-xln:before { + content: "\e92e"; +} +.ss-rix:before { + content: "\e92f"; +} +/* Dominaria Block */ +.ss-dom:before { + content: "\e93f"; +} +/* Guilds of Ravnica Block */ +.ss-grn:before, +.ss-gk1:before { + content: "\e94b"; +} +.ss-rna:before, +.ss-gk2:before { + content: "\e959"; +} +.ss-war:before { + content: "\e95a"; +} +/* Eldraine Block */ +.ss-eld:before { + content: "\e95e"; +} +/* 2020 Sets */ +.ss-thb:before { + content: "\e961"; +} +.ss-iko:before { + content: "\e962"; +} +.ss-znr:before { + content: "\e963"; +} +/* 2021 Sets */ +.ss-xkld:before, +.ss-khm:before { + content: "\e974"; +} +.ss-xssm:before, +.ss-stx:before { + content: "\e975"; +} +.ss-mid:before { + content: "\e978"; +} +.ss-vow:before { + content: "\e977"; +} +/* 2022 Sets */ +.ss-neo:before { + content: "\e98c"; +} +.ss-snc:before { + content: "\e98b"; +} +.ss-dmu:before { + content: "\e993"; +} +.ss-bro:before { + content: "\e99d"; +} +/* 2023 Sets */ +.ss-one:before { + content: "\e9a1"; +} +.ss-mom:before { + content: "\e9a2"; +} +.ss-mat:before { + content: "\e9a3"; +} +.ss-woe:before { + content: "\e9ae"; +} +.ss-lci:before { + content: "\e9c2"; +} +/* 2024 Sets */ +.ss-mkm:before { + content: "\e9c9"; +} +.ss-otj:before { + content: "\e9cc"; +} +.ss-blb:before { + content: "\e9cd"; +} +.ss-dsk:before { + content: "\1f305"; +} +.ss-fdn:before { + content: "\1f31f"; +} +/** + * Command Zone */ +.ss-van:before { + content: "\e655"; +} +.ss-hop:before { + content: "\e656"; +} +.ss-arc:before { + content: "\e657"; +} +.ss-cmd:before { + content: "\e658"; +} +.ss-pc2:before { + content: "\e659"; +} +.ss-cm1:before { + content: "\e65a"; +} +.ss-c13:before { + content: "\e65b"; +} +.ss-cns:before { + content: "\e65c"; +} +.ss-c14:before { + content: "\e65d"; +} +.ss-c15:before { + content: "\e900"; +} +.ss-cn2:before { + content: "\e904"; +} +.ss-c16:before { + content: "\e910"; +} +.ss-pca:before { + content: "\e911"; +} +.ss-cma:before { + content: "\e916"; +} +.ss-e01:before, +.ss-ann:before { + content: "\e92d"; +} +.ss-e02:before { + content: "\e931"; +} +.ss-c17:before { + content: "\e934"; +} +.ss-cm2:before { + content: "\e940"; +} +.ss-bbd:before { + content: "\e942"; +} +.ss-c18:before { + content: "\e946"; +} +.ss-c19:before { + content: "\e95f"; +} +.ss-c20:before { + content: "\e966"; +} +.ss-znc:before { + content: "\e967"; +} +.ss-cc1:before { + content: "\e968"; +} +.ss-cmr:before, +.ss-cmc:before { + content: "\e969"; +} +.ss-khc:before { + content: "\e97d"; +} +.ss-c21:before { + content: "\e97e"; +} +.ss-afc:before { + content: "\e981"; +} +.ss-mic:before { + content: "\e985"; +} +.ss-voc:before { + content: "\e986"; +} +.ss-cc2:before { + content: "\e987"; +} +.ss-nec:before { + content: "\e98d"; +} +.ss-ncc:before { + content: "\e98e"; +} +.ss-clb:before { + content: "\e991"; +} +.ss-dmc:before { + content: "\e994"; +} +.ss-40k:before { + content: "\e998"; +} +.ss-brc:before { + content: "\e99f"; +} +.ss-onc:before { + content: "\e9a8"; +} +.ss-moc:before { + content: "\e9a9"; +} +.ss-scd:before { + content: "\e9ab"; +} +.ss-cmm:before { + content: "\e9b5"; +} +.ss-ltc:before { + content: "\e9b6"; +} +.ss-woc:before { + content: "\e9b9"; +} +.ss-lcc:before { + content: "\e9c7"; +} +.ss-mkc:before { + content: "\e9ca"; +} +.ss-otc:before { + content: "\e9d2"; +} +.ss-blc:before { + content: "\e9d4"; +} +.ss-m3c:before { + content: "\e9d0"; +} +/** + * Reprint */ +.ss-chr:before { + content: "\e65e"; +} +.ss-ath:before { + content: "\e65f"; +} +.ss-brb:before { + content: "\e660"; +} +.ss-btd:before { + content: "\e661"; +} +.ss-dkm:before { + content: "\e662"; +} +.ss-mma:before { + content: "\e663"; +} +.ss-mm2:before { + content: "\e695"; +} +.ss-ema:before { + content: "\e903"; +} +.ss-mm3:before { + content: "\e912"; +} +.ss-xren:before { + content: "\e917"; +} +.ss-xrin:before { + content: "\e918"; +} +.ss-ima:before { + content: "\e935"; +} +.ss-a25:before { + content: "\e93d"; +} +.ss-uma:before { + content: "\e958"; +} +.ss-mh1:before { + content: "\e95b"; +} +.ss-2xm:before { + content: "\e96e"; +} +.ss-jmp:before { + content: "\e96f"; +} +.ss-mb1:before { + content: "\e971"; +} +.ss-mh2:before { + content: "\e97b"; +} +.ss-sta:before { + content: "\e980"; +} +.ss-j21:before { + content: "\e983"; +} +.ss-2x2:before { + content: "\e99c"; +} +.ss-brr:before { + content: "\e9a0"; +} +.ss-j22:before { + content: "\e9ad"; +} +.ss-mul:before { + content: "\e9ba"; +} +.ss-wot:before { + content: "\e9c0"; +} +.ss-br:before { + content: "\e9c1"; +} +.ss-spg:before { + content: "\e9c8"; +} +.ss-otp:before { + content: "\e9d5"; +} +.ss-big:before { + content: "\e9d6"; +} +/** + * Beginner */ +.ss-por:before { + content: "\e664"; +} +.ss-p02:before, +.ss-po2:before { + content: "\e665"; +} +.ss-ptk:before { + content: "\e666"; +} +.ss-s99:before { + content: "\e667"; +} +.ss-s00:before { + content: "\e668"; +} +.ss-w16:before { + content: "\e907"; +} +.ss-w17:before { + content: "\e923"; +} +/** + * Duel Decks */ +.ss-evg:before { + content: "\e669"; +} +.ss-dd2:before { + content: "\e66a"; +} +.ss-ddc:before { + content: "\e66b"; +} +.ss-ddd:before { + content: "\e66c"; +} +.ss-dde:before { + content: "\e66d"; +} +.ss-ddf:before { + content: "\e66e"; +} +.ss-ddg:before { + content: "\e66f"; +} +.ss-ddh:before { + content: "\e670"; +} +.ss-ddi:before { + content: "\e671"; +} +.ss-ddj:before { + content: "\e672"; +} +.ss-ddk:before { + content: "\e673"; +} +.ss-ddl:before { + content: "\e674"; +} +.ss-ddm:before { + content: "\e675"; +} +.ss-ddn:before { + content: "\e676"; +} +.ss-ddo:before { + content: "\e677"; +} +.ss-ddp:before { + content: "\e698"; +} +.ss-ddq:before { + content: "\e908"; +} +.ss-ddr:before { + content: "\e90d"; +} +.ss-td2:before { + content: "\e91c"; +} +.ss-dds:before { + content: "\e921"; +} +.ss-ddt:before { + content: "\e933"; +} +.ss-ddu:before { + content: "\e93e"; +} +/** + * From the Vault */ +.ss-drb:before { + content: "\e678"; +} +.ss-v09:before { + content: "\e679"; +} +.ss-v10:before { + content: "\e67a"; +} +.ss-v11:before { + content: "\e67b"; +} +.ss-v12:before { + content: "\e67c"; +} +.ss-v13:before { + content: "\e67d"; +} +.ss-v14:before { + content: "\e67e"; +} +.ss-v15:before { + content: "\e905"; +} +.ss-v16:before { + content: "\e906"; +} +.ss-v0x:before { + content: "\e920"; +} +.ss-v17:before { + content: "\e939"; +} +/** + * Premium Deck Series */ +.ss-h09:before { + content: "\e67f"; +} +.ss-pd2:before { + content: "\e680"; +} +.ss-pd3:before { + content: "\e681"; +} +.ss-md1:before { + content: "\e682"; +} +/** + * Signature Spellbook */ +.ss-ss1:before { + content: "\e944"; +} +.ss-ss2:before { + content: "\e95c"; +} +.ss-ss3:before { + content: "\e96d"; +} +/** + * Global Series */ +.ss-gs1:before { + content: "\e945"; +} +/** + * Guild Kits */ +.ss-azorius:before { + content: "\e94e"; +} +.ss-boros:before { + content: "\e94f"; +} +.ss-dimir:before { + content: "\e950"; +} +.ss-golgari:before { + content: "\e951"; +} +.ss-gruul:before { + content: "\e952"; +} +.ss-izzet:before { + content: "\e953"; +} +.ss-orzhov:before { + content: "\e954"; +} +.ss-rakdos:before { + content: "\e955"; +} +.ss-selesnya:before { + content: "\e956"; +} +.ss-simic:before { + content: "\e957"; +} +/** + * Other Supplemental Products */ +.ss-gnt:before { + content: "\e94d"; +} +.ss-gn2:before { + content: "\e964"; +} +.ss-tsr:before { + content: "\e976"; +} +.ss-dmr:before { + content: "\e9a4"; +} +.ss-gn3:before { + content: "\e9a5"; +} +.ss-ltr:before { + content: "\e9af"; +} +.ss-who:before { + content: "\e9b0"; +} +.ss-rvr:before { + content: "\e9bb"; +} +.ss-pip:before { + content: "\e9c3"; +} +.ss-clu:before { + content: "\e9cb"; +} +.ss-acr:before { + content: "\e9ce"; +} +.ss-mh3:before { + content: "\e9cf"; +} +/** + * Promotional */ +.ss-pgru:before { + content: "\e683"; +} +.ss-pmtg1:before { + content: "\e684"; +} +.ss-pmtg2:before { + content: "\e685"; +} +.ss-pleaf:before { + content: "\e686"; +} +.ss-pmei:before, +.ss-htr:before, +.ss-htr17:before { + content: "\e687"; +} +.ss-parl:before { + content: "\e688"; +} +.ss-dpa:before { + content: "\e689"; +} +.ss-pbook:before { + content: "\e68a"; +} +.ss-past:before { + content: "\e68b"; +} +.ss-parl2:before { + content: "\e68c"; +} +.ss-exp:before { + content: "\e69a"; +} +.ss-psalvat05:before { + content: "\e909"; +} +.ss-psalvat11:before { + content: "\e90a"; +} +.ss-mps:before, +.ss-mp1:before { + content: "\e913"; +} +.ss-pxbox:before { + content: "\e915"; +} +.ss-pmps:before { + content: "\e919"; +} +.ss-pmpu:before { + content: "\e91a"; +} +.ss-mp2:before { + content: "\e922"; +} +.ss-pidw:before { + content: "\e92c"; +} +.ss-pdrc:before { + content: "\e932"; +} +.ss-pheart:before { + content: "\e936"; +} +.ss-h17:before { + content: "\e938"; +} +.ss-pdep:before { + content: "\e93a"; +} +.ss-psega:before { + content: "\e93b"; +} +.ss-ptsa:before { + content: "\e93c"; +} +.ss-parl3:before { + content: "\e943"; +} +.ss-med:before { + content: "\e94c"; +} +.ss-ptg:before { + content: "\e965"; +} +.ss-j20:before { + content: "\e96a"; +} +.ss-zne:before { + content: "\e97a"; +} +.ss-bot:before { + content: "\e99e"; +} +.ss-rex:before { + content: "\e9c4"; +} +/** + * Secret Lairs */ +.ss-slu:before { + content: "\e687"; +} +.ss-sld:before { + content: "\e687"; +} +.ss-psld:before { + content: "\e687"; +} +.ss-sld2:before { + content: "\e9bc"; +} +/** + * Online */ +.ss-me1:before { + content: "\e68d"; +} +.ss-me2:before { + content: "\e68e"; +} +.ss-me3:before { + content: "\e68f"; +} +.ss-me4:before { + content: "\e690"; +} +.ss-tpr:before { + content: "\e694"; +} +.ss-vma:before { + content: "\e696"; +} +.ss-pz1:before, +.ss-xlcu:before { + content: "\e90c"; +} +.ss-modo:before, +.ss-pmodo:before { + content: "\e91b"; +} +.ss-duels:before, +.ss-xduels:before { + content: "\e91d"; +} +.ss-xmods:before { + content: "\e91e"; +} +.ss-pz2:before { + content: "\e91f"; +} +.ss-ha1:before { + content: "\e96b"; +} +.ss-akr:before { + content: "\e970"; +} +.ss-klr:before { + content: "\e97c"; +} +.ss-y22:before { + content: "\e989"; +} +.ss-hbg:before { + content: "\e9a6"; +} +.ss-ydmu:before { + content: "\e9a7"; +} +.ss-sir:before { + content: "\e9b1"; +} +.ss-sis:before { + content: "\e9b2"; +} +.ss-ea1:before { + content: "\e9b4"; +} +.ss-y24:before { + content: "\e9bd"; +} +/** + * Un-serious */ +.ss-ugl:before { + content: "\e691"; +} +.ss-unh:before { + content: "\e692"; +} +.ss-ust:before { + content: "\e930"; +} +.ss-und:before { + content: "\e96c"; +} +.ss-unf:before { + content: "\e98a"; +} +.ss-una:before { + content: "\e9be"; +} +/** + * Unofficial */ +.ss-xcle:before { + content: "\e926"; +} +.ss-xice:before { + content: "\e927"; +} +.ss-x2ps:before { + content: "\e928"; +} +.ss-x4ea:before { + content: "\e929"; +} +.ss-papac:before { + content: "\e92a"; +} +.ss-peuro:before { + content: "\e92b"; +} +.ss-pfnm:before { + content: "\e937"; +} +.ss-30a:before { + content: "\e9aa"; +} +.ss-border:not(.ss-duo)::after { + content: ""; + position: absolute; + left: -0.05em; + top: 0em; + color: #fff; + font-size: 1.15em; + z-index: -1; + background: #fff; + -webkit-text-stroke: 0.05em #fff; + -webkit-background-clip: text; + -webkit-text-fill-color: transparent; +} +.ss-border.ss-van:after { + content: "\e655"; +} +.ss-border.ss-hop:after { + content: "\e656"; +} +.ss-border.ss-arc:after { + content: "\e657"; +} +.ss-border.ss-cmd:after { + content: "\e658"; +} +.ss-border.ss-pc2:after { + content: "\e659"; +} +.ss-border.ss-cm1:after { + content: "\e65a"; +} +.ss-border.ss-c13:after { + content: "\e65b"; +} +.ss-border.ss-cns:after { + content: "\e65c"; +} +.ss-border.ss-c14:after { + content: "\e65d"; +} +.ss-border.ss-c15:after { + content: "\e900"; +} +.ss-border.ss-sis::before { + content: "\e9b3"; +} +.ss-border.ss-sis::after { + content: "\e9b2"; +} +.ss-border.ss-40k { + display: list-item; + list-style-position: inside; +} +.ss-border.ss-40k::before { + position: absolute; + left: 0; + top: 0; +} +.ss-border.ss-40k::marker { + content: "\e99a"; + color: #000; +} +.ss-border.ss-dmc { + display: list-item; + list-style-position: inside; +} +.ss-border.ss-dmc::before { + position: absolute; + left: 0; + top: 0; +} +.ss-border.ss-dmc::marker { + content: "\e996"; + color: #000; +} diff --git a/docs/cheatsheet.html b/docs/cheatsheet.html index b8cfc81..1472777 100644 --- a/docs/cheatsheet.html +++ b/docs/cheatsheet.html @@ -171,6 +171,7 @@ ss-evg  ss-exo  ss-exp  + 🌟 ss-fdn 🌟 ss-fem  ss-frf  ss-fut  diff --git a/docs/fonts/keyrune.eot b/docs/fonts/keyrune.eot index f3238fe..fa8e638 100644 Binary files a/docs/fonts/keyrune.eot and b/docs/fonts/keyrune.eot differ diff --git a/docs/fonts/keyrune.svg b/docs/fonts/keyrune.svg index d7a7321..35797e7 100644 --- a/docs/fonts/keyrune.svg +++ b/docs/fonts/keyrune.svg @@ -5,14 +5,14 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/docs/fonts/keyrune.ttf b/docs/fonts/keyrune.ttf index 530bbc2..a3515f8 100644 Binary files a/docs/fonts/keyrune.ttf and b/docs/fonts/keyrune.ttf differ diff --git a/docs/fonts/keyrune.woff b/docs/fonts/keyrune.woff index da9c8d7..0c7d41a 100644 Binary files a/docs/fonts/keyrune.woff and b/docs/fonts/keyrune.woff differ diff --git a/docs/fonts/keyrune.woff2 b/docs/fonts/keyrune.woff2 index aed768b..cca6299 100644 Binary files a/docs/fonts/keyrune.woff2 and b/docs/fonts/keyrune.woff2 differ diff --git a/docs/icons.html b/docs/icons.html index ce0bcf8..7533b46 100644 --- a/docs/icons.html +++ b/docs/icons.html @@ -452,6 +452,9 @@
Bloomburrow (blb)
+
+ Foundation (fdn) +
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/fonts/keyrune.woff2 b/fonts/keyrune.woff2 index bac26fb..cca6299 100644 Binary files a/fonts/keyrune.woff2 and b/fonts/keyrune.woff2 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/package-lock.json b/package-lock.json index 1a17a93..d80e3ef 100644 --- a/package-lock.json +++ b/package-lock.json @@ -8,20 +8,94 @@ "name": "keyrune", "version": "3.15.0", "license": "(OFL-1.1 AND GPL-3.0-only)", - "dependencies": { - "lessc": "^1.0.2" - }, "devDependencies": { + "clean-css": "^5.3.3", + "lessc": "^1.0.2", + "sass": "^1.77.8", "zepto": "^1.2.0" }, "engines": { "node": "*" } }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/clean-css": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", + "dev": true, + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 10.0" + } + }, "node_modules/copy-anything": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", + "dev": true, "dependencies": { "is-what": "^3.14.1" }, @@ -33,6 +107,7 @@ "version": "0.1.8", "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, "optional": true, "dependencies": { "prr": "~1.0.1" @@ -41,16 +116,56 @@ "errno": "cli.js" } }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, "optional": true }, "node_modules/image-size": { "version": "0.5.5", "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", + "dev": true, "optional": true, "bin": { "image-size": "bin/image-size.js" @@ -59,15 +174,65 @@ "node": ">=0.10.0" } }, + "node_modules/immutable": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz", + "integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==", + "dev": true + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, "node_modules/is-what": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", - "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true }, "node_modules/less": { "version": "3.13.1", "resolved": "https://registry.npmjs.org/less/-/less-3.13.1.tgz", "integrity": "sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==", + "dev": true, "dependencies": { "copy-anything": "^2.0.1", "tslib": "^1.10.0" @@ -92,6 +257,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/lessc/-/lessc-1.0.2.tgz", "integrity": "sha512-cv7EXQRiD3Cu2Vsy3S9C89G01kOv0TrLQMoWHxscCgkMYdhEvknhaINeQkZbPmUlJ87AEzjPm0y/14Cg9j7/ug==", + "dev": true, "dependencies": { "less": "^3.9.0" } @@ -100,6 +266,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, "optional": true, "dependencies": { "pify": "^4.0.1", @@ -113,6 +280,7 @@ "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, "optional": true, "bin": { "mime": "cli.js" @@ -125,12 +293,35 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/native-request/-/native-request-1.1.0.tgz", "integrity": "sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==", + "dev": true, "optional": true }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/pify": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, "optional": true, "engines": { "node": ">=6" @@ -140,12 +331,43 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, "optional": true }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/sass": { + "version": "1.77.8", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.8.tgz", + "integrity": "sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, "node_modules/semver": { "version": "5.7.2", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, "optional": true, "bin": { "semver": "bin/semver" @@ -155,15 +377,37 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "optional": true, + "dev": true, "engines": { "node": ">=0.10.0" } }, + "node_modules/source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, "node_modules/tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, "node_modules/zepto": { "version": "1.2.0", @@ -173,10 +417,61 @@ } }, "dependencies": { + "anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "requires": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + } + }, + "binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "dev": true + }, + "braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "dev": true, + "requires": { + "fill-range": "^7.1.1" + } + }, + "chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "dev": true, + "requires": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "fsevents": "~2.3.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + } + }, + "clean-css": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", + "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", + "dev": true, + "requires": { + "source-map": "~0.6.0" + } + }, "copy-anything": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", + "dev": true, "requires": { "is-what": "^3.14.1" } @@ -185,32 +480,98 @@ "version": "0.1.8", "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, "optional": true, "requires": { "prr": "~1.0.1" } }, + "fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "dev": true, + "requires": { + "to-regex-range": "^5.0.1" + } + }, + "fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "optional": true + }, + "glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "requires": { + "is-glob": "^4.0.1" + } + }, "graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true, "optional": true }, "image-size": { "version": "0.5.5", "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", + "dev": true, "optional": true }, + "immutable": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.7.tgz", + "integrity": "sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==", + "dev": true + }, + "is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "requires": { + "binary-extensions": "^2.0.0" + } + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true + }, + "is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "requires": { + "is-extglob": "^2.1.1" + } + }, + "is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true + }, "is-what": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", - "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==" + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true }, "less": { "version": "3.13.1", "resolved": "https://registry.npmjs.org/less/-/less-3.13.1.tgz", "integrity": "sha512-SwA1aQXGUvp+P5XdZslUOhhLnClSLIjWvJhmd+Vgib5BFIr9lMNlQwmwUNOjXThF/A0x+MCYYPeWEfeWiLRnTw==", + "dev": true, "requires": { "copy-anything": "^2.0.1", "errno": "^0.1.1", @@ -227,6 +588,7 @@ "version": "1.0.2", "resolved": "https://registry.npmjs.org/lessc/-/lessc-1.0.2.tgz", "integrity": "sha512-cv7EXQRiD3Cu2Vsy3S9C89G01kOv0TrLQMoWHxscCgkMYdhEvknhaINeQkZbPmUlJ87AEzjPm0y/14Cg9j7/ug==", + "dev": true, "requires": { "less": "^3.9.0" } @@ -235,6 +597,7 @@ "version": "2.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, "optional": true, "requires": { "pify": "^4.0.1", @@ -245,42 +608,95 @@ "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, "optional": true }, "native-request": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/native-request/-/native-request-1.1.0.tgz", "integrity": "sha512-uZ5rQaeRn15XmpgE0xoPL8YWqcX90VtCFglYwAgkvKM5e8fog+vePLAhHxuuv/gRkrQxIeh5U3q9sMNUrENqWw==", + "dev": true, "optional": true }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true + }, "pify": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, "optional": true }, "prr": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, "optional": true }, + "readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "requires": { + "picomatch": "^2.2.1" + } + }, + "sass": { + "version": "1.77.8", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.77.8.tgz", + "integrity": "sha512-4UHg6prsrycW20fqLGPShtEvo/WyHRVRHwOP4DzkUrObWoWI05QBSfzU71TVB7PFaL104TwNaHpjlWXAZbQiNQ==", + "dev": true, + "requires": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + } + }, "semver": { "version": "5.7.2", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, "optional": true }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "optional": true + "dev": true + }, + "source-map-js": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.0.tgz", + "integrity": "sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==", + "dev": true + }, + "to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "requires": { + "is-number": "^7.0.0" + } }, "tslib": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true }, "zepto": { "version": "1.2.0", diff --git a/package.json b/package.json index 4507400..776cffc 100644 --- a/package.json +++ b/package.json @@ -21,9 +21,11 @@ "keywords": [], "homepage": "https://keyrune.andrewgioia.com", "dependencies": { - "lessc": "^1.0.2" }, "devDependencies": { + "clean-css": "^5.3.3", + "lessc": "^1.0.2", + "sass": "^1.77.8", "zepto": "^1.2.0" }, "license": "(OFL-1.1 AND GPL-3.0-only)", diff --git a/sass/_variables.scss b/sass/_variables.scss index 91d587e..6c56e4b 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"),