GitHub - kofigumbs/tare: Tall, responsive pseudo-font. Implemented in both Ruby and JS.

1 min read Original article ↗

Tare

Tall, responsive pseudo-font, built with flexbox and borders. Made for brutalist visualizations.

Demo GIF

<!DOCTYPE html>
<style>
  [data-tare] {
    height: 42vh;
    margin: 5vh 5vw;
  }
  [data-tare-character] * {
    border-width: 10px;
  }
  [data-tare-character] + [data-tare-character] {
    margin-left: 20px;
  }
</style>
<body>
  <script type="module">
    import Tare from "./dist/tare.es.js";
    document.body.innerHTML += Tare.html("abcdefghijklmn");
    document.body.innerHTML += Tare.html("opqrstuvwxyz");
  </script>
</body>