JSFiddle - React, Tailwind, and code Playground

by fristyr

HTML

<ul>
  <li class="test">Oops</li>
  <li class="test">Oops</li>
</ul>

CSS

.test {
  display: block;
  font-size: 15px;
  font-weight: 700;
  font-family: sans-serif;
  opacity: 0.7;
  color: yellow;
  background-color: brown;
  width: 100px;
  height: 50px;
  line-height: 20px;
  padding: 10px;
  margin: 10px;
  text-align: center;
  cursor: pointer;
  border-radius: 50px;
  list-style: none;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid black;
  text-shadow: 2px 2px 2px red;
}