redoc/lib/components/Method/method.scss

131 lines
1.8 KiB
SCSS
Raw Normal View History

@import '../../common/styles/variables';
2015-11-29 20:24:46 +03:00
@import '../../common/styles/share-link';
2015-10-21 12:20:14 +03:00
responses-list, params-list {
display: block;
}
.method-header {
2015-10-29 00:37:16 +03:00
font-size: 25px;
2015-10-10 15:34:46 +03:00
font-weight: 200;
color: $method-headers-color;
2015-10-10 15:34:46 +03:00
}
.method-endpoint {
2015-10-10 15:34:46 +03:00
margin: 0;
font-weight: 200;
2015-11-17 01:03:49 +03:00
font-size: 0;
2015-10-10 15:34:46 +03:00
}
.method-endpoint > 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;
}
.api-url {
2015-11-17 01:03:49 +03:00
color: #999;
margin-left: 10px;
2015-10-10 15:34:46 +03:00
}
.path {
2015-10-30 13:03:13 +03:00
font-family: monospace;
font-weight: bold;
color: $headers-color;
2015-10-30 13:03:13 +03:00
}
2015-10-30 12:43:51 +03:00
.method-tags {
2015-11-17 02:43:05 +03:00
margin-top: 20px;
2015-10-30 12:43:51 +03:00
}
.method-tags a {
2015-11-17 02:43:05 +03:00
font-size: 16px;
color: #999;
2015-10-30 12:43:51 +03:00
display: inline-block;
2015-11-17 02:43:05 +03:00
padding: 0 0.5em;
text-decoration: none;
}
.method-tags a:before {
2015-11-17 02:43:05 +03:00
content: '#';
margin-right: -0.4em;
}
.method-tags a:first-of-type {
padding: 0;
2015-10-30 12:43:51 +03:00
}
.method-content, .method-samples {
2015-10-21 14:07:22 +03:00
display: block;
box-sizing: border-box;
float: left;
}
.method-content {
width: 100% - $samples-panel-width;
2015-10-21 17:24:04 +03:00
padding: 0 20px;
2015-10-21 14:46:15 +03:00
}
.method-samples {
color: $sample-panel-color;
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
}
.method-samples header {
font-size: 16px;
2015-10-25 14:26:38 +03:00
margin: 5px 0;
color: $sample-panel-headers-color;
text-transform: uppercase;
2015-10-25 14:26:38 +03:00
}
.method-samples schema-sample {
2015-10-25 14:26:38 +03:00
display: block;
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;
}