mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 11:26:37 +03:00
44 lines
575 B
CSS
44 lines
575 B
CSS
h4 {
|
|
font-size: 16px;
|
|
font-weight: 200;
|
|
color: black;
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
td, th {
|
|
vertical-align: top;
|
|
padding: 10px 15px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
th {
|
|
background-color: #DCDCDC;
|
|
color: black;
|
|
padding: 5px 15px;
|
|
text-align: left;
|
|
border-bottom: 2px solid #afafaf;
|
|
}
|
|
|
|
td {
|
|
border-bottom: 1px solid #afafaf;
|
|
}
|
|
|
|
.param-name {
|
|
font-weight: bold;
|
|
}
|
|
|
|
.param-type {
|
|
background-color: #EAEAEA;
|
|
border: silver 1px solid;
|
|
padding: 5px 10px;
|
|
line-height: 14px;
|
|
font-family: monospace;
|
|
}
|
|
|
|
.body-schema {
|
|
display: inline-block;
|
|
}
|