mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 11:26:37 +03:00
22 lines
313 B
CSS
22 lines
313 B
CSS
method {
|
|
padding-bottom: 100px;
|
|
display: block;
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.methods {
|
|
display: block;
|
|
position: relative;;
|
|
}
|
|
|
|
.methods:before {
|
|
content: "";
|
|
background: rgb(59, 59, 105);
|
|
height: 100%;
|
|
width: 50%;
|
|
top: 0;
|
|
right: 0;
|
|
position: absolute;
|
|
z-index: -1;
|
|
}
|