Move documentation
This commit is contained in:
219
documentation/frontend/styles/bootstrap-card.css
vendored
Normal file
219
documentation/frontend/styles/bootstrap-card.css
vendored
Normal file
@@ -0,0 +1,219 @@
|
||||
.card {
|
||||
position: relative;
|
||||
display: block;
|
||||
margin-bottom: 20px;
|
||||
background-color: #fff;
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.card-block {
|
||||
padding: 15px;
|
||||
}
|
||||
.card-block:before, .card-block:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
.card-block:after {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
.card-title {
|
||||
margin: 5px;
|
||||
margin-bottom: 2px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.card-subtitle {
|
||||
margin-top: -10px;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.card-text:last-child {
|
||||
margin-bottom: 0;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.card-link:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
.card-link + .card-link {
|
||||
margin-left: 15px;
|
||||
}
|
||||
|
||||
.card > .list-group:first-child .list-group-item:first-child {
|
||||
border-top-right-radius: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
}
|
||||
.card > .list-group:last-child .list-group-item:last-child {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
padding: 10px 15px;
|
||||
background-color: #f5f5f5;
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
.card-header:before, .card-header:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
.card-header:after {
|
||||
clear: both;
|
||||
}
|
||||
.card-header:first-child {
|
||||
border-radius: 4px 4px 0 0;
|
||||
}
|
||||
|
||||
.card-footer {
|
||||
padding: 10px 15px;
|
||||
background-color: #f5f5f5;
|
||||
border-top: 1px solid #ddd;
|
||||
}
|
||||
.card-footer:before, .card-footer:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
.card-footer:after {
|
||||
clear: both;
|
||||
}
|
||||
.card-footer:last-child {
|
||||
border-radius: 0 0 4px 4px;
|
||||
}
|
||||
|
||||
.card-header-tabs {
|
||||
margin-right: -5px;
|
||||
margin-bottom: -10px;
|
||||
margin-left: -5px;
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.card-header-pills {
|
||||
margin-right: -5px;
|
||||
margin-left: -5px;
|
||||
}
|
||||
|
||||
.card-primary {
|
||||
background-color: #337ab7;
|
||||
border-color: #337ab7;
|
||||
}
|
||||
.card-primary .card-header,
|
||||
.card-primary .card-footer {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.card-success {
|
||||
background-color: #5cb85c;
|
||||
border-color: #5cb85c;
|
||||
}
|
||||
.card-success .card-header,
|
||||
.card-success .card-footer {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.card-info {
|
||||
background-color: #5bc0de;
|
||||
border-color: #5bc0de;
|
||||
}
|
||||
.card-info .card-header,
|
||||
.card-info .card-footer {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.card-warning {
|
||||
background-color: #f0ad4e;
|
||||
border-color: #f0ad4e;
|
||||
}
|
||||
.card-warning .card-header,
|
||||
.card-warning .card-footer {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.card-danger {
|
||||
background-color: #d9534f;
|
||||
border-color: #d9534f;
|
||||
}
|
||||
.card-danger .card-header,
|
||||
.card-danger .card-footer {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.card-outline-primary {
|
||||
background-color: transparent;
|
||||
border-color: #337ab7;
|
||||
}
|
||||
|
||||
.card-outline-secondary {
|
||||
background-color: transparent;
|
||||
border-color: #ccc;
|
||||
}
|
||||
|
||||
.card-outline-info {
|
||||
background-color: transparent;
|
||||
border-color: #5bc0de;
|
||||
}
|
||||
|
||||
.card-outline-success {
|
||||
background-color: transparent;
|
||||
border-color: #5cb85c;
|
||||
}
|
||||
|
||||
.card-outline-warning {
|
||||
background-color: transparent;
|
||||
border-color: #f0ad4e;
|
||||
}
|
||||
|
||||
.card-outline-danger {
|
||||
background-color: transparent;
|
||||
border-color: #d9534f;
|
||||
}
|
||||
|
||||
.card-inverse .card-header,
|
||||
.card-inverse .card-footer {
|
||||
border-color: rgba(255, 255, 255, 0.2);
|
||||
}
|
||||
.card-inverse .card-header,
|
||||
.card-inverse .card-footer,
|
||||
.card-inverse .card-title,
|
||||
.card-inverse .card-blockquote {
|
||||
color: #fff;
|
||||
}
|
||||
.card-inverse .card-link,
|
||||
.card-inverse .card-text,
|
||||
.card-inverse .card-subtitle,
|
||||
.card-inverse .card-blockquote .blockquote-footer {
|
||||
color: rgba(255, 255, 255, 0.65);
|
||||
}
|
||||
.card-inverse .card-link:hover, .card-inverse .card-link:focus {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.card-blockquote {
|
||||
padding: 0;
|
||||
margin-bottom: 0;
|
||||
border-left: 0;
|
||||
}
|
||||
|
||||
.card-img {
|
||||
border-radius: .25em;
|
||||
}
|
||||
|
||||
.card-img-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.card-img-top {
|
||||
border-top-right-radius: 4px;
|
||||
border-top-left-radius: 4px;
|
||||
}
|
||||
|
||||
.card-img-bottom {
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
}
|
6
documentation/frontend/styles/bootstrap.min.css
vendored
Normal file
6
documentation/frontend/styles/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
615
documentation/frontend/styles/compodoc.css
Normal file
615
documentation/frontend/styles/compodoc.css
Normal file
@@ -0,0 +1,615 @@
|
||||
body {
|
||||
position: absolute;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
font-family: 'Roboto', sans-serif;
|
||||
}
|
||||
|
||||
/* roboto-300 - latin */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 300;
|
||||
src: url('../fonts/roboto-v15-latin-300.eot'); /* IE9 Compat Modes */
|
||||
src: local('Roboto Light'), local('Roboto-Light'),
|
||||
url('../fonts/roboto-v15-latin-300.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
||||
url('../fonts/roboto-v15-latin-300.woff2') format('woff2'), /* Super Modern Browsers */
|
||||
url('../fonts/roboto-v15-latin-300.woff') format('woff'), /* Modern Browsers */
|
||||
url('../fonts/roboto-v15-latin-300.ttf') format('truetype'), /* Safari, Android, iOS */
|
||||
url('../fonts/roboto-v15-latin-300.svg#Roboto') format('svg'); /* Legacy iOS */
|
||||
}
|
||||
/* roboto-regular - latin */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
src: url('../fonts/roboto-v15-latin-regular.eot'); /* IE9 Compat Modes */
|
||||
src: local('Roboto'), local('Roboto-Regular'),
|
||||
url('../fonts/roboto-v15-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
||||
url('../fonts/roboto-v15-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
|
||||
url('../fonts/roboto-v15-latin-regular.woff') format('woff'), /* Modern Browsers */
|
||||
url('../fonts/roboto-v15-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
|
||||
url('../fonts/roboto-v15-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
|
||||
}
|
||||
/* roboto-700 - latin */
|
||||
@font-face {
|
||||
font-family: 'Roboto';
|
||||
font-style: normal;
|
||||
font-weight: 700;
|
||||
src: url('../fonts/roboto-v15-latin-700.eot'); /* IE9 Compat Modes */
|
||||
src: local('Roboto Bold'), local('Roboto-Bold'),
|
||||
url('../fonts/roboto-v15-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
|
||||
url('../fonts/roboto-v15-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
|
||||
url('../fonts/roboto-v15-latin-700.woff') format('woff'), /* Modern Browsers */
|
||||
url('../fonts/roboto-v15-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
|
||||
url('../fonts/roboto-v15-latin-700.svg#Roboto') format('svg'); /* Legacy iOS */
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 26px;
|
||||
}
|
||||
h2 {
|
||||
font-size: 22px;
|
||||
}
|
||||
h3 {
|
||||
font-size: 20px;
|
||||
}
|
||||
h4, h5 {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
/**
|
||||
* Mobile navbar
|
||||
*/
|
||||
|
||||
.navbar {
|
||||
min-height: 50px;
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
height: 50px;
|
||||
font-size: 14px;
|
||||
line-height: 20px;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.navbar-static-top {
|
||||
margin-bottom: 0;
|
||||
height: 50px;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Main container
|
||||
*/
|
||||
|
||||
.container-fluid {
|
||||
overflow-y: hidden;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.container-fluid.main {
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.container-fluid.overview {
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.container-fluid.modules, .container-fluid.components, .container-fluid.directives, .container-fluid.classes, .container-fluid.injectables, .container-fluid.pipes, .content.routes table {
|
||||
margin-top: 25px;
|
||||
}
|
||||
|
||||
.container-fluid.module {
|
||||
padding: 0;
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.container-fluid.module h3 a {
|
||||
margin-left: 10px;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.row.main {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Copyright
|
||||
*/
|
||||
|
||||
.copyright {
|
||||
margin: 0;
|
||||
padding: 15px;
|
||||
text-align: center;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
display: -webkit-flex;
|
||||
-webkit-flex-direction: column;
|
||||
align-items: center;
|
||||
-webkit-align-items: center;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.copyright img {
|
||||
width: 80px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.copyright a {
|
||||
color: #009dff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Content
|
||||
*/
|
||||
|
||||
.content {
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
width: calc(100% - 300px);
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 300px;
|
||||
padding: 15px 30px;
|
||||
}
|
||||
|
||||
.content>h1:first-of-type {
|
||||
margin-top: 15px
|
||||
}
|
||||
|
||||
.content>h3:first-of-type {
|
||||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.content.readme h1:first-of-type {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.content table {
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Icons
|
||||
*/
|
||||
|
||||
.glyphicon, .fa {
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.fa-code-fork {
|
||||
margin-right: 14px;
|
||||
}
|
||||
|
||||
.fa-long-arrow-down {
|
||||
margin-right: 16px;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Menu
|
||||
*/
|
||||
|
||||
#book-search-input {
|
||||
padding: 6px;
|
||||
background: 0 0;
|
||||
transition: top .5s ease;
|
||||
background: #fff;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, .07);
|
||||
border-top: 1px solid rgba(0, 0, 0, .07);
|
||||
margin-bottom: 5px;
|
||||
margin-top: -1px
|
||||
}
|
||||
|
||||
#book-search-input input, #book-search-input input:focus, #book-search-input input:hover {
|
||||
width: 100%;
|
||||
background: 0 0;
|
||||
border: 1px solid transparent;
|
||||
box-shadow: none;
|
||||
outline: 0;
|
||||
line-height: 22px;
|
||||
padding: 7px 7px;
|
||||
color: inherit
|
||||
}
|
||||
|
||||
.panel-body {
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.panel-group .panel-heading+.panel-collapse>.list-group, .panel-group .panel-heading+.panel-collapse>.panel-body {
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
.panel-body table tr td {
|
||||
padding-left: 15px
|
||||
}
|
||||
|
||||
.panel-body .table {
|
||||
margin-bottom: 0px;
|
||||
}
|
||||
|
||||
.panel-group .panel:first-child {
|
||||
border-top: 0;
|
||||
}
|
||||
|
||||
.menu {
|
||||
background: #fafafa;
|
||||
border-right: 1px solid #e7e7e7;
|
||||
height: 100%;
|
||||
padding: 0;
|
||||
width: 300px;
|
||||
overflow-y: auto;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
.menu ul.list {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.menu ul.list li a {
|
||||
display: block;
|
||||
padding: 10px 15px;
|
||||
border-bottom: none;
|
||||
color: #364149;
|
||||
background: 0 0;
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
position: relative
|
||||
}
|
||||
|
||||
.menu ul.list li a.active {
|
||||
color: #008cff;
|
||||
}
|
||||
|
||||
.menu ul.list li.divider {
|
||||
height: 1px;
|
||||
margin: 7px 0;
|
||||
overflow: hidden;
|
||||
background: rgba(0, 0, 0, .07)
|
||||
}
|
||||
|
||||
.menu ul.list li.chapter ul.links {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.menu ul.list li.chapter .simple {
|
||||
padding: 10px 15px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.menu .panel-group {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.menu .panel-default {
|
||||
border-right: none;
|
||||
border-left: none;
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.menu .panel-group .panel-heading+.panel-collapse>.panel-body {
|
||||
border-top: none;
|
||||
overflow-y: auto;
|
||||
max-height: 350px;
|
||||
}
|
||||
|
||||
.menu .panel-default:last-of-type {
|
||||
border-bottom: 1px solid #ddd;
|
||||
}
|
||||
|
||||
.panel-group .panel+.panel {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.panel-group .panel {
|
||||
z-index: 2;
|
||||
position: relative;
|
||||
border-radius: 0;
|
||||
box-shadow: none;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
}
|
||||
|
||||
.menu a {
|
||||
color: #3c3c3c;
|
||||
}
|
||||
|
||||
.xs-menu ul.list li:nth-child(2){
|
||||
margin: 0;
|
||||
background: none;
|
||||
}
|
||||
.menu ul.list li:nth-child(2){
|
||||
margin: 0;
|
||||
background: none;
|
||||
}
|
||||
.menu .title {
|
||||
padding: 8px 0;
|
||||
}
|
||||
|
||||
.menu-toggler {
|
||||
cursor: pointer;
|
||||
padding: 5px 10px;
|
||||
font-size: 16px;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
top: 7px;
|
||||
}
|
||||
|
||||
.overview .card-title .fa {
|
||||
font-size: 50px;
|
||||
}
|
||||
|
||||
.breadcrumb {
|
||||
background: none;
|
||||
padding-left: 0;
|
||||
margin-bottom: 10px;
|
||||
font-size: 24px;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.breadcrumb a {
|
||||
text-decoration: underline;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.comment {
|
||||
margin: 15px 0;
|
||||
}
|
||||
|
||||
.io-description {
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.io-file {
|
||||
margin: 20px 0;
|
||||
}
|
||||
|
||||
.navbar .btn-menu {
|
||||
position: absolute;
|
||||
right: 0;
|
||||
margin: 10px;
|
||||
}
|
||||
|
||||
.xs-menu {
|
||||
height: calc(100% - 50px);
|
||||
display: none;
|
||||
width: 100%;
|
||||
overflow-y: scroll;
|
||||
z-index: 1;
|
||||
top: 50px;
|
||||
position: absolute;
|
||||
}
|
||||
|
||||
.xs-menu .copyright {
|
||||
margin-top: 20px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.tab-source-code {
|
||||
padding: 10px 0;
|
||||
}
|
||||
|
||||
pre {
|
||||
padding: 12px 12px;
|
||||
border: none;
|
||||
background: #23241f;
|
||||
}
|
||||
code {
|
||||
background: none;
|
||||
padding: 2px 0;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
.container-fluid {
|
||||
margin-top: 50px;
|
||||
}
|
||||
.container-fluid.main {
|
||||
height: calc(100% - 50px);
|
||||
}
|
||||
.content {
|
||||
width: 100%;
|
||||
left: 0;
|
||||
position: relative;
|
||||
}
|
||||
.menu ul.list li.title {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Search
|
||||
*/
|
||||
|
||||
.search-results {
|
||||
display: none;
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 20px 15px 40px 15px
|
||||
}
|
||||
.search-results .no-results {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.with-search .search-results {
|
||||
display: block;
|
||||
}
|
||||
.with-search .content-data {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.with-search .xs-menu {
|
||||
height: 51px;
|
||||
}
|
||||
.with-search .xs-menu nav {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.search-results.no-results .has-results {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.search-results.no-results .no-results {
|
||||
display: block;
|
||||
}
|
||||
.search-results .search-results-title {
|
||||
text-transform: uppercase;
|
||||
text-align: center;
|
||||
font-weight: 200;
|
||||
margin-bottom: 35px;
|
||||
opacity: .6
|
||||
}
|
||||
.search-results ul.search-results-list {
|
||||
list-style-type: none;
|
||||
padding-left: 0;
|
||||
}
|
||||
.search-results ul.search-results-list li {
|
||||
margin-bottom: 1.5rem;
|
||||
padding-bottom: 0.5rem;
|
||||
}
|
||||
.search-results ul.search-results-list li p em {
|
||||
background-color: rgba(255, 220, 0, 0.4);
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
.hljs-line-numbers {
|
||||
text-align: right;
|
||||
border-right: 1px solid #ccc;
|
||||
color: #999;
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.jsdoc-params {
|
||||
list-style: square;
|
||||
padding-left: 20px;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
.jsdoc-params li {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
i {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.coverage a {
|
||||
color: #333;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.coverage tr.low {
|
||||
background: rgba(216, 96, 75, 0.75);
|
||||
}
|
||||
.coverage tr.medium {
|
||||
background: rgba(218, 178, 38, 0.75);
|
||||
}
|
||||
.coverage tr.good {
|
||||
background: rgba(143, 189, 8, 0.75);
|
||||
}
|
||||
.coverage tr.very-good {
|
||||
background: rgba(77, 199, 31, 0.75);
|
||||
}
|
||||
|
||||
.coverage-header {
|
||||
background: #fafafa;
|
||||
}
|
||||
thead.coverage-header >tr>td, thead.coverage-header>tr>th {
|
||||
border-bottom-width: 0;
|
||||
}
|
||||
.coverage-count {
|
||||
color: grey;
|
||||
font-size: 12px;
|
||||
margin-left: 10px;
|
||||
display: inline-block;
|
||||
width: 50px;
|
||||
}
|
||||
.coverage-badge {
|
||||
background: #5d5d5d;
|
||||
border-radius: 4px;
|
||||
display: inline-block;
|
||||
color: white;
|
||||
padding: 4px;
|
||||
padding-right: 0;
|
||||
padding-left: 8px;
|
||||
}
|
||||
.coverage-badge .count{
|
||||
padding: 6px;
|
||||
margin-left: 5px;
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
}
|
||||
.coverage-badge .count.low {
|
||||
background: #d8624c;
|
||||
}
|
||||
.coverage-badge .count.medium {
|
||||
background: #dab226;
|
||||
}
|
||||
.coverage-badge .count.good {
|
||||
background: #8fbd08;
|
||||
}
|
||||
.coverage-badge .count.very-good {
|
||||
background: #4dc71f;
|
||||
}
|
||||
|
||||
.content ul {
|
||||
list-style: disc;
|
||||
padding-left: 2em;
|
||||
margin-top: 0;
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
.content ul ul {
|
||||
list-style-type: circle;
|
||||
}
|
||||
.compodoc-table {
|
||||
width: inherit;
|
||||
}
|
||||
.compodoc-table thead {
|
||||
font-weight: bold;
|
||||
}
|
||||
.modifier {
|
||||
background: #9a9a9a;
|
||||
padding: 1px 5px;
|
||||
color: white;
|
||||
border-radius: 4px;
|
||||
}
|
||||
.modifier-icon {
|
||||
color: #c7254e;
|
||||
}
|
||||
.modifier-icon.method {
|
||||
color: white;
|
||||
background: #c7254e;
|
||||
padding: 4px;
|
||||
border-radius: 8px;
|
||||
font-size: 10px;
|
||||
margin-right: 2px;
|
||||
}
|
||||
.modifier-icon.method.square {
|
||||
border-radius: 4px;
|
||||
}
|
||||
.modifier-icon.method.export {
|
||||
display: none;
|
||||
}
|
||||
.modifier-icon.method .fa-circle, .modifier-icon.method .fa-square {
|
||||
display: none;
|
||||
}
|
||||
.modifier-icon.method .fa-lock {
|
||||
margin-right: 0;
|
||||
}
|
117
documentation/frontend/styles/dark.css
Normal file
117
documentation/frontend/styles/dark.css
Normal file
@@ -0,0 +1,117 @@
|
||||
body.dark {
|
||||
background: #212121;
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark code {
|
||||
color: #e09393;
|
||||
}
|
||||
|
||||
.dark a,
|
||||
.dark .menu ul.list li a.active {
|
||||
color: #7fc9ff;
|
||||
}
|
||||
|
||||
.dark .menu {
|
||||
background: #212121;
|
||||
border-right: 1px solid #444;
|
||||
}
|
||||
|
||||
.dark .menu ul.list li a {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark .menu ul.list li.divider {
|
||||
background: #444;
|
||||
}
|
||||
|
||||
.dark .xs-menu ul.list li:nth-child(2) {
|
||||
margin: 0;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.dark .menu ul.list li:nth-child(2) {
|
||||
margin: 0;
|
||||
background: none;
|
||||
}
|
||||
|
||||
.dark #book-search-input {
|
||||
background: #212121;
|
||||
border-top: 1px solid #444;
|
||||
border-bottom: 1px solid #444;
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark .table.metadata > tbody > tr:hover {
|
||||
color: #555;
|
||||
}
|
||||
|
||||
.dark .table-bordered {
|
||||
border: 1px solid #444;
|
||||
}
|
||||
|
||||
.dark .table-bordered > tbody > tr > td,
|
||||
.dark .table-bordered > tbody > tr > th,
|
||||
.dark .table-bordered > tfoot > tr > td,
|
||||
.dark .table-bordered > tfoot > tr > th,
|
||||
.dark .table-bordered > thead > tr > td,
|
||||
.dark .table-bordered > thead > tr > th {
|
||||
border: 1px solid #444;
|
||||
}
|
||||
|
||||
.dark .coverage a,
|
||||
.dark .coverage-count {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark .coverage-header {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.dark .routes svg text,
|
||||
.dark .routes svg a {
|
||||
fill: white;
|
||||
}
|
||||
.dark .routes svg rect {
|
||||
fill: #212121 !important;
|
||||
}
|
||||
|
||||
.dark .navbar-default,
|
||||
.dark .btn-default {
|
||||
background-color: black;
|
||||
border-color: #444;
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark .navbar-default .navbar-brand {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark .overview .card,
|
||||
.dark .modules .card {
|
||||
background: #171717;
|
||||
color: #fafafa;
|
||||
border: 1px solid #444;
|
||||
}
|
||||
.dark .overview .card a {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark .modules .card-header {
|
||||
background: none;
|
||||
border-bottom: 1px solid #444;
|
||||
}
|
||||
|
||||
.dark .module .list-group-item {
|
||||
background: none;
|
||||
border: 1px solid #444;
|
||||
}
|
||||
|
||||
.dark .container-fluid.module h3 a {
|
||||
color: #337ab7;
|
||||
}
|
||||
|
||||
.dark table.params thead {
|
||||
background: #484848;
|
||||
color: #fafafa;
|
||||
}
|
4
documentation/frontend/styles/font-awesome.min.css
vendored
Normal file
4
documentation/frontend/styles/font-awesome.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
11
documentation/frontend/styles/ionicons.min.css
vendored
Normal file
11
documentation/frontend/styles/ionicons.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
170
documentation/frontend/styles/laravel.css
Normal file
170
documentation/frontend/styles/laravel.css
Normal file
@@ -0,0 +1,170 @@
|
||||
.navbar-default .navbar-brand {
|
||||
color: #f4645f;
|
||||
text-decoration: none;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.menu ul.list li a[data-type="chapter-link"], .menu ul.list li.chapter .simple {
|
||||
color: #525252;
|
||||
border-bottom: 1px dashed rgba(0,0,0,.1);
|
||||
}
|
||||
|
||||
.content h1, .content h2, .content h3, .content h4, .content h5 {
|
||||
color: #292e31;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.content {
|
||||
color: #4c555a;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #f4645f;
|
||||
text-decoration: underline;
|
||||
}
|
||||
a:hover {
|
||||
color: #f1362f;
|
||||
}
|
||||
|
||||
.menu ul.list li:nth-child(2) {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.menu ul.list li.title a {
|
||||
color: #f4645f;
|
||||
text-decoration: none;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.menu ul.list li a {
|
||||
color: #f4645f;
|
||||
text-decoration: none;
|
||||
}
|
||||
.menu ul.list li a.active {
|
||||
color: #f4645f;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
code {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
padding: 0 5px;
|
||||
background: #f0f2f1;
|
||||
border: 1px solid #f0f4f7;
|
||||
border-radius: 3px;
|
||||
color: #b93d6a;
|
||||
font-size: 13px;
|
||||
line-height: 20px;
|
||||
box-shadow: 0 1px 1px rgba(0,0,0,.125);
|
||||
}
|
||||
|
||||
pre {
|
||||
margin: 0;
|
||||
padding: 12px 12px;
|
||||
background: rgba(238,238,238,.35);
|
||||
border-radius: 3px;
|
||||
font-size: 13px;
|
||||
line-height: 1.5em;
|
||||
font-weight: 500;
|
||||
box-shadow: 0 1px 1px rgba(0,0,0,.125);
|
||||
}
|
||||
|
||||
pre code.hljs {
|
||||
border: none;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/*
|
||||
Atom One Light by Daniel Gamage
|
||||
Original One Light Syntax theme from https://github.com/atom/one-light-syntax
|
||||
base: #fafafa
|
||||
mono-1: #383a42
|
||||
mono-2: #686b77
|
||||
mono-3: #a0a1a7
|
||||
hue-1: #0184bb
|
||||
hue-2: #4078f2
|
||||
hue-3: #a626a4
|
||||
hue-4: #50a14f
|
||||
hue-5: #e45649
|
||||
hue-5-2: #c91243
|
||||
hue-6: #986801
|
||||
hue-6-2: #c18401
|
||||
*/
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
padding: 0.5em;
|
||||
color: #383a42;
|
||||
background: #fafafa;
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-quote {
|
||||
color: #a0a1a7;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-doctag,
|
||||
.hljs-keyword,
|
||||
.hljs-formula {
|
||||
color: #a626a4;
|
||||
}
|
||||
|
||||
.hljs-section,
|
||||
.hljs-name,
|
||||
.hljs-selector-tag,
|
||||
.hljs-deletion,
|
||||
.hljs-subst {
|
||||
color: #e45649;
|
||||
}
|
||||
|
||||
.hljs-literal {
|
||||
color: #0184bb;
|
||||
}
|
||||
|
||||
.hljs-string,
|
||||
.hljs-regexp,
|
||||
.hljs-addition,
|
||||
.hljs-attribute,
|
||||
.hljs-meta-string {
|
||||
color: #50a14f;
|
||||
}
|
||||
|
||||
.hljs-built_in,
|
||||
.hljs-class .hljs-title {
|
||||
color: #c18401;
|
||||
}
|
||||
|
||||
.hljs-attr,
|
||||
.hljs-variable,
|
||||
.hljs-template-variable,
|
||||
.hljs-type,
|
||||
.hljs-selector-class,
|
||||
.hljs-selector-attr,
|
||||
.hljs-selector-pseudo,
|
||||
.hljs-number {
|
||||
color: #986801;
|
||||
}
|
||||
|
||||
.hljs-symbol,
|
||||
.hljs-bullet,
|
||||
.hljs-link,
|
||||
.hljs-meta,
|
||||
.hljs-selector-id,
|
||||
.hljs-title {
|
||||
color: #4078f2;
|
||||
}
|
||||
|
||||
.hljs-emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.hljs-link {
|
||||
text-decoration: underline;
|
||||
}
|
131
documentation/frontend/styles/material.css
Normal file
131
documentation/frontend/styles/material.css
Normal file
@@ -0,0 +1,131 @@
|
||||
.menu {
|
||||
background: none;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/** LINK **/
|
||||
|
||||
.menu ul.list li a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.menu ul.list li a:hover,
|
||||
.menu ul.list li.chapter .simple:hover {
|
||||
background-color: #f8f9fa;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#book-search-input {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.menu ul.list li.divider {
|
||||
margin-top: 0;
|
||||
background: #e9ecef;
|
||||
}
|
||||
|
||||
.menu .title:hover {
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
/** CARD **/
|
||||
|
||||
.card {
|
||||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2),
|
||||
0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
||||
border-radius: 0.125rem;
|
||||
border: 0;
|
||||
margin-top: 1px;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
background: none;
|
||||
}
|
||||
|
||||
/** BUTTON **/
|
||||
|
||||
.btn {
|
||||
border-radius: 0.125rem;
|
||||
}
|
||||
|
||||
/** NAV BAR **/
|
||||
|
||||
.nav {
|
||||
border: 0;
|
||||
}
|
||||
.nav-tabs > li > a {
|
||||
border: 0;
|
||||
border-bottom: 0.214rem solid transparent;
|
||||
color: rgba(0, 0, 0, 0.54);
|
||||
margin-right: 0;
|
||||
}
|
||||
.nav-tabs > li.active > a,
|
||||
.nav-tabs > li.active > a:focus,
|
||||
.nav-tabs > li.active > a:hover {
|
||||
color: rgba(0, 0, 0, 0.87);
|
||||
border-top: 0;
|
||||
border-left: 0;
|
||||
border-right: 0;
|
||||
border-bottom: 0.214rem solid transparent;
|
||||
border-color: #008cff;
|
||||
font-weight: bold;
|
||||
}
|
||||
.nav > li > a:focus,
|
||||
.nav > li > a:hover {
|
||||
background: none;
|
||||
}
|
||||
|
||||
/** LIST **/
|
||||
|
||||
.list-group-item:first-child {
|
||||
border-top-left-radius: 0.125rem;
|
||||
border-top-right-radius: 0.125rem;
|
||||
}
|
||||
.list-group-item:last-child {
|
||||
border-bottom-left-radius: 0.125rem;
|
||||
border-bottom-right-radius: 0.125rem;
|
||||
}
|
||||
|
||||
/** MISC **/
|
||||
|
||||
.modifier {
|
||||
border-radius: 0.125rem;
|
||||
}
|
||||
|
||||
pre[class*='language-'] {
|
||||
border-radius: 0.125rem;
|
||||
}
|
||||
|
||||
/** TABLE **/
|
||||
|
||||
.table-hover > tbody > tr:hover {
|
||||
background: rgba(0, 0, 0, 0.075);
|
||||
}
|
||||
|
||||
table.params thead {
|
||||
background: none;
|
||||
}
|
||||
table.params thead td {
|
||||
color: rgba(0, 0, 0, 0.54);
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.dark .menu .title:hover {
|
||||
background-color: #2d2d2d;
|
||||
}
|
||||
.dark .menu ul.list li a:hover,
|
||||
.dark .menu ul.list li.chapter .simple:hover {
|
||||
background-color: #2d2d2d;
|
||||
}
|
||||
.dark .nav-tabs > li:not(.active) > a {
|
||||
color: #fafafa;
|
||||
}
|
||||
.dark table.params thead {
|
||||
background: #484848;
|
||||
}
|
||||
.dark table.params thead td {
|
||||
color: #fafafa;
|
||||
}
|
83
documentation/frontend/styles/monokai-sublime.css
Normal file
83
documentation/frontend/styles/monokai-sublime.css
Normal file
@@ -0,0 +1,83 @@
|
||||
/*
|
||||
|
||||
Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
|
||||
|
||||
*/
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
padding: 0.5em;
|
||||
background: #23241f;
|
||||
}
|
||||
|
||||
.hljs,
|
||||
.hljs-tag,
|
||||
.hljs-subst {
|
||||
color: #f8f8f2;
|
||||
}
|
||||
|
||||
.hljs-strong,
|
||||
.hljs-emphasis {
|
||||
color: #a8a8a2;
|
||||
}
|
||||
|
||||
.hljs-bullet,
|
||||
.hljs-quote,
|
||||
.hljs-number,
|
||||
.hljs-regexp,
|
||||
.hljs-literal,
|
||||
.hljs-link {
|
||||
color: #ae81ff;
|
||||
}
|
||||
|
||||
.hljs-code,
|
||||
.hljs-title,
|
||||
.hljs-section,
|
||||
.hljs-selector-class {
|
||||
color: #a6e22e;
|
||||
}
|
||||
|
||||
.hljs-strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.hljs-emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-keyword,
|
||||
.hljs-selector-tag,
|
||||
.hljs-name,
|
||||
.hljs-attr {
|
||||
color: #f92672;
|
||||
}
|
||||
|
||||
.hljs-symbol,
|
||||
.hljs-attribute {
|
||||
color: #66d9ef;
|
||||
}
|
||||
|
||||
.hljs-params,
|
||||
.hljs-class .hljs-title {
|
||||
color: #f8f8f2;
|
||||
}
|
||||
|
||||
.hljs-string,
|
||||
.hljs-type,
|
||||
.hljs-built_in,
|
||||
.hljs-builtin-name,
|
||||
.hljs-selector-id,
|
||||
.hljs-selector-attr,
|
||||
.hljs-selector-pseudo,
|
||||
.hljs-addition,
|
||||
.hljs-variable,
|
||||
.hljs-template-variable {
|
||||
color: #e6db74;
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-deletion,
|
||||
.hljs-meta {
|
||||
color: #75715e;
|
||||
}
|
47
documentation/frontend/styles/original.css
Normal file
47
documentation/frontend/styles/original.css
Normal file
@@ -0,0 +1,47 @@
|
||||
.navbar-default .navbar-brand, .menu ul.list li.title {
|
||||
font-weight: bold;
|
||||
color: #3c3c3c;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.menu ul.list li a[data-type="chapter-link"], .menu ul.list li.chapter .simple {
|
||||
font-weight: bold;
|
||||
border-top: 1px solid #ddd;
|
||||
border-bottom: 1px solid #ddd;
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.menu ul.list li a[href="./routes.html"] {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.menu ul.list > li:nth-child(2) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.menu ul.list li.chapter ul.links {
|
||||
background: #fff;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.menu ul.list li.chapter ul.links li {
|
||||
border-bottom: 1px solid #ddd;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.menu ul.list li.chapter ul.links li:last-child {
|
||||
border-bottom: none;
|
||||
}
|
||||
|
||||
.menu ul.list li a.active {
|
||||
color: inherit;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#book-search-input {
|
||||
margin-bottom: 0;
|
||||
border-bottom: none;
|
||||
}
|
||||
.menu ul.list li.divider {
|
||||
margin: 0;
|
||||
}
|
211
documentation/frontend/styles/postmark.css
Normal file
211
documentation/frontend/styles/postmark.css
Normal file
@@ -0,0 +1,211 @@
|
||||
.navbar-default {
|
||||
background: #FFDE00;
|
||||
border: none;
|
||||
}
|
||||
.navbar-default .navbar-brand {
|
||||
color: #333;
|
||||
font-weight: bold;
|
||||
}
|
||||
.menu {
|
||||
background: #333;
|
||||
color: #fcfcfc;
|
||||
}
|
||||
.menu ul.list li a {
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.menu ul.list li.title {
|
||||
background: #FFDE00;
|
||||
color: #333;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.menu ul.list li:nth-child(2) {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.menu ul.list li.chapter a, .menu ul.list li.chapter .simple {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.menu ul.list li.chapter ul.links a {
|
||||
color: #949494;
|
||||
text-transform: none;
|
||||
padding-left: 35px;
|
||||
}
|
||||
.menu ul.list li.chapter ul.links a:hover, .menu ul.list li.chapter ul.links a.active {
|
||||
color: #FFDE00;
|
||||
}
|
||||
|
||||
.menu ul.list li.chapter ul.links {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.menu ul.list li.divider {
|
||||
background: rgba(255, 255, 255, 0.07);
|
||||
}
|
||||
|
||||
#book-search-input input, #book-search-input input:focus, #book-search-input input:hover {
|
||||
color: #949494;
|
||||
}
|
||||
|
||||
.copyright {
|
||||
color: #b3b3b3;
|
||||
}
|
||||
|
||||
.content {
|
||||
background: #fcfcfc;
|
||||
}
|
||||
|
||||
.content a {
|
||||
color: #007DCC;
|
||||
}
|
||||
.content a:visited {
|
||||
color: #0165a5;
|
||||
}
|
||||
.copyright {
|
||||
background: #272525;
|
||||
}
|
||||
.menu ul.list li:nth-last-child(2) {
|
||||
background: none;
|
||||
}
|
||||
.list-group-item:first-child, .list-group-item:last-child {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.menu ul.list li.title a {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
}
|
||||
.menu ul.list li.title a:hover {
|
||||
background: rgba(255,255,255,0.1);
|
||||
}
|
||||
|
||||
.breadcrumb>li+li:before {
|
||||
content: "»\00a0"
|
||||
}
|
||||
|
||||
.breadcrumb {
|
||||
padding-bottom: 15px;
|
||||
border-bottom: 1px solid #e1e4e5;
|
||||
}
|
||||
code {
|
||||
white-space: nowrap;
|
||||
max-width: 100%;
|
||||
background: #F5F5F5;
|
||||
border: solid 1px #e1e4e5;
|
||||
padding: 2px 5px;
|
||||
color: #666666;
|
||||
overflow-x: auto;
|
||||
border-radius: 0;
|
||||
}
|
||||
pre {
|
||||
white-space: pre;
|
||||
margin: 0;
|
||||
padding: 12px 12px;
|
||||
font-size: 12px;
|
||||
line-height: 1.5;
|
||||
display: block;
|
||||
overflow: auto;
|
||||
color: #404040;
|
||||
background: #f3f3f3;
|
||||
}
|
||||
pre code.hljs {
|
||||
border: none;
|
||||
background: inherit;
|
||||
}
|
||||
|
||||
/*
|
||||
Atom One Light by Daniel Gamage
|
||||
Original One Light Syntax theme from https://github.com/atom/one-light-syntax
|
||||
base: #fafafa
|
||||
mono-1: #383a42
|
||||
mono-2: #686b77
|
||||
mono-3: #a0a1a7
|
||||
hue-1: #0184bb
|
||||
hue-2: #4078f2
|
||||
hue-3: #a626a4
|
||||
hue-4: #50a14f
|
||||
hue-5: #e45649
|
||||
hue-5-2: #c91243
|
||||
hue-6: #986801
|
||||
hue-6-2: #c18401
|
||||
*/
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
padding: 0.5em;
|
||||
color: #383a42;
|
||||
background: #fafafa;
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-quote {
|
||||
color: #a0a1a7;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-doctag,
|
||||
.hljs-keyword,
|
||||
.hljs-formula {
|
||||
color: #a626a4;
|
||||
}
|
||||
|
||||
.hljs-section,
|
||||
.hljs-name,
|
||||
.hljs-selector-tag,
|
||||
.hljs-deletion,
|
||||
.hljs-subst {
|
||||
color: #e45649;
|
||||
}
|
||||
|
||||
.hljs-literal {
|
||||
color: #0184bb;
|
||||
}
|
||||
|
||||
.hljs-string,
|
||||
.hljs-regexp,
|
||||
.hljs-addition,
|
||||
.hljs-attribute,
|
||||
.hljs-meta-string {
|
||||
color: #50a14f;
|
||||
}
|
||||
|
||||
.hljs-built_in,
|
||||
.hljs-class .hljs-title {
|
||||
color: #c18401;
|
||||
}
|
||||
|
||||
.hljs-attr,
|
||||
.hljs-variable,
|
||||
.hljs-template-variable,
|
||||
.hljs-type,
|
||||
.hljs-selector-class,
|
||||
.hljs-selector-attr,
|
||||
.hljs-selector-pseudo,
|
||||
.hljs-number {
|
||||
color: #986801;
|
||||
}
|
||||
|
||||
.hljs-symbol,
|
||||
.hljs-bullet,
|
||||
.hljs-link,
|
||||
.hljs-meta,
|
||||
.hljs-selector-id,
|
||||
.hljs-title {
|
||||
color: #4078f2;
|
||||
}
|
||||
|
||||
.hljs-emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.hljs-link {
|
||||
text-decoration: underline;
|
||||
}
|
301
documentation/frontend/styles/prism.css
Normal file
301
documentation/frontend/styles/prism.css
Normal file
@@ -0,0 +1,301 @@
|
||||
/* PrismJS 1.24.0
|
||||
https://prismjs.com/download.html?#themes=prism-okaidia&languages=markup+css+clike+javascript+apacheconf+aspnet+bash+c+csharp+cpp+coffeescript+dart+docker+elm+git+go+graphql+handlebars+haskell+http+ignore+java+json+kotlin+less+markdown+markup-templating+nginx+php+powershell+ruby+rust+sass+scss+sql+swift+typescript+wasm+yaml&plugins=line-highlight+line-numbers+toolbar+copy-to-clipboard */
|
||||
/**
|
||||
* okaidia theme for JavaScript, CSS and HTML
|
||||
* Loosely based on Monokai textmate theme by http://www.monokai.nl/
|
||||
* @author ocodia
|
||||
*/
|
||||
|
||||
code[class*='language-'],
|
||||
pre[class*='language-'] {
|
||||
color: #f8f8f2;
|
||||
background: none;
|
||||
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
|
||||
font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
|
||||
font-size: 1em;
|
||||
text-align: left;
|
||||
white-space: pre;
|
||||
word-spacing: normal;
|
||||
word-break: normal;
|
||||
word-wrap: normal;
|
||||
line-height: 1.5;
|
||||
|
||||
-moz-tab-size: 4;
|
||||
-o-tab-size: 4;
|
||||
tab-size: 4;
|
||||
|
||||
-webkit-hyphens: none;
|
||||
-moz-hyphens: none;
|
||||
-ms-hyphens: none;
|
||||
hyphens: none;
|
||||
}
|
||||
|
||||
/* Code blocks */
|
||||
pre[class*='language-'] {
|
||||
padding: 1em;
|
||||
margin: 0.5em 0;
|
||||
overflow: auto;
|
||||
border-radius: 0.3em;
|
||||
}
|
||||
|
||||
:not(pre) > code[class*='language-'],
|
||||
pre[class*='language-'] {
|
||||
background: #272822;
|
||||
}
|
||||
|
||||
/* Inline code */
|
||||
:not(pre) > code[class*='language-'] {
|
||||
padding: 0.1em;
|
||||
border-radius: 0.3em;
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
.token.comment,
|
||||
.token.prolog,
|
||||
.token.doctype,
|
||||
.token.cdata {
|
||||
color: #8292a2;
|
||||
}
|
||||
|
||||
.token.punctuation {
|
||||
color: #f8f8f2;
|
||||
}
|
||||
|
||||
.token.namespace {
|
||||
opacity: 0.7;
|
||||
}
|
||||
|
||||
.token.property,
|
||||
.token.tag,
|
||||
.token.constant,
|
||||
.token.symbol,
|
||||
.token.deleted {
|
||||
color: #f92672;
|
||||
}
|
||||
|
||||
.token.boolean,
|
||||
.token.number {
|
||||
color: #ae81ff;
|
||||
}
|
||||
|
||||
.token.selector,
|
||||
.token.attr-name,
|
||||
.token.string,
|
||||
.token.char,
|
||||
.token.builtin,
|
||||
.token.inserted {
|
||||
color: #a6e22e;
|
||||
}
|
||||
|
||||
.token.operator,
|
||||
.token.entity,
|
||||
.token.url,
|
||||
.language-css .token.string,
|
||||
.style .token.string,
|
||||
.token.variable {
|
||||
color: #f8f8f2;
|
||||
}
|
||||
|
||||
.token.atrule,
|
||||
.token.attr-value,
|
||||
.token.function,
|
||||
.token.class-name {
|
||||
color: #e6db74;
|
||||
}
|
||||
|
||||
.token.keyword {
|
||||
color: #66d9ef;
|
||||
}
|
||||
|
||||
.token.regex,
|
||||
.token.important {
|
||||
color: #fd971f;
|
||||
}
|
||||
|
||||
.token.important,
|
||||
.token.bold {
|
||||
font-weight: bold;
|
||||
}
|
||||
.token.italic {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.token.entity {
|
||||
cursor: help;
|
||||
}
|
||||
|
||||
pre[data-line] {
|
||||
position: relative;
|
||||
padding: 1em 0 1em 3em;
|
||||
}
|
||||
|
||||
.line-highlight {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
padding: inherit 0;
|
||||
margin-top: 1em; /* Same as .prism’s padding-top */
|
||||
|
||||
background: hsla(24, 20%, 50%, 0.08);
|
||||
background: linear-gradient(to right, hsla(24, 20%, 50%, 0.1) 70%, hsla(24, 20%, 50%, 0));
|
||||
|
||||
pointer-events: none;
|
||||
|
||||
line-height: inherit;
|
||||
white-space: pre;
|
||||
}
|
||||
|
||||
@media print {
|
||||
.line-highlight {
|
||||
/*
|
||||
* This will prevent browsers from replacing the background color with white.
|
||||
* It's necessary because the element is layered on top of the displayed code.
|
||||
*/
|
||||
-webkit-print-color-adjust: exact;
|
||||
color-adjust: exact;
|
||||
}
|
||||
}
|
||||
|
||||
.line-highlight:before,
|
||||
.line-highlight[data-end]:after {
|
||||
content: attr(data-start);
|
||||
position: absolute;
|
||||
top: 0.4em;
|
||||
left: 0.6em;
|
||||
min-width: 1em;
|
||||
padding: 0 0.5em;
|
||||
background-color: hsla(24, 20%, 50%, 0.4);
|
||||
color: hsl(24, 20%, 95%);
|
||||
font: bold 65%/1.5 sans-serif;
|
||||
text-align: center;
|
||||
vertical-align: 0.3em;
|
||||
border-radius: 999px;
|
||||
text-shadow: none;
|
||||
box-shadow: 0 1px white;
|
||||
}
|
||||
|
||||
.line-highlight[data-end]:after {
|
||||
content: attr(data-end);
|
||||
top: auto;
|
||||
bottom: 0.4em;
|
||||
}
|
||||
|
||||
.line-numbers .line-highlight:before,
|
||||
.line-numbers .line-highlight:after {
|
||||
content: none;
|
||||
}
|
||||
|
||||
pre[id].linkable-line-numbers span.line-numbers-rows {
|
||||
pointer-events: all;
|
||||
}
|
||||
pre[id].linkable-line-numbers span.line-numbers-rows > span:before {
|
||||
cursor: pointer;
|
||||
}
|
||||
pre[id].linkable-line-numbers span.line-numbers-rows > span:hover:before {
|
||||
background-color: rgba(128, 128, 128, 0.2);
|
||||
}
|
||||
|
||||
pre[class*='language-'].line-numbers {
|
||||
position: relative;
|
||||
padding-left: 3.8em;
|
||||
counter-reset: linenumber;
|
||||
}
|
||||
|
||||
pre[class*='language-'].line-numbers > code {
|
||||
position: relative;
|
||||
white-space: inherit;
|
||||
}
|
||||
|
||||
.line-numbers .line-numbers-rows {
|
||||
position: absolute;
|
||||
pointer-events: none;
|
||||
top: 0;
|
||||
font-size: 100%;
|
||||
left: -3.8em;
|
||||
width: 3em; /* works for line-numbers below 1000 lines */
|
||||
letter-spacing: -1px;
|
||||
border-right: 1px solid #999;
|
||||
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.line-numbers-rows > span {
|
||||
display: block;
|
||||
counter-increment: linenumber;
|
||||
}
|
||||
|
||||
.line-numbers-rows > span:before {
|
||||
content: counter(linenumber);
|
||||
color: #999;
|
||||
display: block;
|
||||
padding-right: 0.8em;
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
div.code-toolbar {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar {
|
||||
position: absolute;
|
||||
top: 0.3em;
|
||||
right: 0.2em;
|
||||
transition: opacity 0.3s ease-in-out;
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
div.code-toolbar:hover > .toolbar {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Separate line b/c rules are thrown out if selector is invalid.
|
||||
IE11 and old Edge versions don't support :focus-within. */
|
||||
div.code-toolbar:focus-within > .toolbar {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar .toolbar-item {
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar a {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar button {
|
||||
background: none;
|
||||
border: 0;
|
||||
color: inherit;
|
||||
font: inherit;
|
||||
line-height: normal;
|
||||
overflow: visible;
|
||||
padding: 0;
|
||||
-webkit-user-select: none; /* for button */
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar a,
|
||||
div.code-toolbar > .toolbar button,
|
||||
div.code-toolbar > .toolbar span {
|
||||
color: #bbb;
|
||||
font-size: 0.8em;
|
||||
padding: 0 0.5em;
|
||||
background: #f5f2f0;
|
||||
background: rgba(224, 224, 224, 0.2);
|
||||
box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
|
||||
border-radius: 0.5em;
|
||||
}
|
||||
|
||||
div.code-toolbar > .toolbar a:hover,
|
||||
div.code-toolbar > .toolbar a:focus,
|
||||
div.code-toolbar > .toolbar button:hover,
|
||||
div.code-toolbar > .toolbar button:focus,
|
||||
div.code-toolbar > .toolbar span:hover,
|
||||
div.code-toolbar > .toolbar span:focus {
|
||||
color: inherit;
|
||||
text-decoration: none;
|
||||
}
|
217
documentation/frontend/styles/readthedocs.css
Normal file
217
documentation/frontend/styles/readthedocs.css
Normal file
@@ -0,0 +1,217 @@
|
||||
.navbar-default {
|
||||
background: #2980B9;
|
||||
border: none;
|
||||
}
|
||||
.navbar-default .navbar-brand {
|
||||
color: #fcfcfc;
|
||||
}
|
||||
.menu {
|
||||
background: #343131;
|
||||
color: #fcfcfc;
|
||||
}
|
||||
.menu ul.list li a {
|
||||
color: #fcfcfc;
|
||||
}
|
||||
|
||||
.menu ul.list li a.active {
|
||||
color: #0099e5;
|
||||
}
|
||||
|
||||
.menu ul.list li.title {
|
||||
background: #2980B9;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.menu ul.list li:nth-child(2) {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.menu ul.list li.chapter a, .menu ul.list li.chapter .simple {
|
||||
color: #555;
|
||||
text-transform: uppercase;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.menu ul.list li.chapter ul.links a {
|
||||
color: #b3b3b3;
|
||||
text-transform: none;
|
||||
padding-left: 35px;
|
||||
}
|
||||
.menu ul.list li.chapter ul.links a:hover {
|
||||
background: #4E4A4A;
|
||||
}
|
||||
|
||||
.menu ul.list li.chapter ul.links {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.menu ul.list li.divider {
|
||||
background: rgba(255, 255, 255, 0.07);
|
||||
}
|
||||
|
||||
#book-search-input input, #book-search-input input:focus, #book-search-input input:hover {
|
||||
color: #949494;
|
||||
}
|
||||
|
||||
.copyright {
|
||||
color: #b3b3b3;
|
||||
}
|
||||
|
||||
.content {
|
||||
background: #fcfcfc;
|
||||
}
|
||||
|
||||
.content a {
|
||||
color: #2980B9;
|
||||
}
|
||||
.content a:hover {
|
||||
color: #3091d1;
|
||||
}
|
||||
.content a:visited {
|
||||
color: #9B59B6;
|
||||
}
|
||||
.copyright {
|
||||
background: #272525;
|
||||
}
|
||||
.menu ul.list li:nth-last-child(2) {
|
||||
background: none;
|
||||
}
|
||||
code {
|
||||
white-space: nowrap;
|
||||
max-width: 100%;
|
||||
background: #fff;
|
||||
border: solid 1px #e1e4e5;
|
||||
padding: 2px 5px;
|
||||
color: #E74C3C;
|
||||
overflow-x: auto;
|
||||
border-radius: 0;
|
||||
}
|
||||
pre {
|
||||
white-space: pre;
|
||||
margin: 0;
|
||||
padding: 12px 12px;
|
||||
font-size: 12px;
|
||||
line-height: 1.5;
|
||||
display: block;
|
||||
overflow: auto;
|
||||
color: #404040;
|
||||
background: rgba(238,238,238,.35);
|
||||
}
|
||||
pre code.hljs {
|
||||
border: none;
|
||||
background: inherit;
|
||||
}
|
||||
|
||||
/*
|
||||
Atom One Light by Daniel Gamage
|
||||
Original One Light Syntax theme from https://github.com/atom/one-light-syntax
|
||||
base: #fafafa
|
||||
mono-1: #383a42
|
||||
mono-2: #686b77
|
||||
mono-3: #a0a1a7
|
||||
hue-1: #0184bb
|
||||
hue-2: #4078f2
|
||||
hue-3: #a626a4
|
||||
hue-4: #50a14f
|
||||
hue-5: #e45649
|
||||
hue-5-2: #c91243
|
||||
hue-6: #986801
|
||||
hue-6-2: #c18401
|
||||
*/
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
padding: 0.5em;
|
||||
color: #383a42;
|
||||
background: #fafafa;
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-quote {
|
||||
color: #a0a1a7;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-doctag,
|
||||
.hljs-keyword,
|
||||
.hljs-formula {
|
||||
color: #a626a4;
|
||||
}
|
||||
|
||||
.hljs-section,
|
||||
.hljs-name,
|
||||
.hljs-selector-tag,
|
||||
.hljs-deletion,
|
||||
.hljs-subst {
|
||||
color: #e45649;
|
||||
}
|
||||
|
||||
.hljs-literal {
|
||||
color: #0184bb;
|
||||
}
|
||||
|
||||
.hljs-string,
|
||||
.hljs-regexp,
|
||||
.hljs-addition,
|
||||
.hljs-attribute,
|
||||
.hljs-meta-string {
|
||||
color: #50a14f;
|
||||
}
|
||||
|
||||
.hljs-built_in,
|
||||
.hljs-class .hljs-title {
|
||||
color: #c18401;
|
||||
}
|
||||
|
||||
.hljs-attr,
|
||||
.hljs-variable,
|
||||
.hljs-template-variable,
|
||||
.hljs-type,
|
||||
.hljs-selector-class,
|
||||
.hljs-selector-attr,
|
||||
.hljs-selector-pseudo,
|
||||
.hljs-number {
|
||||
color: #986801;
|
||||
}
|
||||
|
||||
.hljs-symbol,
|
||||
.hljs-bullet,
|
||||
.hljs-link,
|
||||
.hljs-meta,
|
||||
.hljs-selector-id,
|
||||
.hljs-title {
|
||||
color: #4078f2;
|
||||
}
|
||||
|
||||
.hljs-emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.hljs-link {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.list-group-item:first-child, .list-group-item:last-child {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.menu ul.list li.title a {
|
||||
text-decoration: none;
|
||||
}
|
||||
.menu ul.list li.title a:hover {
|
||||
background: rgba(255,255,255,0.1);
|
||||
}
|
||||
|
||||
.breadcrumb>li+li:before {
|
||||
content: "»\00a0"
|
||||
}
|
||||
|
||||
.breadcrumb {
|
||||
padding-bottom: 15px;
|
||||
border-bottom: 1px solid #e1e4e5;
|
||||
}
|
48
documentation/frontend/styles/reset.css
Normal file
48
documentation/frontend/styles/reset.css
Normal file
@@ -0,0 +1,48 @@
|
||||
/* http://meyerweb.com/eric/tools/css/reset/
|
||||
v2.0 | 20110126
|
||||
License: none (public domain)
|
||||
*/
|
||||
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td,
|
||||
article, aside, canvas, details, embed,
|
||||
figure, figcaption, footer, header, hgroup,
|
||||
menu, nav, output, ruby, section, summary,
|
||||
time, mark, audio, video {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
font-size: 100%;
|
||||
font: inherit;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
/* HTML5 display-role reset for older browsers */
|
||||
article, aside, details, figcaption, figure,
|
||||
footer, header, hgroup, menu, nav, section {
|
||||
display: block;
|
||||
}
|
||||
body {
|
||||
line-height: 1;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
71
documentation/frontend/styles/stripe.css
Normal file
71
documentation/frontend/styles/stripe.css
Normal file
@@ -0,0 +1,71 @@
|
||||
.navbar-default .navbar-brand {
|
||||
color: #0099e5;
|
||||
}
|
||||
|
||||
.menu ul.list li a[data-type="chapter-link"], .menu ul.list li.chapter .simple {
|
||||
color: #939da3;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.content h1, .content h2, .content h3, .content h4, .content h5 {
|
||||
color: #292e31;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.content {
|
||||
color: #4c555a;
|
||||
}
|
||||
|
||||
.menu ul.list li.title {
|
||||
padding: 5px 0;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0099e5;
|
||||
text-decoration: none;
|
||||
}
|
||||
a:hover {
|
||||
color: #292e31;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.menu ul.list li:nth-child(2) {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.menu ul.list li.title a, .navbar a {
|
||||
color: #0099e5;
|
||||
text-decoration: none;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.menu ul.list li a.active {
|
||||
color: #0099e5;
|
||||
}
|
||||
|
||||
code {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
padding: 0 5px;
|
||||
background: #fafcfc;
|
||||
border: 1px solid #f0f4f7;
|
||||
border-radius: 4px;
|
||||
color: #b93d6a;
|
||||
font-size: 13px;
|
||||
line-height: 20px
|
||||
}
|
||||
|
||||
pre {
|
||||
margin: 0;
|
||||
padding: 12px 12px;
|
||||
background: #272b2d;
|
||||
border-radius: 5px;
|
||||
font-size: 13px;
|
||||
line-height: 1.5em;
|
||||
font-weight: 500
|
||||
}
|
||||
|
||||
pre code.hljs {
|
||||
border: none;
|
||||
background: #272b2d;
|
||||
}
|
6
documentation/frontend/styles/style.css
Normal file
6
documentation/frontend/styles/style.css
Normal file
@@ -0,0 +1,6 @@
|
||||
@import "./reset.css";
|
||||
@import "./bootstrap.min.css";
|
||||
@import "./bootstrap-card.css";
|
||||
@import "./monokai-sublime.css";
|
||||
@import "./font-awesome.min.css";
|
||||
@import "./compodoc.css";
|
33
documentation/frontend/styles/tablesort.css
Normal file
33
documentation/frontend/styles/tablesort.css
Normal file
@@ -0,0 +1,33 @@
|
||||
th[role=columnheader]:not(.no-sort) {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
th[role=columnheader]:not(.no-sort):after {
|
||||
content: '';
|
||||
float: right;
|
||||
margin-top: 7px;
|
||||
border-width: 0 4px 4px;
|
||||
border-style: solid;
|
||||
border-color: #404040 transparent;
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
-ms-user-select: none;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
th[aria-sort=ascending]:not(.no-sort):after {
|
||||
border-bottom: none;
|
||||
border-width: 4px 4px 0;
|
||||
}
|
||||
|
||||
th[aria-sort]:not(.no-sort):after {
|
||||
visibility: visible;
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
||||
th[role=columnheader]:not(.no-sort):hover:after {
|
||||
visibility: visible;
|
||||
opacity: 1;
|
||||
}
|
197
documentation/frontend/styles/vagrant.css
Normal file
197
documentation/frontend/styles/vagrant.css
Normal file
@@ -0,0 +1,197 @@
|
||||
.navbar-default .navbar-brand {
|
||||
background: white;
|
||||
color: #8d9ba8;
|
||||
}
|
||||
|
||||
.menu .list {
|
||||
background: #0c5593;
|
||||
}
|
||||
|
||||
.menu .chapter {
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.menu ul.list li a[data-type="chapter-link"], .menu ul.list li.chapter .simple {
|
||||
color: white;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 1px solid rgba(255,255,255,0.4);
|
||||
}
|
||||
|
||||
.content h1, .content h2, .content h3, .content h4, .content h5 {
|
||||
color: #292e31;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.content {
|
||||
color: #4c555a;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #0094bf;
|
||||
text-decoration: underline;
|
||||
}
|
||||
a:hover {
|
||||
color: #f1362f;
|
||||
}
|
||||
|
||||
.menu ul.list li.title {
|
||||
background: white;
|
||||
padding-bottom: 5px;
|
||||
}
|
||||
|
||||
.menu ul.list li:nth-child(2) {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.menu ul.list li:nth-last-child(2) {
|
||||
background: none;
|
||||
}
|
||||
|
||||
.menu ul.list li.title a {
|
||||
padding: 10px 15px;
|
||||
}
|
||||
|
||||
.menu ul.list li.title a, .navbar a {
|
||||
color: #8d9ba8;
|
||||
text-decoration: none;
|
||||
font-size: 16px;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.menu ul.list li a {
|
||||
color: white;
|
||||
padding: 10px;
|
||||
font-weight: 300;
|
||||
text-decoration: none;
|
||||
}
|
||||
.menu ul.list li a.active {
|
||||
color: white;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.copyright {
|
||||
color: white;
|
||||
background: #000;
|
||||
}
|
||||
|
||||
code {
|
||||
box-sizing: border-box;
|
||||
display: inline-block;
|
||||
padding: 0 5px;
|
||||
background: rgba(0,148,191,0.1);
|
||||
border: 1px solid #f0f4f7;
|
||||
border-radius: 3px;
|
||||
color: #0094bf;
|
||||
font-size: 13px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
pre {
|
||||
margin: 0;
|
||||
padding: 12px 12px;
|
||||
background: rgba(238,238,238,.35);
|
||||
border-radius: 3px;
|
||||
font-size: 13px;
|
||||
line-height: 1.5em;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
pre code.hljs {
|
||||
border: none;
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
/*
|
||||
Atom One Light by Daniel Gamage
|
||||
Original One Light Syntax theme from https://github.com/atom/one-light-syntax
|
||||
base: #fafafa
|
||||
mono-1: #383a42
|
||||
mono-2: #686b77
|
||||
mono-3: #a0a1a7
|
||||
hue-1: #0184bb
|
||||
hue-2: #4078f2
|
||||
hue-3: #a626a4
|
||||
hue-4: #50a14f
|
||||
hue-5: #e45649
|
||||
hue-5-2: #c91243
|
||||
hue-6: #986801
|
||||
hue-6-2: #c18401
|
||||
*/
|
||||
|
||||
.hljs {
|
||||
display: block;
|
||||
overflow-x: auto;
|
||||
padding: 0.5em;
|
||||
color: #383a42;
|
||||
background: #fafafa;
|
||||
}
|
||||
|
||||
.hljs-comment,
|
||||
.hljs-quote {
|
||||
color: #a0a1a7;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-doctag,
|
||||
.hljs-keyword,
|
||||
.hljs-formula {
|
||||
color: #a626a4;
|
||||
}
|
||||
|
||||
.hljs-section,
|
||||
.hljs-name,
|
||||
.hljs-selector-tag,
|
||||
.hljs-deletion,
|
||||
.hljs-subst {
|
||||
color: #e45649;
|
||||
}
|
||||
|
||||
.hljs-literal {
|
||||
color: #0184bb;
|
||||
}
|
||||
|
||||
.hljs-string,
|
||||
.hljs-regexp,
|
||||
.hljs-addition,
|
||||
.hljs-attribute,
|
||||
.hljs-meta-string {
|
||||
color: #50a14f;
|
||||
}
|
||||
|
||||
.hljs-built_in,
|
||||
.hljs-class .hljs-title {
|
||||
color: #c18401;
|
||||
}
|
||||
|
||||
.hljs-attr,
|
||||
.hljs-variable,
|
||||
.hljs-template-variable,
|
||||
.hljs-type,
|
||||
.hljs-selector-class,
|
||||
.hljs-selector-attr,
|
||||
.hljs-selector-pseudo,
|
||||
.hljs-number {
|
||||
color: #986801;
|
||||
}
|
||||
|
||||
.hljs-symbol,
|
||||
.hljs-bullet,
|
||||
.hljs-link,
|
||||
.hljs-meta,
|
||||
.hljs-selector-id,
|
||||
.hljs-title {
|
||||
color: #4078f2;
|
||||
}
|
||||
|
||||
.hljs-emphasis {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.hljs-strong {
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.hljs-link {
|
||||
text-decoration: underline;
|
||||
}
|
Reference in New Issue
Block a user