JSFiddle - React, Tailwind, and code Playground

by Konstantin Rouda

HTML

<button>Click Me</button>

<p>Paragraph with text</p>

CSS

HTML {
  font-family: fantasy;
}

BUTTON {
  -webkit-appearance: none;
  border: 0;
  background: cornflowerblue;
  border-radius: 0.1rem;
  box-sizing: border-box;
  padding: 1rem 2rem;
  font-size: 1.2rem;
}


BUTTON:focus {
  outline: 1px solid firebrick;
  outline-offset: 2px;
}


BUTTON:hover {
  background: blue;
  box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, .11);
}