302 lines
4.5 KiB
SCSS
302 lines
4.5 KiB
SCSS
/*!
|
|
* API Wrapper
|
|
*
|
|
* @class .__slate
|
|
* @selector {::after}
|
|
**/
|
|
|
|
.__slate {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: relative;
|
|
|
|
&::after {
|
|
@include clearfix;
|
|
}
|
|
}
|
|
|
|
.api-header {
|
|
padding: 2rem;
|
|
position: relative;
|
|
|
|
&::after {
|
|
width: 100%; height: 1px;
|
|
bottom: -1px; left: 0;
|
|
|
|
background-color: $lbry-gray-2;
|
|
content: "";
|
|
position: absolute;
|
|
}
|
|
}
|
|
|
|
|
|
/*!
|
|
* API | Table of Contents
|
|
*
|
|
* @class .api-toc
|
|
* @class .api-toc__search
|
|
* @class .api-toc__search-field
|
|
*
|
|
* @class .api-toc__search-clear
|
|
* @state {.active}
|
|
*
|
|
* @class .api-toc__items
|
|
*
|
|
* @class .api-toc__item
|
|
* @state {:hover}
|
|
**/
|
|
|
|
.api-toc {
|
|
width: 200px; height: calc(100vh - 4rem); // navigation is 4rem tall
|
|
bottom: 0; left: 0;
|
|
|
|
background-color: $lbry-white;
|
|
border-right: 1px solid $lbry-gray-1;
|
|
// float: left;
|
|
overflow-x: hidden;
|
|
overflow-y: auto;
|
|
position: fixed;
|
|
z-index: 3;
|
|
}
|
|
|
|
.api-toc__search {
|
|
position: relative;
|
|
}
|
|
|
|
.api-toc__search-field {
|
|
width: 100%;
|
|
padding: 0.25rem calc(2rem + 4px) 0.25rem 0.75rem;
|
|
|
|
border-bottom: 1px solid $lbry-gray-1;
|
|
font-size: 0.8rem;
|
|
line-height: 2rem;
|
|
}
|
|
|
|
.api-toc__search-clear {
|
|
width: 1.25rem; height: 1.25rem;
|
|
top: 0.6rem; right: 0.75rem;
|
|
|
|
background-color: $lbry-black;
|
|
border-radius: 50%;
|
|
color: $lbry-white;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
line-height: 1.15;
|
|
position: absolute;
|
|
text-align: center;
|
|
transition: opacity 0.2s;
|
|
|
|
&:not(.active) {
|
|
opacity: 0;
|
|
visibility: hidden;
|
|
}
|
|
|
|
&.active {
|
|
opacity: 1;
|
|
visibility: visible;
|
|
}
|
|
}
|
|
|
|
.api-toc__items {
|
|
font-size: 0.8rem;
|
|
line-height: 1.33;
|
|
list-style-type: none;
|
|
padding-top: 0.25rem;
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
.api-toc__item {
|
|
&:hover {
|
|
background-color: $lbry-gray-2;
|
|
}
|
|
|
|
a {
|
|
padding: 0.25rem 0.5rem 0.25rem 0.75rem;
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
.api-content {
|
|
width: calc(100% - 200px);
|
|
float: right;
|
|
}
|
|
|
|
.api-documentation {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
|
|
|
|
h1 {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 0.8rem;
|
|
letter-spacing: 0.1rem;
|
|
margin-bottom: 0.25rem;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
p,
|
|
ol,
|
|
ul {
|
|
font-size: 1rem;
|
|
line-height: 1.5;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
pre {
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
|
|
border: 1px solid rgba($lbry-white, 0.1);
|
|
border-radius: 0.3rem;
|
|
border-spacing: 0;
|
|
font-size: 0.8rem;
|
|
line-height: 1.33;
|
|
}
|
|
|
|
thead {
|
|
display: none;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: 0.5rem 1rem 0.5rem 0.5rem;
|
|
}
|
|
|
|
th {
|
|
border-bottom: 1px solid rgba($lbry-white, 0.1);
|
|
}
|
|
|
|
tr:nth-child(even) {
|
|
background-color: rgba($lbry-white, 0.1);
|
|
}
|
|
}
|
|
|
|
.api-content__body {
|
|
padding: 2rem;
|
|
border-bottom: 1px solid $lbry-gray-1;
|
|
|
|
a {
|
|
transition: color 0.2s;
|
|
|
|
&:not(:hover) {
|
|
color: $lbry-teal-3;
|
|
}
|
|
|
|
&:hover {
|
|
color: $lbry-teal-5;
|
|
}
|
|
}
|
|
}
|
|
|
|
.api-content__body-arguments {
|
|
border: 1px solid $lbry-gray-2;
|
|
border-radius: 3px;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.api-content__body-argument {
|
|
&:not(:last-of-type) {
|
|
border-bottom: 1px solid $lbry-gray-2;
|
|
}
|
|
|
|
&:nth-child(even) {
|
|
background-color: rgba($lbry-gray-1, 0.2);
|
|
}
|
|
|
|
.left,
|
|
.right {
|
|
padding: 0.5rem 0.75rem;
|
|
}
|
|
|
|
.left {
|
|
width: 30%;
|
|
|
|
border-right: 1px solid $lbry-gray-2;
|
|
float: left;
|
|
word-wrap: break-word;
|
|
|
|
span {
|
|
color: $lbry-gray-3;
|
|
font-size: 0.8rem;
|
|
|
|
&:not(:first-of-type) {
|
|
margin-left: 0.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.right {
|
|
width: 70%;
|
|
float: right;
|
|
}
|
|
|
|
&::after {
|
|
@include clearfix;
|
|
}
|
|
}
|
|
|
|
.api-content__example,
|
|
.api-content__intro {
|
|
padding: 2rem;
|
|
background-color: rgba($lbry-black, 0.9);
|
|
border-bottom: 1px solid rgba($lbry-white, 0.1);
|
|
color: $lbry-white;
|
|
position: relative;
|
|
|
|
pre {
|
|
background-color: $lbry-black;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
.api-content__items {
|
|
width: 100%;
|
|
padding: 1rem 2rem;
|
|
top: 4rem; right: 0;
|
|
|
|
background-color: $lbry-black;
|
|
color: $lbry-white;
|
|
position: sticky;
|
|
z-index: 10;
|
|
}
|
|
|
|
.api-content__item {
|
|
padding: 0.25rem 0.75rem;
|
|
border-radius: 0.2rem;
|
|
display: inline-block;
|
|
font-size: 0.8rem;
|
|
transition: background-color 0.2s;
|
|
|
|
&:not(:last-of-type) {
|
|
margin-right: 0.5rem;
|
|
}
|
|
|
|
&:not(:hover) {
|
|
background-color: $lbry-gray-5;
|
|
}
|
|
|
|
&.active,
|
|
&:hover {
|
|
background-color: $lbry-teal-4;
|
|
}
|
|
}
|
|
|
|
pre {
|
|
&[data-api-example-type] {
|
|
&:not(.active) {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|