mirror of
https://github.com/andrewgioia/mana.git
synced 2024-11-21 22:54:45 +00:00
Adding -12 and -14 loyalty classes
This commit is contained in:
parent
629018e37f
commit
69250142e0
@ -36,4 +36,5 @@ Attribution is **greatly appreciated** but not required!
|
||||
* v0.4 - adding classes for 16, 17, 18, 19, and 20 symbols
|
||||
* v0.5 - adding the new colorless wastes symbol
|
||||
* v0.6 - adding double-faced card symbols (day, night)
|
||||
* v1.0 - new documentation page at http://andrewgioia.github.io/Mana/
|
||||
* 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!)
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "mana",
|
||||
"homepage": "https://github.com/andrewgioia/Mana",
|
||||
"version": "0.6",
|
||||
"version": "1.0.1",
|
||||
"authors": [
|
||||
"Andrew Gioia <andrewgioia@gmail.com>"
|
||||
],
|
||||
|
10
css/mana.css
10
css/mana.css
@ -317,6 +317,8 @@
|
||||
.ms-loyalty-8:after,
|
||||
.ms-loyalty-9:after,
|
||||
.ms-loyalty-10:after,
|
||||
.ms-loyalty-12:after,
|
||||
.ms-loyalty-14:after,
|
||||
.ms-loyalty-x:after {
|
||||
color: #fff;
|
||||
display: inline-block;
|
||||
@ -431,6 +433,12 @@
|
||||
.ms-loyalty-down.ms-loyalty-10:after {
|
||||
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 {
|
||||
content: "-X";
|
||||
}
|
||||
@ -440,7 +448,7 @@
|
||||
color: #111;
|
||||
border: .05em solid #111;
|
||||
border-radius: 2em;
|
||||
padding: 1px;
|
||||
padding: 0.025em;
|
||||
}
|
||||
/*
|
||||
* Larger sizes */
|
||||
|
2
css/mana.min.css
vendored
2
css/mana.min.css
vendored
File diff suppressed because one or more lines are too long
@ -31,6 +31,8 @@
|
||||
&-8:after,
|
||||
&-9:after,
|
||||
&-10:after,
|
||||
&-12:after,
|
||||
&-14:after,
|
||||
&-x:after {
|
||||
color: #fff;
|
||||
display: inline-block;
|
||||
@ -82,6 +84,8 @@
|
||||
&.@{ms-prefix}-loyalty-8:after { content: "-8"; }
|
||||
&.@{ms-prefix}-loyalty-9:after { content: "-9"; }
|
||||
&.@{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"; }
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "mana",
|
||||
"version": "1.0.0",
|
||||
"version": "1.0.1",
|
||||
"description": "Magic: the Gathering mana symbol pictographic font",
|
||||
"main": "css/mana.css",
|
||||
"repository": {
|
||||
|
Loading…
Reference in New Issue
Block a user