.rad-endpoints {

  &-wrap{
    display: table;
    width: 100%;
    table-layout: auto;
  }

  &-sidebar{
    display: table-cell;
    padding-right: 20px;
    width: 180px;
  }

  &-main{
    display: table-cell;
  }

  &-namespace {
    font-size: 32px;
    code{
      font-size: 32px;
    }
  }

  &-title {
    font-size: 26px;
  }

  &-item {
    margin: 0 0 40px;
  }

  &-method{
    font-size: 20px;
  }

  &-methods{
    color: #888;
    font-size: 0.8em;
    margin-left: 0.25em;
  }

  &-link{
    $link-color: #23282d;
    display: block;
    padding: 10px;
    font-family: monospace;
    margin: 0;
    transition: color .3s linear, background-color .3s linear;
    border: transparent 2px solid;
    border-top-width: 1px;
    border-bottom-width: 1px;
    &:first-child{
      border-top-width: 2px;
    }
    &:last-child{
      border-bottom-width: 2px;
    }
    &:link, &:visited{
      text-decoration: none;
      color: $link-color;
      border-color: $link-color;
      background: transparent;
    }
    &:hover, &:active{
      text-decoration: none;
      background: $link-color;
      color: #fff;
    }
  }

}

.rad-argument {
  font-size: 14px;
  table-layout: auto;
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 10px;
  &-no{
    margin: 0 0 10px;
    color: #aaa;
    font-size: 18px;
  }
  .dashicons-yes{
    color: #61ad6f;
  }
  .dashicons-minus{
    color: #ddd;
  }
  th, td {
    padding: 10px;
    border: 1px solid #ddd;
  }
  th {
    vertical-align: top;
    font-family: monospace;
    text-align: right;
    word-break: break-all;
    width: 15%;
    background: #f5f5f5;
    &.rad-argument-name{
      text-align: left;
      background: #f9f9f9;
    }
  }
  td {

  }
  &-prop {
    text-align: right;
  }
}