Как сделать каждый второй элемент другого цвета
(через nth-child(2n) красятся все блоки)
файл : shortstory.tpl
(через nth-child(2n) красятся все блоки)
файл : shortstory.tpl
Код:
<div class="seriallist-wrapper">
<a style="text-decoration: none;" class="serialink" href="{full-link}"><span class="ndex3" rel="1"></span>{title}</a>
<div class="season-box"><span class="index3" rel="2"></span>[xfvalue_season]</div>
</div>
</div>
Код:
.seriallist {
list-style-type: decimal;
margin-left: 26px;
padding: 0 10px;
color: #fff;
}
.seriallist-wrapper {
display: flex;
justify-content: space-between;
align-items: center;
}
.serialink {
display: block;
width: calc(100% - 100px);
padding: 7px 0;
font-size: 17px;
color: #fff;
margin-left: 1%;
}
.season-box {
width: 130px;
height: 20px;
text-align: right;
color: #fff;
margin-right: 1%;
}
.seriallist-wrapper:hover {
background: #DF314D;
}


