More actions
No edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
/* CosmeticIcon */ | /* CosmeticIcon */ | ||
.cosmetic- | .cosmetic-icon { | ||
display: inline-block; | display: inline-block; | ||
width: 100px; | width: 100px; | ||
Line 20: | Line 20: | ||
} | } | ||
.cosmetic- | .cosmetic-icon__background { | ||
background: linear-gradient(#808b9a,#d5e2e6); | background: linear-gradient(#808b9a,#d5e2e6); | ||
border-radius: 6px 6px 0 0; | border-radius: 6px 6px 0 0; | ||
} | } | ||
.cosmetic- | .cosmetic-icon__background .image { | ||
border-radius: 6px 6px 0 0; | border-radius: 6px 6px 0 0; | ||
} | } | ||
.cosmetic- | .cosmetic-icon__background img { | ||
width: 100px; | width: 100px; | ||
height: 100px; | height: 100px; | ||
Line 35: | Line 35: | ||
} | } | ||
.cosmetic- | .cosmetic-icon__optional { | ||
text-align: center; | text-align: center; | ||
color: #B9BABC; | color: #B9BABC; | ||
Line 49: | Line 49: | ||
} | } | ||
.cosmetic- | .cosmetic-icon__line { | ||
height: 8px; | height: 8px; | ||
border-radius: 0 0 6px 6px; | border-radius: 0 0 6px 6px; | ||
Line 60: | Line 55: | ||
} | } | ||
.cosmetic- | .cosmetic-icon__legendary { | ||
background-color: var(--rarity-legendary); | background-color: var(--rarity-legendary); | ||
} | } | ||
.cosmetic- | .cosmetic-icon__epic { | ||
background-color: var(--rarity-epic); | background-color: var(--rarity-epic); | ||
} | } | ||
.cosmetic- | .cosmetic-icon__rare { | ||
background-color: var(--rarity-rare); | background-color: var(--rarity-rare); | ||
} | } | ||
.cosmetic- | .cosmetic-icon__common { | ||
background-color: var(--rarity-common); | background-color: var(--rarity-common); | ||
} | } |
Revision as of 17:50, 22 October 2024
.template-rarity {
display: inline-block;
border-radius: 4px;
padding: 1px 10px 1px 8px;
background: #2bb2d4;
color: #fff;
/* letter-spacing: 0.5px; */
font-style: italic;
font-weight: bold;
font-family: 'Saira Extra Condensed','Nunito','Saira',system-ui,-apple-system,sans-serif;
text-transform: uppercase;
line-height: 1.4;
}
/* CosmeticIcon */
.cosmetic-icon {
display: inline-block;
width: 100px;
vertical-align:top;
}
.cosmetic-icon__background {
background: linear-gradient(#808b9a,#d5e2e6);
border-radius: 6px 6px 0 0;
}
.cosmetic-icon__background .image {
border-radius: 6px 6px 0 0;
}
.cosmetic-icon__background img {
width: 100px;
height: 100px;
object-position: center;
}
.cosmetic-icon__optional {
text-align: center;
color: #B9BABC;
background-color: #302b36;
margin-top: 4px;
border-radius: 4px;
text-transform: uppercase;
font-weight: bold;
font-size: 18px;
font-family: 'Saira Extra Condensed', 'Nunito','Saira',system-ui,-apple-system,sans-serif;
line-height: 1.4;
font-style: italic;
}
.cosmetic-icon__line {
height: 8px;
border-radius: 0 0 6px 6px;
background-color: var(--rarity-none);
}
.cosmetic-icon__legendary {
background-color: var(--rarity-legendary);
}
.cosmetic-icon__epic {
background-color: var(--rarity-epic);
}
.cosmetic-icon__rare {
background-color: var(--rarity-rare);
}
.cosmetic-icon__common {
background-color: var(--rarity-common);
}