nav.meta {
  font-family: "Roboto Flex", serif;
  font-weight: 300;
  background-color: var(--background-color-dark);
  color: var(--text-color-light);
  font-size: var(--small-font-size);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99999;
}

nav.meta strong {
  font-weight: 700;
}

nav.meta a {
  color: var(--text-color-light);
  text-decoration: none;
}

nav.meta a:hover {
  text-decoration: underline;
}

nav.meta .shrink {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-shrink: 1;
}

nav.meta .shrink strong {
  text-transform: uppercase;
}

nav.meta .content {
  display: none;
}

nav.meta > section {
  padding: 0 1rem;
  margin: 0 auto;
  max-width: var(--max-width);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
}

nav.meta > section .content > span + span:before {
  content: "·";
  padding: 0.25rem;
}

@media (min-width: 700px) {
  nav.meta > section {
    padding: 0;
  }
}

nav.meta.scrolling .content {
  display: block;
}

nav.meta.scrolling .shrink span {
  display: none;
}

nav.meta.scrolling .wrapper svg {
  display: none;
}
