More actions
Created page with ".mastery-container { display: flex; flex-wrap: nowrap; overflow: auto; gap: 20px; padding-bottom: 15px; } .mastery-card { background-color: #101826; border-radius: 10px; width: 100%; max-width: 200px; min-width: 200px; box-shadow: 0 0 10px rgba(0,0,0,0.5); } .mastery-card-info { display: flex; align-items:center; justify-content: space-between; margin-bottom: 10px; padding-left: 10px; padding-right: 10px; } .mastery-requirement { ba..." |
No edit summary |
||
Line 13: | Line 13: | ||
max-width: 200px; | max-width: 200px; | ||
min-width: 200px; | min-width: 200px; | ||
box-shadow: 0 0 10px rgba(0,0,0,0.5); | box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); | ||
} | } | ||
.mastery- | .mastery-card__image { | ||
width: 100%; | |||
height: 120px; | |||
object-fit: cover; | |||
border-radius: 6px 6px 0 0; | |||
margin-bottom: 10px; | margin-bottom: 10px; | ||
} | } | ||
.mastery- | .mastery-card__header { | ||
height: 120px; | |||
color: | } | ||
padding: | |||
.mastery-card__name { | |||
font-weight: bold; | |||
color: #fff; | |||
padding: 0 10px; | |||
} | |||
.mastery-card__description { | |||
color: #aaa; | |||
font-size: 0.9em; | |||
padding: 0 10px; | |||
} | } | ||
.mastery- | .mastery-card__tier-group { | ||
display: flex; | |||
align-items: center; | |||
justify-content: space-between; | |||
margin-bottom: 10px; | margin-bottom: 10px; | ||
padding: 0 10px; | |||
} | } | ||
.mastery- | .mastery-card__tier-details { | ||
display: flex; | |||
flex-direction: column; | |||
} | } | ||
.mastery- | .mastery-card__tier { | ||
color: # | font-weight: bold; | ||
color: #f0c674; | |||
} | } | ||
.mastery-card__reward { | |||
color: # | color: #ccc; | ||
} | } | ||
.mastery-card__requirement { | |||
background-color: #ccc6c0; | |||
color: black; | |||
padding: 3px; | |||
font-size: 0.85em; | |||
border-radius: 3px; | |||
} | } |
Revision as of 17:39, 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%;
max-width: 200px;
min-width: 200px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.mastery-card__image {
width: 100%;
height: 120px;
object-fit: cover;
border-radius: 6px 6px 0 0;
margin-bottom: 10px;
}
.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;
}