mirror of
https://github.com/andrewgioia/mana.git
synced 2024-11-21 22:54:45 +00:00
Adds evergreen colorizing on abilities
This commit is contained in:
parent
624e007781
commit
2afc3cab10
@ -11,6 +11,10 @@ All notable changes to this project will be documented in this file.
|
|||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
|
### [1.9.2] 2020-09-23 Adds evergreen color support
|
||||||
|
|
||||||
|
* **Added:** Class `.ms-evergreen` on ability symbols will apply the gold gradient effect in Arena.
|
||||||
|
|
||||||
### [1.9.1] 2020-09-04 Modal DFC symbols and Multicolor/duo support
|
### [1.9.1] 2020-09-04 Modal DFC symbols and Multicolor/duo support
|
||||||
|
|
||||||
* **Added:** Two new double-faced symbols for `modal-face` and `modal-back` added, from [Zendikar Rising](https://scryfall.com/card/znr/264/riverglide-pathway-lavaglide-pathway) [#54](https://github.com/andrewgioia/mana/issues/54)
|
* **Added:** Two new double-faced symbols for `modal-face` and `modal-back` added, from [Zendikar Rising](https://scryfall.com/card/znr/264/riverglide-pathway-lavaglide-pathway) [#54](https://github.com/andrewgioia/mana/issues/54)
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# Mana v1.9.1
|
# Mana v1.9.2
|
||||||
|
|
||||||
## The Magic: the Gathering mana symbol font!
|
## The Magic: the Gathering mana symbol font!
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "mana",
|
"name": "mana",
|
||||||
"homepage": "https://github.com/andrewgioia/mana",
|
"homepage": "https://github.com/andrewgioia/mana",
|
||||||
"version": "1.9.1",
|
"version": "1.9.2",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Andrew Gioia <andrew@gioia.email>"
|
"Andrew Gioia <andrew@gioia.email>"
|
||||||
],
|
],
|
||||||
|
@ -1318,3 +1318,8 @@ span.ms-half > .ms-cost {
|
|||||||
-webkit-background-clip: text;
|
-webkit-background-clip: text;
|
||||||
-webkit-text-fill-color: transparent;
|
-webkit-text-fill-color: transparent;
|
||||||
}
|
}
|
||||||
|
.ms-evergreen {
|
||||||
|
background: linear-gradient(0deg, #c8913b 0%, #ecc65a 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
}
|
||||||
|
2
css/mana.min.css
vendored
2
css/mana.min.css
vendored
File diff suppressed because one or more lines are too long
6
less/extras.less
Normal file
6
less/extras.less
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
// evergreen ability coloring
|
||||||
|
.@{ms-prefix}-evergreen {
|
||||||
|
background: @ms-ability-grad;
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
}
|
@ -6,4 +6,5 @@
|
|||||||
@import "loyalty.less";
|
@import "loyalty.less";
|
||||||
@import "dfc.less";
|
@import "dfc.less";
|
||||||
@import "sizes.less";
|
@import "sizes.less";
|
||||||
@import "duo.less";
|
@import "duo.less";
|
||||||
|
@import "extras.less";
|
@ -1,10 +1,11 @@
|
|||||||
// base variables
|
// base variables
|
||||||
@ms-font-path: '../fonts';
|
@ms-font-path: '../fonts';
|
||||||
@ms-version: '1.9.1';
|
@ms-version: '1.9.2';
|
||||||
@ms-font-size-base: 14px;
|
@ms-font-size-base: 14px;
|
||||||
@ms-prefix: ms;
|
@ms-prefix: ms;
|
||||||
@ms-serif-font: MPlantin, Garamond, Palatino, 'Times New Roman', Times, serif;
|
@ms-serif-font: MPlantin, Garamond, Palatino, 'Times New Roman', Times, serif;
|
||||||
|
|
||||||
// colors
|
// colors
|
||||||
@ms-multicolor-flat: #cca753;
|
@ms-multicolor-flat: #cca753;
|
||||||
@ms-multicolor-grad: linear-gradient(45deg, #cca54f 0%, #e0d3bb 50%, #cca54f 100%);
|
@ms-multicolor-grad: linear-gradient(45deg, #cca54f 0%, #e0d3bb 50%, #cca54f 100%);
|
||||||
|
@ms-ability-grad: linear-gradient(0deg, #c8913b 0%, #ecc65a 100%);
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "mana-font",
|
"name": "mana-font",
|
||||||
"version": "1.9.1",
|
"version": "1.9.2",
|
||||||
"description": "Magic: the Gathering mana symbol pictographic font",
|
"description": "Magic: the Gathering mana symbol pictographic font",
|
||||||
"main": "css/mana.css",
|
"main": "css/mana.css",
|
||||||
"repository": {
|
"repository": {
|
||||||
|
5
sass/_extras.scss
Normal file
5
sass/_extras.scss
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
.#{$ms-prefix}-evergreen {
|
||||||
|
background: $ms-ability-grad;
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
}
|
@ -1,6 +1,6 @@
|
|||||||
// base variables
|
// base variables
|
||||||
$ms-font-path: '../fonts' !default;
|
$ms-font-path: '../fonts' !default;
|
||||||
$ms-version: '1.9.1' !default;
|
$ms-version: '1.9.2' !default;
|
||||||
$ms-font-size-base: 14px !default;
|
$ms-font-size-base: 14px !default;
|
||||||
$ms-prefix: ms !default;
|
$ms-prefix: ms !default;
|
||||||
$ms-serif-font: 'MPlantin, Garamond, Palatino, 'Times New Roman', Times, serif' !default;
|
$ms-serif-font: 'MPlantin, Garamond, Palatino, 'Times New Roman', Times, serif' !default;
|
||||||
|
@ -6,4 +6,5 @@
|
|||||||
@import "loyalty";
|
@import "loyalty";
|
||||||
@import "dfc";
|
@import "dfc";
|
||||||
@import "sizes";
|
@import "sizes";
|
||||||
@import "duo";
|
@import "duo";
|
||||||
|
@import "extras";
|
Loading…
Reference in New Issue
Block a user