Template:TalentTable.css

From TwogPedia
.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;
	}

}