<main class="container">
  <input class="display" readonly type="text" dir="rtl" maxlength="8" placeholder="88888" />
</main>
@import url(https://fonts.googleapis.com/css?family=Audiowide);

* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
}

.container {
  /* layout */
  display: flex;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  align-items: center;

  /* style */
  background: #1a0014;
}

.display {
  /* layout */
  overflow: hidden;

  padding: 5px;
  height: 75px;
  width: 320px;

  /* style */
  background: rgba(56, 62, 37, 1);
  box-shadow: inset 1px 1px 6px 0px #050505, 0px 0px 4px 2px #000,
    0px 0px 4px 2px #777;

  /* typography */
  color: black;
  font-size: 3rem;
  font-family: "Audiowide", cursive;

  /* effects */
  &:hover {
    cursor: cell;
  }
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.