better icons
This commit is contained in:
parent
5c35c2d195
commit
711a83ba56
@ -67,7 +67,7 @@
|
|||||||
height: 4em;
|
height: 4em;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
text-transform: none;
|
// text-transform: none;
|
||||||
|
|
||||||
&.empty {
|
&.empty {
|
||||||
border-style: dashed;
|
border-style: dashed;
|
||||||
@ -77,6 +77,10 @@
|
|||||||
color: black;
|
color: black;
|
||||||
background: @white;
|
background: @white;
|
||||||
border: 1px solid @white;
|
border: 1px solid @white;
|
||||||
|
|
||||||
|
ellipse.white {
|
||||||
|
stroke: black;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -88,6 +92,7 @@
|
|||||||
figure {
|
figure {
|
||||||
svg {
|
svg {
|
||||||
height: 2em;
|
height: 2em;
|
||||||
|
stroke-width: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
figcaption {
|
figcaption {
|
||||||
|
|||||||
@ -58,20 +58,79 @@ module.exports = {
|
|||||||
|
|
||||||
|
|
||||||
// Lifes Upgrades
|
// Lifes Upgrades
|
||||||
LifeGG: () => square(['green']),
|
LifeGG: () =>
|
||||||
LifeRR: () => square(['red']),
|
<figure>
|
||||||
LifeBB: () => square(['blue']),
|
{square(['green'])}
|
||||||
LifeRG: () => square(['red', 'green']),
|
<figcaption>Life</figcaption>
|
||||||
LifeGB: () => square(['green', 'blue']),
|
</figure>,
|
||||||
LifeRB: () => square(['red', 'blue']),
|
|
||||||
|
LifeRR: () =>
|
||||||
|
<figure>
|
||||||
|
{square(['green'])}
|
||||||
|
<figcaption>Life</figcaption>
|
||||||
|
</figure>,
|
||||||
|
|
||||||
|
LifeBB:() =>
|
||||||
|
<figure>
|
||||||
|
{square(['green'])}
|
||||||
|
<figcaption>Life</figcaption>
|
||||||
|
</figure>,
|
||||||
|
|
||||||
|
LifeRG: () =>
|
||||||
|
<figure>
|
||||||
|
{square(['red', 'green'])}
|
||||||
|
<figcaption>Life</figcaption>
|
||||||
|
</figure>,
|
||||||
|
|
||||||
|
LifeGB: () =>
|
||||||
|
<figure>
|
||||||
|
{square(['green', 'blue'])}
|
||||||
|
<figcaption>Life</figcaption>
|
||||||
|
</figure>,
|
||||||
|
|
||||||
|
LifeRB:() =>
|
||||||
|
<figure>
|
||||||
|
{square(['red', 'blue'])}
|
||||||
|
<figcaption>Life</figcaption>
|
||||||
|
</figure>,
|
||||||
|
|
||||||
|
|
||||||
// Power Upgrades
|
// Power Upgrades
|
||||||
PowerGG: () => circle(['green']),
|
PowerGG: () =>
|
||||||
PowerRR: () => circle(['red']),
|
<figure>
|
||||||
PowerBB: () => circle(['blue']),
|
{circle(['green'])}
|
||||||
PowerRG: () => circle(['red', 'green']),
|
<figcaption>Power</figcaption>
|
||||||
PowerGB: () => circle(['green', 'blue']),
|
</figure>,
|
||||||
PowerRB: () => circle(['red', 'blue']),
|
|
||||||
|
PowerRR: () =>
|
||||||
|
<figure>
|
||||||
|
{circle(['green'])}
|
||||||
|
<figcaption>Power</figcaption>
|
||||||
|
</figure>,
|
||||||
|
|
||||||
|
PowerBB:() =>
|
||||||
|
<figure>
|
||||||
|
{circle(['green'])}
|
||||||
|
<figcaption>Power</figcaption>
|
||||||
|
</figure>,
|
||||||
|
|
||||||
|
PowerRG: () =>
|
||||||
|
<figure>
|
||||||
|
{circle(['red', 'green'])}
|
||||||
|
<figcaption>Power</figcaption>
|
||||||
|
</figure>,
|
||||||
|
|
||||||
|
PowerGB: () =>
|
||||||
|
<figure>
|
||||||
|
{circle(['green', 'blue'])}
|
||||||
|
<figcaption>Power</figcaption>
|
||||||
|
</figure>,
|
||||||
|
|
||||||
|
PowerRB:() =>
|
||||||
|
<figure>
|
||||||
|
{circle(['red', 'blue'])}
|
||||||
|
<figcaption>Power</figcaption>
|
||||||
|
</figure>,
|
||||||
|
|
||||||
// Speed Upgrades
|
// Speed Upgrades
|
||||||
SpeedGG: () =>
|
SpeedGG: () =>
|
||||||
@ -80,9 +139,33 @@ module.exports = {
|
|||||||
<figcaption>Speed</figcaption>
|
<figcaption>Speed</figcaption>
|
||||||
</figure>,
|
</figure>,
|
||||||
|
|
||||||
SpeedRR: () => triangle(['red']),
|
SpeedRR: () =>
|
||||||
SpeedBB: () => triangle(['blue']),
|
<figure>
|
||||||
SpeedRG: () => triangle(['red', 'green']),
|
{triangle(['green'])}
|
||||||
SpeedGB: () => triangle(['green', 'blue']),
|
<figcaption>Speed</figcaption>
|
||||||
SpeedRB: () => triangle(['red', 'blue']),
|
</figure>,
|
||||||
|
|
||||||
|
SpeedBB:() =>
|
||||||
|
<figure>
|
||||||
|
{triangle(['green'])}
|
||||||
|
<figcaption>Speed</figcaption>
|
||||||
|
</figure>,
|
||||||
|
|
||||||
|
SpeedRG: () =>
|
||||||
|
<figure>
|
||||||
|
{triangle(['red', 'green'])}
|
||||||
|
<figcaption>Speed</figcaption>
|
||||||
|
</figure>,
|
||||||
|
|
||||||
|
SpeedGB: () =>
|
||||||
|
<figure>
|
||||||
|
{triangle(['green', 'blue'])}
|
||||||
|
<figcaption>Speed</figcaption>
|
||||||
|
</figure>,
|
||||||
|
|
||||||
|
SpeedRB:() =>
|
||||||
|
<figure>
|
||||||
|
{triangle(['red', 'blue'])}
|
||||||
|
<figcaption>Speed</figcaption>
|
||||||
|
</figure>,
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user