/* A few custom CSS properties to tweak the layout of the "classic" documentation */

/* Move the related class right by 400px so that it does not overwrite the contents */
div.related ul {
    margin: 0 0 0 400px;
}

/* Move the related class right by 200px so that it does not overwrite the contents and is centered */
div.footer {
    margin: 0 0 0 200px;
}

/* Make deprecated things stand out in red */
.deprecated {
    color: red;
}

/* adds scrollbar to sidenav for Read the Docs theme */
.wy-side-scroll {
    width: auto;
    overflow-y: auto;
}

/* Increase width of sidenav for Read the Docs theme (as some classes in PRIMER have long names) */
.wy-nav-side {
    width: 400px;
}
.wy-side-nav-search {
    width: 390px;
}
.wy-menu-vertical {
    width: 400px;
}
.wy-nav-content-wrap {
    margin-left: 400px;
}

/* Uses whole width of window for Read the Docs theme */
.wy-nav-content {
    max-width: none;
}
