mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-13 12:26:34 +03:00
37 lines
432 B
CSS
37 lines
432 B
CSS
small {
|
|
color: #999;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-spacing: 0;
|
|
border: 2px solid green;
|
|
}
|
|
|
|
thead tr:first-child {
|
|
background: green;
|
|
color: #fff;
|
|
border: none;
|
|
}
|
|
|
|
thead tr:last-child th {
|
|
border-bottom: 3px solid #ddd;
|
|
}
|
|
|
|
tbody tr:last-child td {
|
|
border: none;
|
|
}
|
|
tbody td {
|
|
border-bottom: 1px solid #ddd;
|
|
}
|
|
|
|
td, th {
|
|
vertical-align: top;
|
|
padding: 10px 15px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
th {
|
|
text-align: left;
|
|
}
|