JSFiddle - React, Tailwind, and code Playground

by PesecZ42

HTML

<h3>Частые вопросы</h3>
				<ul class="questions">
					<li class="element">Можно ли забронировать комнату онлайн?</li>
					<li class="element">Могут ли вернуть деньги за бронь?</li>
					<li class="element">Какая комната самая популярная?</li>
					<li class="element">Как получить VIP карту?</li>
					<li class="element">Какая комната самая популярная?</li>
				</ul>

CSS

@import "style.css";
@import "faq.css";

.questions {
    background-color: #fff;
    color: #1C1A1A;
    font-weight: 700;
    font-size: 24px;
    padding: 30px 70px;
    margin-bottom: 20px;
}

.element:nth-child(even){
    color: white;
    background-color: #440F51; 
}

.element:nth-child(odd)::after{
    content: "";
    display: inline-block;
    background-image: url(/img/open-purple.svg) no-repeat;
    width: 20px;
    height: 20px;
    float: right;
    margin: 0 6px 0 0;
}

.element:nth-child(even)::after{
    content: "";
    display: inline-block;
    background-image: url(/img/open.svg) no-repeat;
    width: 20px;
    height: 20px;
    float: right;
    margin: 0 6px 0 0;
}