mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 11:26:37 +03:00
35 lines
509 B
CSS
35 lines
509 B
CSS
method {
|
|
padding-bottom: 100px;
|
|
display: block;
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.tag-info {
|
|
padding: 0 20px;
|
|
width: 60%;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.tag-info h1 {
|
|
color: rgb(102, 102, 102);
|
|
text-transform: capitalize;
|
|
padding-left: 10px;
|
|
border-left: 5px solid green;
|
|
}
|
|
|
|
.methods {
|
|
display: block;
|
|
position: relative;;
|
|
}
|
|
|
|
.methods:before {
|
|
content: "";
|
|
background: #2C2E3E;
|
|
height: 100%;
|
|
width: 40%;
|
|
top: 0;
|
|
right: 0;
|
|
position: absolute;
|
|
z-index: -1;
|
|
}
|