mirror of
https://github.com/andrewgioia/mana.git
synced 2024-11-22 23:14:46 +00:00
Fixing 100 icon in icons list
This commit is contained in:
parent
9ba90a2ce4
commit
40b1bd305b
4
bower_components/mana/.bower.json
vendored
4
bower_components/mana/.bower.json
vendored
@ -28,11 +28,11 @@
|
|||||||
".git",
|
".git",
|
||||||
".gitignore"
|
".gitignore"
|
||||||
],
|
],
|
||||||
"_release": "808c5a8cb8",
|
"_release": "69250142e0",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "branch",
|
"type": "branch",
|
||||||
"branch": "master",
|
"branch": "master",
|
||||||
"commit": "808c5a8cb856b005fae28e93ae554a3e2ef67c2e"
|
"commit": "69250142e0b556ba2b160eda19ce2a1999b2aa89"
|
||||||
},
|
},
|
||||||
"_source": "https://github.com/andrewgioia/Mana.git",
|
"_source": "https://github.com/andrewgioia/Mana.git",
|
||||||
"_target": "*",
|
"_target": "*",
|
||||||
|
4
bower_components/mana/README.md
vendored
4
bower_components/mana/README.md
vendored
@ -1,4 +1,4 @@
|
|||||||
# Mana v0.6
|
# Mana v1.0
|
||||||
|
|
||||||
## The Magic: the Gathering mana symbol font!
|
## The Magic: the Gathering mana symbol font!
|
||||||
|
|
||||||
@ -36,3 +36,5 @@ Attribution is **greatly appreciated** but not required!
|
|||||||
* v0.4 - adding classes for 16, 17, 18, 19, and 20 symbols
|
* v0.4 - adding classes for 16, 17, 18, 19, and 20 symbols
|
||||||
* v0.5 - adding the new colorless wastes symbol
|
* v0.5 - adding the new colorless wastes symbol
|
||||||
* v0.6 - adding double-faced card symbols (day, night)
|
* v0.6 - adding double-faced card symbols (day, night)
|
||||||
|
* v1.0 - new documentation page at http://andrewgioia.github.io/Mana/
|
||||||
|
* v1.0.1 - added classes for -12 and -14 loyalty (sorry Jace and Karn!)
|
||||||
|
2
bower_components/mana/bower.json
vendored
2
bower_components/mana/bower.json
vendored
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "mana",
|
"name": "mana",
|
||||||
"homepage": "https://github.com/andrewgioia/Mana",
|
"homepage": "https://github.com/andrewgioia/Mana",
|
||||||
"version": "0.6",
|
"version": "1.0.1",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Andrew Gioia <andrewgioia@gmail.com>"
|
"Andrew Gioia <andrewgioia@gmail.com>"
|
||||||
],
|
],
|
||||||
|
8
bower_components/mana/css/mana.css
vendored
8
bower_components/mana/css/mana.css
vendored
@ -317,6 +317,8 @@
|
|||||||
.ms-loyalty-8:after,
|
.ms-loyalty-8:after,
|
||||||
.ms-loyalty-9:after,
|
.ms-loyalty-9:after,
|
||||||
.ms-loyalty-10:after,
|
.ms-loyalty-10:after,
|
||||||
|
.ms-loyalty-12:after,
|
||||||
|
.ms-loyalty-14:after,
|
||||||
.ms-loyalty-x:after {
|
.ms-loyalty-x:after {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
@ -431,6 +433,12 @@
|
|||||||
.ms-loyalty-down.ms-loyalty-10:after {
|
.ms-loyalty-down.ms-loyalty-10:after {
|
||||||
content: "-10";
|
content: "-10";
|
||||||
}
|
}
|
||||||
|
.ms-loyalty-down.ms-loyalty-12:after {
|
||||||
|
content: "-12";
|
||||||
|
}
|
||||||
|
.ms-loyalty-down.ms-loyalty-14:after {
|
||||||
|
content: "-14";
|
||||||
|
}
|
||||||
.ms-loyalty-down.ms-loyalty-x:after {
|
.ms-loyalty-down.ms-loyalty-x:after {
|
||||||
content: "-X";
|
content: "-X";
|
||||||
}
|
}
|
||||||
|
2
bower_components/mana/css/mana.min.css
vendored
2
bower_components/mana/css/mana.min.css
vendored
File diff suppressed because one or more lines are too long
4
bower_components/mana/less/loyalty.less
vendored
4
bower_components/mana/less/loyalty.less
vendored
@ -31,6 +31,8 @@
|
|||||||
&-8:after,
|
&-8:after,
|
||||||
&-9:after,
|
&-9:after,
|
||||||
&-10:after,
|
&-10:after,
|
||||||
|
&-12:after,
|
||||||
|
&-14:after,
|
||||||
&-x:after {
|
&-x:after {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
@ -82,6 +84,8 @@
|
|||||||
&.@{ms-prefix}-loyalty-8:after { content: "-8"; }
|
&.@{ms-prefix}-loyalty-8:after { content: "-8"; }
|
||||||
&.@{ms-prefix}-loyalty-9:after { content: "-9"; }
|
&.@{ms-prefix}-loyalty-9:after { content: "-9"; }
|
||||||
&.@{ms-prefix}-loyalty-10:after { content: "-10"; }
|
&.@{ms-prefix}-loyalty-10:after { content: "-10"; }
|
||||||
|
&.@{ms-prefix}-loyalty-12:after { content: "-12"; }
|
||||||
|
&.@{ms-prefix}-loyalty-14:after { content: "-14"; }
|
||||||
&.@{ms-prefix}-loyalty-x:after { content: "-X"; }
|
&.@{ms-prefix}-loyalty-x:after { content: "-X"; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
25
bower_components/mana/package.json
vendored
Normal file
25
bower_components/mana/package.json
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{
|
||||||
|
"name": "mana",
|
||||||
|
"version": "1.0.1",
|
||||||
|
"description": "Magic: the Gathering mana symbol pictographic font",
|
||||||
|
"main": "css/mana.css",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "git+https://github.com/andrewgioia/Mana.git"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"mana",
|
||||||
|
"mtg",
|
||||||
|
"mana",
|
||||||
|
"symbols",
|
||||||
|
"magic",
|
||||||
|
"gathering",
|
||||||
|
"font"
|
||||||
|
],
|
||||||
|
"author": "Andrew Gioia <andrewgioia@gmail.com>",
|
||||||
|
"license": "MIT",
|
||||||
|
"bugs": {
|
||||||
|
"url": "https://github.com/andrewgioia/Mana/issues"
|
||||||
|
},
|
||||||
|
"homepage": "https://github.com/andrewgioia/Mana#readme"
|
||||||
|
}
|
@ -151,7 +151,7 @@
|
|||||||
<span><i class="ms ms-infinity"></i> Infinity <em>(infinity)</em></span>
|
<span><i class="ms ms-infinity"></i> Infinity <em>(infinity)</em></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="icon" id="100" name="100">
|
<div class="icon" id="100" name="100">
|
||||||
<span><i class="ms ms-19"></i> 19 <em>(19)</em></span>
|
<span><i class="ms ms-100 ms-fw" style="font-size: 1.0em"></i> 100 <em>(100)</em></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="icon" id="1000000" name="1000000">
|
<div class="icon" id="1000000" name="1000000">
|
||||||
<span><i class="ms ms-100000 ms-fw" style="font-size: .75em"></i> 1,000,000 <em>(1000000)</em></span>
|
<span><i class="ms ms-100000 ms-fw" style="font-size: .75em"></i> 1,000,000 <em>(1000000)</em></span>
|
||||||
|
Loading…
Reference in New Issue
Block a user