redoc/lib/components/MethodsList/methods-list.css
2015-10-28 23:37:16 +02:00

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;
}