redoc/lib/components/Method/method.css

68 lines
819 B
CSS
Raw Normal View History

2015-10-21 12:20:14 +03:00
responses-list, params-list {
display: block;
}
2015-10-10 15:34:46 +03:00
h2 {
font-size: 32px;
font-weight: 200;
}
h3 {
margin: 0;
font-weight: 200;
}
h3 > span {
padding: 5px 10px;
vertical-align: middle;
}
2015-10-21 14:07:22 +03:00
.content, .samples {
display: block;
box-sizing: border-box;
width: 50%;
float: left;
padding: 0 20px;
}
.method:after {
content: "";
display: table;
clear:both;
}
2015-10-18 20:16:40 +03:00
.method-description {
padding: 30px 0;
}
2015-10-10 15:34:46 +03:00
.http-method {
font-size: 13px;
color: white;
background-color: #1976D3;
}
.http-method.delete {
background-color: red;
}
.http-method.post {
background-color: green;
}
.http-method.patch {
background-color: orange;
}
.http-method.put {
background-color: crimson;
}
.http-method.options {
background-color: black;
}
.http-method.head {
background-color: darkkhaki;
}