webdog 0.1.4

static site generator fit for a dog
Documentation
.page {
  background-color: #bbb;
  padding: 8px;
}

.wd-codeblock {
  position: relative;
  tab-size: 2;

  .copy {
    display: none;
    opacity: 0;
    z-index: 1;
    position: absolute;
    top: 0;
    right: 0;
    transition: opacity linear 0.1s;

    &:focus {
      transition: none;
      opacity: 1;
    }
  }

  &:hover .copy,
  &:focus .copy {
    opacity: 1;
  }

  & > pre {
    padding: 8px;
    overflow: auto;
  }
}