More actions
No edit summary |
No edit summary |
||
Line 26: | Line 26: | ||
text-transform: uppercase; | text-transform: uppercase; | ||
font-weight: bold; | font-weight: bold; | ||
font-size: | font-size: 18px; | ||
font-style: italic; | font-style: italic; | ||
font-family: 'Saira Extra Condensed', 'Nunito','Saira',system-ui,-apple-system,sans-serif; | font-family: 'Saira Extra Condensed', 'Nunito','Saira',system-ui,-apple-system,sans-serif; |
Revision as of 18:22, 1 March 2024
.cosmetic-card {
display: inline-block;
width: 115px;
margin: 0px 6px 6px 0;
vertical-align:top;
}
.cosmetic-card__background {
background: linear-gradient(#808b9a,#d5e2e6);
border-radius: 6px 6px 0 0;
}
.cosmetic-card__background img {
width: 115px;
height: 115px;
object-position: center;
border-radius: 6px 6px 0 0;
}
.cosmetic-card__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-style: italic;
font-family: 'Saira Extra Condensed', 'Nunito','Saira',system-ui,-apple-system,sans-serif;
line-height: 1.4;
}
.cosmetic-card__name {
text-align: center;
color: gray;
margin-top: 8px;
font-size: 13px;
}
.cosmetic-card__line {
height: 10px;
border-radius: 0 0 6px 6px;
background-color: var(--rarity-none);
}
.cosmetic-card__legendary {
background-color: var(--rarity-legendary);
}
.cosmetic-card__epic {
background-color: var(--rarity-epic);
}
.cosmetic-card__rare {
background-color: var(--rarity-rare);
}
.cosmetic-card__common {
background-color: var(--rarity-common);
}