﻿/* hide the api_key field, because it will do nothing and so is annoying / distracting */
#input_apiKey {
    display: none;
}

/* hide the Swagger logo and link */
#logo {
    display: none;
}

.swagger-section #header {
    background-color: #eeeeee;
}

/* hide the text box for each parameter, because it does nothing and takes up space that would be more usefully spent
    on the details of data types
*/
table.fullwidth.parameters > thead > tr > th:nth-child(2) {
    display: none;
}

table.fullwidth.parameters > tbody > tr > td:nth-child(2) {
    display:none;
}

