nightrunner_lib 0.4.0

A parser library for making text adventure games
Documentation
h1 {
  font-size: larger;
}
.App {
  text-align: center;
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 1vmin);
  color: white;
}
.display-area {
  background-color: dimgray;
  display: block;
  padding: 20px;
  overflow-y: auto;
  overflow-wrap: break-word;
  scroll-padding-bottom: 20px;
  width: 80vw;
  max-width: 80vw;
  white-space: break-spaces;
}
.single-area {
  height: 50vh;
  text-align: start;
}
.room-message {
  height: 30vh;
}
.event-message {
  height: 10vh;
}
.exits {
  height: 10vh;
}
.centered {
  margin: 0 auto;
}

button,
input {
  font-size: calc(5px + 2vmin);
}