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

44 lines
575 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 {
border-collapse: collapse;
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 {
background-color: #DCDCDC;
color: black;
padding: 5px 15px;
text-align: left;
border-bottom: 2px solid #afafaf;
}
td {
border-bottom: 1px solid #afafaf;
2015-10-10 16:01:41 +03:00
}
.param-name {
font-weight: bold;
}
.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;
}