JSFiddle - React, Tailwind, and code Playground

by the wazz

HTML

<input type="text" value="3" />
<div>3</div>

@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Roboto:300,400,500,700');

input, div {
  font-family: Roboto;
  font-size: 2em;
  padding: 15px 20px;
  margin-bottom: 10px;
  width: 300px;
  border: 1px solid black;
  text-align: right;
  font-style: italic;
}
div {
  background-color: white;  
}