2019-08-16 19:31:12 +00:00
|
|
|
/**
|
|
|
|
* Sizes */
|
|
|
|
@each $class, $size in $keyrune_sizes {
|
|
|
|
.#{$keyrune_prefix}.#{$keyrune_prefix}-#{$class} {
|
|
|
|
font-size: #{$size};
|
|
|
|
}
|
2016-12-14 17:54:48 +00:00
|
|
|
}
|
|
|
|
|
2019-08-16 19:31:12 +00:00
|
|
|
/**
|
|
|
|
* Fixed width */
|
|
|
|
.#{$keyrune_prefix}.#{$keyrune_prefix}-fw {
|
|
|
|
width: calc(18em / #{$keyrune_font_size / ($keyrune_font_size * 0 + 1)});
|
|
|
|
text-align: center;
|
2018-03-08 14:58:49 +00:00
|
|
|
}
|
|
|
|
|
2019-08-16 19:31:12 +00:00
|
|
|
/**
|
|
|
|
* Force no border */
|
2016-12-14 17:54:48 +00:00
|
|
|
.#{$keyrune_prefix}.#{$keyrune_prefix}-no-border {
|
2019-08-16 19:31:12 +00:00
|
|
|
-webkit-text-stroke: 0;
|
|
|
|
text-stroke: 0;
|
2016-12-14 17:54:48 +00:00
|
|
|
}
|
|
|
|
|
2019-08-16 19:31:12 +00:00
|
|
|
/**
|
|
|
|
* Icon borders */
|
2016-12-14 17:54:48 +00:00
|
|
|
.#{$keyrune_prefix}.#{$keyrune_prefix}-border {
|
2019-08-16 19:31:12 +00:00
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
left: -0.05em;
|
|
|
|
top: 0.0em;
|
|
|
|
z-index: -1;
|
|
|
|
color: $white;
|
|
|
|
font-size: 1.15em;
|
|
|
|
background: $white;
|
|
|
|
-webkit-text-stroke: 0.05em $white;
|
|
|
|
-webkit-background-clip: $keyrune_background_clip;
|
|
|
|
-webkit-text-fill-color: $keyrune_text_fill;
|
|
|
|
}
|
2016-12-14 17:54:48 +00:00
|
|
|
|
2019-08-16 19:31:12 +00:00
|
|
|
// adding a white version of the symbol for these problem sets,
|
|
|
|
// instead of using the generic text-stroke above
|
|
|
|
@each $set, $code, $glyph in $border-corrections {
|
|
|
|
&.#{$keyrune_prefix}-#{$code}:after { /* #{$set} */
|
|
|
|
content: ss-content($glyph);
|
|
|
|
}
|
2016-12-14 17:54:48 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-02 21:04:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dual-layered symbols */
|
|
|
|
.#{$keyrune_prefix}.#{$keyrune_prefix}-duo {
|
|
|
|
|
|
|
|
// base border styles
|
|
|
|
&::after {
|
|
|
|
color: #000;
|
|
|
|
content: '';
|
|
|
|
display: block;
|
|
|
|
font-size: 1em;
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
// set default inner to white unless a rarity is declared
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
// sets
|
|
|
|
@each $code, $glyph in $dual-layered {
|
|
|
|
&.#{$keyrune_prefix}-#{$code}::after {
|
|
|
|
content: ss-content($glyph);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-26 15:59:47 +00:00
|
|
|
// manual corrections
|
|
|
|
&.#{$keyrune_prefix}-nnc::before {
|
|
|
|
content: "\e98f";
|
|
|
|
}
|
|
|
|
|
2020-09-02 21:04:03 +00:00
|
|
|
// rarity border colors
|
|
|
|
&.#{$keyrune_prefix}-common {
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
&.#{$keyrune_prefix}-uncommon::after,
|
|
|
|
&.#{$keyrune_prefix}-rare::after,
|
|
|
|
&.#{$keyrune_prefix}-mythic::after {
|
|
|
|
color: #000;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|