redoc/lib/components/ResponsesList/responses-list.css

45 lines
511 B
CSS
Raw Normal View History

2015-10-21 14:11:35 +03:00
small {
color: #999;
}
2015-10-21 12:20:14 +03:00
table {
width: 100%;
border-spacing: 0;
border: 2px solid green;
}
2015-10-22 21:50:26 +03:00
th.response-code {
width: 10%;
}
th.response-description {
width: 30%;
}
2015-10-21 12:20:14 +03:00
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;
2015-10-22 21:50:26 +03:00
padding: 10px 10px;
2015-10-21 12:20:14 +03:00
font-size: 12px;
}
th {
text-align: left;
}