redoc/lib/components/Method/method.css

121 lines
1.5 KiB
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 {
2015-10-29 00:37:16 +03:00
font-size: 25px;
2015-10-10 15:34:46 +03:00
font-weight: 200;
2015-11-17 01:03:49 +03:00
color: #253137;
2015-10-10 15:34:46 +03:00
}
h3 {
margin: 0;
font-weight: 200;
2015-11-17 01:03:49 +03:00
font-size: 0;
2015-10-10 15:34:46 +03:00
}
h3 > span {
2015-11-17 01:03:49 +03:00
padding-top: 3px;
padding-bottom: 3px;
2015-10-10 15:34:46 +03:00
vertical-align: middle;
2015-11-17 01:03:49 +03:00
font-size: 14px;
}
span.api-url {
color: #999;
margin-left: 10px;
2015-10-10 15:34:46 +03:00
}
2015-10-30 13:03:13 +03:00
span.path {
font-family: monospace;
font-weight: bold;
2015-11-17 01:03:49 +03:00
color: #00329F;
2015-10-30 13:03:13 +03:00
}
2015-10-30 12:43:51 +03:00
.method-tags {
margin-top: 10px;
color: #666;
font-weight: bold;
}
.method-tags a {
color: #666;
font-weight: bold;
display: inline-block;
padding: 0 5px;
font-style: italic;
}
2015-10-21 14:07:22 +03:00
.content, .samples {
display: block;
box-sizing: border-box;
float: left;
}
2015-10-21 14:46:15 +03:00
.content {
width: 60%;
2015-10-21 17:24:04 +03:00
padding: 0 20px;
2015-10-21 14:46:15 +03:00
}
.samples {
2015-10-21 17:24:04 +03:00
color: white;
2015-10-21 14:46:15 +03:00
width: 40%;
2015-10-25 14:26:38 +03:00
padding: 10px 20px;
2015-10-21 14:46:15 +03:00
}
2015-10-21 14:07:22 +03:00
2015-10-22 20:54:26 +03:00
responses-samples {
display: block;
2015-10-25 14:26:38 +03:00
}
.samples header {
font-size: 20px;
margin: 5px 0;
}
.samples schema-sample {
display: block;
padding: 5px;
background-color: rgb(18, 20, 39);
2015-10-21 17:24:04 +03:00
}
2015-10-21 14:07:22 +03:00
.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 {
color: white;
background-color: #1976D3;
2015-11-17 01:03:49 +03:00
padding: 3px 10px;
text-transform: uppercase;
2015-10-10 15:34:46 +03:00
}
.http-method.delete {
background-color: red;
}
.http-method.post {
2015-11-17 01:03:49 +03:00
background-color: #00329F;
2015-10-10 15:34:46 +03:00
}
.http-method.patch {
background-color: orange;
}
.http-method.put {
background-color: crimson;
}
.http-method.options {
background-color: black;
}
.http-method.head {
background-color: darkkhaki;
}