redoc/lib/components/ParamsList/params-list.css

51 lines
658 B
CSS
Raw Normal View History

2015-10-10 16:01:41 +03:00
h4 {
font-size: 16px;
font-weight: 200;
color: black;
}
2015-10-18 12:29:18 +03:00
table {
2015-10-21 12:20:14 +03:00
width: 100%;
2015-10-18 20:16:40 +03:00
border-spacing: 0;
border: 2px solid #1976D3;
}
thead tr:first-child {
background: #1976D3;
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;
2015-10-10 16:01:41 +03:00
}
2015-10-18 12:29:18 +03:00
td, th {
2015-10-17 21:12:46 +03:00
vertical-align: top;
2015-10-18 12:29:18 +03:00
padding: 10px 15px;
font-size: 12px;
}
th {
text-align: left;
2015-10-10 16:01:41 +03:00
}
.param-type {
background-color: #EAEAEA;
border: silver 1px solid;
2015-10-18 12:29:18 +03:00
padding: 5px 10px;
line-height: 14px;
font-family: monospace;
2015-10-10 16:01:41 +03:00
}
2015-10-17 21:12:46 +03:00
.body-schema {
display: inline-block;
}