JSFiddle - React, Tailwind, and code Playground

by Kocsten

HTML

<nav id="zpresaxtu_lodehukin">
    <ul>
        <li><a href="#" data-clone="ZORNET.RU">ZORNET.RU</a></li>
        <li><a href="#" data-clone="ZORNET.RU">ZORNET.RU</a></li>
        <li><a href="#" data-clone="ZORNET.RU">ZORNET.RU</a></li>
        <li><a href="#" data-clone="ZORNET.RU">ZORNET.RU</a></li>
        <li><a href="#" data-clone="ZORNET.RU">ZORNET.RU</a></li>
    </ul>
</nav>

CSS

body {
  background-color:#111;
  margin:0px 0px;
  padding: 100px 0px 100px 0px;
}

#zpresaxtu_lodehukin {
  font:normal 12px 'Trebuchet MS',Trebuchet,Arial,Sans-Serif;
  color:white;
  text-transform:uppercase;

	width:561px; 
	margin:0px auto;
}

#zpresaxtu_lodehukin ul {
  height:50px;
  margin:0px 0px;
  padding:0px 0px;
  overflow:hidden;
}

#zpresaxtu_lodehukin li {
  float:left;
  display:inline;
  list-style:none;
  margin:0px 0px;
  padding:0px 0px;
}

#zpresaxtu_lodehukin a, #zpresaxtu_lodehukin a:before {
    display: block;
    margin: 0px 0px;
    padding: 0px 30px;
    line-height: 50px;
    color: #f7f2f2;
    text-decoration: none;
    background-color: #960808;
    background-image: -webkit-linear-gradient(top, #b71111 0%, #610c0c 50%, #5f0808 50%, #6d1010 100%);
    background-image: -moz-linear-gradient(top, #900 0%, #6A0808 50%, #620303 50%, #6A0808 100%);
    background-image: -ms-linear-gradient(top, #900 0%, #6A0808 50%, #620303 50%, #6A0808 100%);
    background-image: -o-linear-gradient(top, #900 0%, #6A0808 50%, #620303 50%, #6A0808 100%);
    background-image: linear-gradient(top, #900 0%, #6A0808 50%, #620303 50%, #6A0808 100%);
    -webkit-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.18);
    -moz-box-shadow: inset 0px 1px 0px rgba(255,255,255,0.1);
    box-shadow: inset 0px 1px 0px rgba(241, 238, 238, 0.18);
    position: relative;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s cubic-bezier(0.42, 0, 0.51, 1);
}

#zpresaxtu_lodehukin a:before {
  content:attr(data-clone);
  position:absolute;
  top:100%;
	right:0px;
  left:0px;
  display:block;
  background-color:white;
  background-image:-webkit-linear-gradient(top, #ddd, white);
  background-image:-moz-linear-gradient(top, #ddd, white);
  background-image:-ms-linear-gradient(top, #ddd, white);
 ...