Template:TalentTable.css: Difference between revisions

From TwogPedia
(Couchor changed the content model of the page Template:TalentTable.css from "wikitext" to "Sanitized CSS")
Tag: content model change
No edit summary
 
(11 intermediate revisions by the same user not shown)
Line 1: Line 1:
.talent__container {
.tc {
display: flex;
text-align: left;
flex-wrap: wrap;
margin: 20px 0;
column-gap: 1rem;
font-weight: bold;
color: #ECEBEB;
}
 
.talent__role .tc .image {
    margin-right: 10px;
}
}


Line 8: Line 13:
font-size: 1.2rem;
font-size: 1.2rem;
font-weight: bold;
font-weight: bold;
padding: 0.5rem;
/*padding: 0.5rem;*/
}
}


.talent__role {
.talent__role ul {
max-width: 200px;
list-style: none
}
 
.talent__role li a {
    color: inherit;
    text-decoration: none;
    color: #ECEBEB !important;
    font-size: 12px !important;
}
 
.talent__role ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    height: 36px;
    background: #19191E;
    padding: 13.47px 10px;
}
}


.talent__role ul {
.talent__role ul {
margin-top: 0;
margin: 0;
}
 
.talent__role ul li:first-child {
    border-top-left-radius: 7.52px;
    border-top-right-radius: 7.52px;
}
 
.talent__role ul li:last-child {
    border-bottom-left-radius: 7.52px;
    border-bottom-right-radius: 7.52px;
}
 
.talent__role ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    height: 36px;
    background: #19191E;
    padding: 13.47px 10px;
    transition: background 0.3s ease;
}
 
.talent__role ul li:hover {
    background: linear-gradient(325.21deg, rgba(255, 255, 255, 0.1) 0.82%, rgba(120, 120, 120, 0) 99.45%);
}
 
@media (min-width: 700px) {
  .talent__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
  }
}
 
@media (max-width: 701px) {
.talent__container {
  display: flex;
  flex-direction: column;
  gap: 0 !important;
  width: 100%;
}
.talent__role {
  width: 100%;
  display: block;
}
 
}
}

Latest revision as of 19:52, 13 May 2025

.tc {
	text-align: left;
	margin: 20px 0;
	font-weight: bold;
	color: #ECEBEB;
}

.talent__role .tc .image {
    margin-right: 10px;
}

.talent__stage {
	font-size: 1.2rem;
	font-weight: bold;
	/*padding: 0.5rem;*/
}

.talent__role ul {
	list-style: none
}

.talent__role li a {
    color: inherit;
    text-decoration: none;
    color: #ECEBEB !important;
    font-size: 12px !important;
}

.talent__role ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    height: 36px;
    background: #19191E;
    padding: 13.47px 10px;
}

.talent__role ul {
	margin: 0;
}

.talent__role ul li:first-child {
    border-top-left-radius: 7.52px;
    border-top-right-radius: 7.52px;
}

.talent__role ul li:last-child {
    border-bottom-left-radius: 7.52px;
    border-bottom-right-radius: 7.52px;
}

.talent__role ul li {
    display: flex;
    gap: 10px;
    align-items: center;
    width: 100%;
    height: 36px;
    background: #19191E;
    padding: 13.47px 10px;
    transition: background 0.3s ease;
}

.talent__role ul li:hover {
    background: linear-gradient(325.21deg, rgba(255, 255, 255, 0.1) 0.82%, rgba(120, 120, 120, 0) 99.45%);
}

@media (min-width: 700px) {
  .talent__container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
  }
}

@media (max-width: 701px) {
	.talent__container {
	  display: flex;
	  flex-direction: column;
	  gap: 0 !important;
	  width: 100%;
	}
	
	.talent__role {
	  width: 100%;
	  display: block;
	}

}