Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:Masteries/styles.css: Difference between revisions

Template page
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
 
(23 intermediate revisions by 2 users not shown)
Line 11: Line 11:
   border-radius: 10px;
   border-radius: 10px;
   width: 100%;
   width: 100%;
  max-width: 200px;
   min-width: 250px;
   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-card-info {
.mastery-card__image {
   display: flex;
   width: 100%;
   align-items:center;
  height: 140px;
   justify-content: space-between;
   object-fit: cover;
   border-radius: 6px 6px 0 0;
   margin-bottom: 10px;
   margin-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
}
}


.mastery-requirement {
.master-card__content {
   background-color: #ccc6c0;
display: flex;
   color: black;
flex-direction: column;
   padding: 3px;
justify-content: space-between;
flex-grow: 1;
}
 
.mastery-card__image img {
border-radius: 6px 6px 0 0;
}
 
.mastery-card__header {
   padding: 0 10px;
}
 
.mastery-card__name {
font-size: 18px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}
 
.mastery-card__description {
   color: #aaa;
   font-size: 16px;
}
}


.mastery-image {
.mastery-card__tier-group {
   width: 100%;
   display: flex;
   height: 120px;
   align-items: center;
   object-fit: cover;
   justify-content: space-between;
  border-radius: 6px 6px 0 0;
   margin-bottom: 10px;
   margin-bottom: 10px;
  padding: 0 10px;
}
}


.mastery-card-header {
.mastery-card__tier-details {
   height: 120px;
   display: flex;
  flex-direction: column;
}
}


.mastery-reward {
.mastery-card__tier {
   color: #ccc;
  font-weight: bold;
   color: white;
}
}


a {
.mastery-card__reward {
   color: #4fa8ff;
   color: #a5a09c;
  text-decoration: none;
}
}


a:hover {
.mastery-card__requirement {
   text-decoration: underline;
  background-color: #ccc6c0;
  color: black;
  font-weight: 500;
  width: 40px;
  font-size: 14px;
   text-align: center;
}
}

Latest revision as of 11:29, 11 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;
}

.master-card__content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-grow: 1;
}

.mastery-card__image img {
	border-radius: 6px 6px 0 0;
}

.mastery-card__header {
  padding: 0 10px;
}

.mastery-card__name {
font-size: 18px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
}

.mastery-card__description {
  color: #aaa;
  font-size: 16px;
}

.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: white;
}

.mastery-card__reward {
  color: #a5a09c;
}

.mastery-card__requirement {
  background-color: #ccc6c0;
  color: black;
  font-weight: 500;
  width: 40px;
  font-size: 14px;
  text-align: center;
}