More actions
No edit summary |
No edit summary |
||
Line 17: | Line 17: | ||
.mastery-card__image { | .mastery-card__image { | ||
width: 100%; | width: 100%; | ||
height: | height: 140px; | ||
object-fit: cover; | object-fit: cover; | ||
border-radius: 6px 6px 0 0; | border-radius: 6px 6px 0 0; |
Revision as of 17:44, 3 June 2025
.mastery-container {
display: flex;
flex-wrap: nowrap;
overflow: auto;
gap: 20px;
padding-bottom: 15px;
}
.mastery-card {
background-color: #101826;
border-radius: 10px;
width: 100%;
min-width: 250px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.mastery-card__image {
width: 100%;
height: 140px;
object-fit: cover;
border-radius: 6px 6px 0 0;
margin-bottom: 10px;
}
.mastery-card__image img {
border-radius: 6px 6px 0 0;
}
.mastery-card__header {
height: 120px;
}
.mastery-card__name {
font-weight: bold;
color: #fff;
padding: 0 10px;
}
.mastery-card__description {
color: #aaa;
font-size: 0.9em;
padding: 0 10px;
}
.mastery-card__tier-group {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
padding: 0 10px;
}
.mastery-card__tier-details {
display: flex;
flex-direction: column;
}
.mastery-card__tier {
font-weight: bold;
color: #f0c674;
}
.mastery-card__reward {
color: #ccc;
}
.mastery-card__requirement {
background-color: #ccc6c0;
color: black;
padding: 3px;
font-size: 0.85em;
border-radius: 3px;
}