breadx 0.2.3

Implementation of the X Window System Protocol
Documentation
// MIT/Apache2 License

// Superclass for aside boxes, fixes stuff on dark mode.
%aside-box {
  color: #222;

  h2 {
    color: #222;
  }

  code {
    background-color: #f5f5f5;
    color: #222;
  }
}

.dissecting {
  @extend %aside-box;

  border: 2px solid black;
  border-radius: 12px;
  margin: 15px;
  padding: 15px;
  background: #defffd;
}

.another-perspective {
  @extend %aside-box;

  border: 2px dotted black;
  margin: 15px;
  padding: 15px;
  background: #daffd9;
}

.note {
  @extend %aside-box;

  border: 2px dotted black;
  background: #ededed;
  margin: 15px;
  padding: 15px;
}