Files
website/docs/api-reference/1_5/stylesheet.css
T

283 lines
5.3 KiB
CSS

/* Github CSS overrides */
ul, li {
margin-left: 10px;
padding-left: 0
}
/* Slate CSS */
.body-content aside {
padding-top: 1em;
padding-bottom: 1em;
padding-left: 1em;
text-shadow: 0 1px 0 #c6dde9;
margin-top: 1.5em;
margin-bottom: 1.5em;
background: #8fbcd4;
line-height: 1.6;
border-radius: 10px;
}
.body-content aside.warning {
background-color: #c97a7e;
text-shadow: 0 1px 0 #dfb0b3;
}
.body-content aside.success {
background-color: #6ac174;
text-shadow: 0 1px 0 #a0d7a6;
}
.body-content aside:before {
vertical-align: middle;
padding-right: 0.5em;
font-size: 14px;
}
.body-content aside.warning:before,.body-content aside.notice:before,.body-content aside.success:before {
font-family: 'FontAwesome';
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
}
.body-content aside.warning:before {
content: "\f071";
}
.body-content aside.notice:before {
content: "\f05a";
}
.body-content hr {
margin: 2em 0;
border-top: 2px solid #576575;
border-bottom: 2px solid #eaf2f6;
}
.body-content table {
margin-bottom: 1em;
overflow: auto;
}
.body-content table th,.body-content table td {
text-align: left;
vertical-align: top;
line-height: 1.6;
}
.body-content table th {
padding: 5px 10px;
border-bottom: 1px solid #ccc;
vertical-align: bottom;
}
.body-content table td {
padding: 10px;
}
.body-content table tr:last-child {
border-bottom: 1px solid #ccc;
}
.body-content table tr:nth-child(odd)>td {
background-color: #f9fbfc;
}
.body-content table tr:nth-child(even)>td {
background-color: #f3f7fa;
}
.body-content dt {
font-weight: bold;
}
.body-content dd {
margin-left: 15px;
}
.body-content p,.body-content li,.body-content dt,.body-content dd {
line-height: 1.6;
margin-top: 0
}
/* Brodoc CSS */
/* Kubernetes colors */
/*
kubernetes blue - rgb(50, 109, 230)
dark blue - rgb(51, 113, 227)
dark grey - rgb(48, 48, 48)
light grey - rgb(161, 160, 158)
*/
body > #wrapper {
display: block;
padding-bottom: 500px;
}
#sidebar-wrapper {
display: block;
height: 100%; /* 100% Full-height */
width: 20%; /* 0 width - change this with JavaScript */
position: fixed; /* Stay in place */
z-index: 1; /* Stay on top */
top: 0;
left: 0;
background-color: whitesmoke;
border-right: 2px solid slategrey;
overflow-x: hidden; /* Disable horizontal scroll */
padding-top: 60px; /* Place content 60px from the top */
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
#sidebar-wrapper a {
text-decoration: none;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
padding: 0 5px;
}
#sidebar-wrapper ul {
list-style: none;
}
#sidebar-wrapper a.selected {
font-style: bold;
color: whitesmoke;
border: 1px solid rgb(161, 160, 158);
background-color: rgb(51, 113, 227);
border-radius: 5px;
}
#sidebar-wrapper .strong-nav {
font-family: monospace;
font-weight: bold;
}
#sidebar-wrapper .nav-level-1.strong-nav {
margin-top: 25px;
}
#sidebar-wrapper .copyright {
padding-left: 10px;
padding-top: 50px;
padding-bottom: 50px;
text-decoration: underline;
}
#page-content-wrapper {
margin-left: 20%;
padding-top: 60px;
/*width: 65%;*/
}
body {
/*height: 100%;*/
background: linear-gradient(90deg, #FFFFFF 63%, rgb(48, 48, 48) 37%);
}
.body-content h1, .body-content h2 {
width: 45%;
clear: both;
border-bottom: 3px solid lightslategrey;
/*border-image: linear-gradient(90deg, dimgrey 65%, #FFFFFF 35%);*/
}
.body-content > h3, .body-content > h4, .body-content > h5, .body-content > h6, .body-content > p, .body-content > aside, .body-content > ul > li, .body-content > ul > li {
width: 45%;
padding-top: 20px;
}
.body-content table {
/*table-layout: fixed;*/
width: 45%;
}
.body-content table tr td {
overflow-wrap: break-word;
word-wrap: break-word;
/*word-break: break-word;*/
}
.body-content table tr td a {
word-break: break-word;
}
.body-content p code {
text-overflow: ellipsis;
display: inline-block;
font-size: smaller;
word-break: break-word;
}
.body-content blockquote {
border-left: 0;
border-radius: 5px;
}
.body-content pre.code-block {
margin-bottom: 80px;
}
.body-content blockquote p, .body-content pre {
color: black;
font-size: 13px;
}
.body-content blockquote.code-block {
background: lightsteelblue;
}
.body-content pre.code-block code {
overflow: auto;
overflow-wrap: normal;
word-wrap: normal;
white-space: pre;
}
.code-block {
display: none;
width: 45%;
float: right;
clear: right;
}
.code-block.active {
display: initial;
}
#code-tabs-wrapper {
width: 35%;
height: 60px;
position: fixed;
top: 0;
right: 0;
}
#code-tabs-wrapper .code-tab-list {
float: right;
margin-top: 0;
padding: 0 10px;
}
#code-tabs-wrapper .code-tab {
color: white;
display: inline-block;
padding: 0 30px;
background: rgb(48, 48, 48);
border: 1px solid rgb(161, 160, 158);
border-radius: 5px;
}
#code-tabs-wrapper .tab-selected {
background: rgb(51, 113, 227);
font-style: bold;
border-radius: 5px;
}
.side-nav a {
color: black;
}