mirror of
https://github.com/andrewgioia/mana.git
synced 2024-11-21 14:54:45 +00:00
Adds outlined version of loyalty symbols that a few cards use in the card text (#97)
This commit is contained in:
parent
ee43118df7
commit
7a86b2ce31
16
css/mana.css
16
css/mana.css
@ -1073,6 +1073,9 @@ span.ms-half > .ms-cost {
|
|||||||
.ms-loyalty-start {
|
.ms-loyalty-start {
|
||||||
font-size: 2em;
|
font-size: 2em;
|
||||||
}
|
}
|
||||||
|
.ms-loyalty-zero::after {
|
||||||
|
line-height: 2.1em !important;
|
||||||
|
}
|
||||||
.ms-loyalty-0::after, .ms-loyalty-1::after, .ms-loyalty-2::after, .ms-loyalty-3::after, .ms-loyalty-4::after, .ms-loyalty-5::after, .ms-loyalty-6::after, .ms-loyalty-7::after, .ms-loyalty-8::after, .ms-loyalty-9::after, .ms-loyalty-10::after, .ms-loyalty-11::after, .ms-loyalty-12::after, .ms-loyalty-13::after, .ms-loyalty-14::after, .ms-loyalty-15::after, .ms-loyalty-16::after, .ms-loyalty-17::after, .ms-loyalty-18::after, .ms-loyalty-19::after, .ms-loyalty-20::after, .ms-loyalty-25::after, .ms-loyalty-x::after {
|
.ms-loyalty-0::after, .ms-loyalty-1::after, .ms-loyalty-2::after, .ms-loyalty-3::after, .ms-loyalty-4::after, .ms-loyalty-5::after, .ms-loyalty-6::after, .ms-loyalty-7::after, .ms-loyalty-8::after, .ms-loyalty-9::after, .ms-loyalty-10::after, .ms-loyalty-11::after, .ms-loyalty-12::after, .ms-loyalty-13::after, .ms-loyalty-14::after, .ms-loyalty-15::after, .ms-loyalty-16::after, .ms-loyalty-17::after, .ms-loyalty-18::after, .ms-loyalty-19::after, .ms-loyalty-20::after, .ms-loyalty-25::after, .ms-loyalty-x::after {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
@ -1288,7 +1291,20 @@ span.ms-half > .ms-cost {
|
|||||||
.ms-loyalty-down.ms-loyalty-x::after {
|
.ms-loyalty-down.ms-loyalty-x::after {
|
||||||
content: "-X";
|
content: "-X";
|
||||||
}
|
}
|
||||||
|
.ms-loyalty-outline::before {
|
||||||
|
color: transparent;
|
||||||
|
-webkit-text-stroke: 0.03em #111;
|
||||||
|
}
|
||||||
|
.ms-loyalty-outline::after {
|
||||||
|
color: #111;
|
||||||
|
}
|
||||||
|
.ms-loyalty-outline.ms-loyalty-start {
|
||||||
|
font-size: 1.6em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.ms-saga {
|
||||||
|
color: #111;
|
||||||
|
}
|
||||||
.ms-saga-1::after, .ms-saga-2::after, .ms-saga-3::after, .ms-saga-4::after, .ms-saga-5::after {
|
.ms-saga-1::after, .ms-saga-2::after, .ms-saga-3::after, .ms-saga-4::after, .ms-saga-5::after {
|
||||||
color: #fff;
|
color: #fff;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
|
File diff suppressed because one or more lines are too long
2
css/mana.min.css
vendored
2
css/mana.min.css
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -247,7 +247,12 @@
|
|||||||
<i class="ms ms-loyalty-down ms-loyalty-x ms-3x"></i>
|
<i class="ms ms-loyalty-down ms-loyalty-x ms-3x"></i>
|
||||||
<i class="ms ms-loyalty-zero ms-loyalty-0 ms-3x"></i>
|
<i class="ms ms-loyalty-zero ms-loyalty-0 ms-3x"></i>
|
||||||
<i class="ms ms-loyalty-start ms-loyalty-4 ms-4x"></i>
|
<i class="ms ms-loyalty-start ms-loyalty-4 ms-4x"></i>
|
||||||
|
<i class="ms ms-loyalty-up ms-loyalty-2 ms-loyalty-outline"></i>
|
||||||
|
<i class="ms ms-loyalty-down ms-loyalty-1 ms-loyalty-outline"></i>
|
||||||
|
<i class="ms ms-loyalty-zero ms-loyalty-0 ms-loyalty-outline"></i>
|
||||||
|
<i class="ms ms-loyalty-start ms-loyalty-5 ms-loyalty-outline"></i>
|
||||||
|
</p>
|
||||||
|
<p class="grid">
|
||||||
<i class="ms ms-saga ms-saga-1 ms-2x"></i>
|
<i class="ms ms-saga ms-saga-1 ms-2x"></i>
|
||||||
<i class="ms ms-saga ms-saga-2 ms-2x"></i>
|
<i class="ms ms-saga ms-saga-2 ms-2x"></i>
|
||||||
<i class="ms ms-saga ms-saga-3 ms-2x"></i>
|
<i class="ms ms-saga ms-saga-3 ms-2x"></i>
|
||||||
|
@ -14,10 +14,13 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
// start
|
// variant alterations
|
||||||
&-start {
|
&-start {
|
||||||
font-size: 2.0em; // increase the size a bit by default
|
font-size: 2.0em; // increase the size a bit by default
|
||||||
}
|
}
|
||||||
|
&-zero::after {
|
||||||
|
line-height: 2.1em !important; // slight correction
|
||||||
|
}
|
||||||
|
|
||||||
// base styles for counters
|
// base styles for counters
|
||||||
&-0::after,
|
&-0::after,
|
||||||
@ -132,6 +135,21 @@
|
|||||||
&.@{ms-prefix}-loyalty-x::after { content: "-X"; }
|
&.@{ms-prefix}-loyalty-x::after { content: "-X"; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// outline style for card text
|
||||||
|
&-outline {
|
||||||
|
&::before {
|
||||||
|
color: transparent;
|
||||||
|
-webkit-text-stroke: 0.03em #111;
|
||||||
|
}
|
||||||
|
&::after {
|
||||||
|
color: #111;
|
||||||
|
}
|
||||||
|
// correction for starting loyalty size
|
||||||
|
&.#{$ms-prefix}-loyalty-start {
|
||||||
|
font-size: 1.6em;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// saga loyalty
|
// saga loyalty
|
||||||
|
@ -14,10 +14,13 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
// start
|
// variant alterations
|
||||||
&-start {
|
&-start {
|
||||||
font-size: 2.0em; // increase the size a bit by default
|
font-size: 2.0em; // increase the size a bit by default
|
||||||
}
|
}
|
||||||
|
&-zero::after {
|
||||||
|
line-height: 2.1em !important; // slight correction
|
||||||
|
}
|
||||||
|
|
||||||
// base styles for counters
|
// base styles for counters
|
||||||
&-0::after,
|
&-0::after,
|
||||||
@ -137,6 +140,21 @@
|
|||||||
&-x::after { content: "-X"; }
|
&-x::after { content: "-X"; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// outline style for card text
|
||||||
|
&-outline {
|
||||||
|
&::before {
|
||||||
|
color: transparent;
|
||||||
|
-webkit-text-stroke: 0.03em #111;
|
||||||
|
}
|
||||||
|
&::after {
|
||||||
|
color: #111;
|
||||||
|
}
|
||||||
|
// correction for starting loyalty size
|
||||||
|
&.#{$ms-prefix}-loyalty-start {
|
||||||
|
font-size: 1.6em;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// saga loyalty
|
// saga loyalty
|
||||||
|
Loading…
Reference in New Issue
Block a user