Add documentation
This commit is contained in:
219
frontend/documentation/styles/bootstrap-card.css
vendored
Normal file
219
frontend/documentation/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
frontend/documentation/styles/bootstrap.min.css
vendored
Normal file
6
frontend/documentation/styles/bootstrap.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
1082
frontend/documentation/styles/compodoc.css
Normal file
1082
frontend/documentation/styles/compodoc.css
Normal file
File diff suppressed because it is too large
Load Diff
117
frontend/documentation/styles/dark.css
Normal file
117
frontend/documentation/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;
|
||||
}
|
11
frontend/documentation/styles/ionicons.min.css
vendored
Normal file
11
frontend/documentation/styles/ionicons.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
113
frontend/documentation/styles/laravel.css
Normal file
113
frontend/documentation/styles/laravel.css
Normal file
@@ -0,0 +1,113 @@
|
||||
.nav-tabs > li > a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.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, 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-radius: 3px;
|
||||
color: #b93d6a;
|
||||
font-size: 13px;
|
||||
line-height: 20px;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
|
||||
}
|
||||
|
||||
pre {
|
||||
margin: 0;
|
||||
padding: 12px 12px;
|
||||
background: rgba(238, 238, 238, 0.35);
|
||||
border-radius: 3px;
|
||||
font-size: 13px;
|
||||
line-height: 1.5em;
|
||||
font-weight: 500;
|
||||
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.125);
|
||||
}
|
||||
|
||||
.dark body {
|
||||
color: #fafafa;
|
||||
}
|
||||
.dark .content h1,
|
||||
.dark .content h2,
|
||||
.dark .content h3,
|
||||
.dark .content h4,
|
||||
.dark .content h5 {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark code {
|
||||
background: none;
|
||||
}
|
||||
|
||||
.dark .content {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark .menu ul.list li a[data-type='chapter-link'],
|
||||
.dark .menu ul.list li.chapter .simple {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark .menu ul.list li.title a {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark .menu ul.list li a {
|
||||
color: #fafafa;
|
||||
}
|
||||
.dark .menu ul.list li a.active {
|
||||
color: #7fc9ff;
|
||||
}
|
131
frontend/documentation/styles/material.css
Normal file
131
frontend/documentation/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;
|
||||
}
|
51
frontend/documentation/styles/original.css
Normal file
51
frontend/documentation/styles/original.css
Normal file
@@ -0,0 +1,51 @@
|
||||
.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;
|
||||
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: #337ab7;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#book-search-input {
|
||||
margin-bottom: 0;
|
||||
border-bottom: none;
|
||||
}
|
||||
.menu ul.list li.divider {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.dark .menu ul.list li.chapter ul.links {
|
||||
background: none;
|
||||
}
|
238
frontend/documentation/styles/postmark.css
Normal file
238
frontend/documentation/styles/postmark.css
Normal file
@@ -0,0 +1,238 @@
|
||||
.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;
|
||||
background: #272525;
|
||||
}
|
||||
|
||||
.content {
|
||||
background: #fcfcfc;
|
||||
}
|
||||
|
||||
.content a {
|
||||
color: #007dcc;
|
||||
}
|
||||
|
||||
.content a:visited {
|
||||
color: #0165a5;
|
||||
}
|
||||
|
||||
.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;
|
||||
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;
|
||||
}
|
||||
|
||||
.dark .content {
|
||||
background: none;
|
||||
}
|
||||
.dark code {
|
||||
background: none;
|
||||
color: #e09393;
|
||||
}
|
||||
.dark .menu ul.list li.chapter a.active {
|
||||
color: #ffde00;
|
||||
}
|
||||
.dark .menu {
|
||||
background: #272525;
|
||||
}
|
301
frontend/documentation/styles/prism.css
Normal file
301
frontend/documentation/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;
|
||||
}
|
117
frontend/documentation/styles/readthedocs.css
Normal file
117
frontend/documentation/styles/readthedocs.css
Normal file
@@ -0,0 +1,117 @@
|
||||
.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.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 a.active,
|
||||
.menu ul.list li.chapter ul.links a.active {
|
||||
color: #0099e5;
|
||||
}
|
||||
|
||||
.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;
|
||||
background: #272525;
|
||||
}
|
||||
|
||||
.content {
|
||||
background: #fcfcfc;
|
||||
}
|
||||
|
||||
.content a {
|
||||
color: #2980b9;
|
||||
}
|
||||
|
||||
.content a:hover {
|
||||
color: #3091d1;
|
||||
}
|
||||
|
||||
.content a:visited {
|
||||
color: #9b59b6;
|
||||
}
|
||||
|
||||
.menu ul.list li:nth-last-child(2) {
|
||||
background: none;
|
||||
}
|
||||
|
||||
code {
|
||||
white-space: nowrap;
|
||||
max-width: 100%;
|
||||
background: #fff;
|
||||
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, 0.35);
|
||||
}
|
||||
|
||||
.dark .content {
|
||||
background: none;
|
||||
}
|
||||
.dark code {
|
||||
background: none;
|
||||
color: #e09393;
|
||||
}
|
129
frontend/documentation/styles/reset.css
Normal file
129
frontend/documentation/styles/reset.css
Normal file
@@ -0,0 +1,129 @@
|
||||
/* 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: inherit;
|
||||
font-size: 100%;
|
||||
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;
|
||||
}
|
106
frontend/documentation/styles/stripe.css
Normal file
106
frontend/documentation/styles/stripe.css
Normal file
@@ -0,0 +1,106 @@
|
||||
.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-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;
|
||||
}
|
||||
|
||||
.dark body {
|
||||
color: #fafafa;
|
||||
}
|
||||
.dark .content h1,
|
||||
.dark .content h2,
|
||||
.dark .content h3,
|
||||
.dark .content h4,
|
||||
.dark .content h5 {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark code {
|
||||
background: none;
|
||||
}
|
||||
|
||||
.dark .content {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark .menu ul.list li a[data-type='chapter-link'],
|
||||
.dark .menu ul.list li.chapter .simple {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark .menu ul.list li.title a {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark .menu ul.list li a {
|
||||
color: #fafafa;
|
||||
}
|
||||
.dark .menu ul.list li a.active {
|
||||
color: #7fc9ff;
|
||||
}
|
7
frontend/documentation/styles/style.css
Normal file
7
frontend/documentation/styles/style.css
Normal file
@@ -0,0 +1,7 @@
|
||||
@import "./reset.css";
|
||||
@import "./bootstrap.min.css";
|
||||
@import "./bootstrap-card.css";
|
||||
@import "./prism.css";
|
||||
@import "./ionicons.min.css";
|
||||
@import "./compodoc.css";
|
||||
@import "./tablesort.css";
|
33
frontend/documentation/styles/tablesort.css
Normal file
33
frontend/documentation/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;
|
||||
}
|
130
frontend/documentation/styles/vagrant.css
Normal file
130
frontend/documentation/styles/vagrant.css
Normal file
@@ -0,0 +1,130 @@
|
||||
.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-radius: 3px;
|
||||
color: #0094bf;
|
||||
font-size: 13px;
|
||||
line-height: 20px;
|
||||
}
|
||||
|
||||
pre {
|
||||
margin: 0;
|
||||
padding: 12px 12px;
|
||||
background: rgba(238, 238, 238, 0.35);
|
||||
border-radius: 3px;
|
||||
font-size: 13px;
|
||||
line-height: 1.5em;
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.dark body {
|
||||
color: #fafafa;
|
||||
}
|
||||
.dark .content h1,
|
||||
.dark .content h2,
|
||||
.dark .content h3,
|
||||
.dark .content h4,
|
||||
.dark .content h5 {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark code {
|
||||
background: none;
|
||||
}
|
||||
|
||||
.dark .content {
|
||||
color: #fafafa;
|
||||
}
|
||||
|
||||
.dark .menu ul.list li.title a,
|
||||
.dark .navbar a {
|
||||
color: #8d9ba8;
|
||||
}
|
||||
|
||||
.dark .menu ul.list li a {
|
||||
color: #fafafa;
|
||||
}
|
Reference in New Issue
Block a user