small pixel drawing of a pufferfish j3s.sh

static/style.css

:root {
  font-size: 1rem;
  --medium-gray: #ddd;
  --gray: #6a6a6a;
}

/* make sure the scrollbar is always shown so
   the width doesnt change between pages */
html {
  overflow-y: scroll
}

img {
  border-bottom: none;
}

a:hover {
  border-bottom: 1.5px solid var(--gray);
}

a {
  text-decoration: none;
  border-bottom: 1.5px solid var(--medium-gray);
}

#main,
#header,
aside,
img {
  max-width: 500px;
  margin: 0 auto;
  padding: 0;
}


#header {
  font-family: monospace;
  text-align: center;
}

.grayscale {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
}