Created own theme
4
assets/css/bootstrap/bootstrap-toc.min.css
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
/*!
|
||||
* Bootstrap Table of Contents v1.0.1 (http://afeld.github.io/bootstrap-toc/)
|
||||
* Copyright 2015 Aidan Feldman
|
||||
* Licensed under MIT (https://github.com/afeld/bootstrap-toc/blob/gh-pages/LICENSE.md) */nav[data-toggle=toc] .nav>li>a{display:block;padding:4px 20px;font-size:13px;font-weight:500;color:#767676}nav[data-toggle=toc] .nav>li>a:focus,nav[data-toggle=toc] .nav>li>a:hover{padding-left:19px;color:#563d7c;text-decoration:none;background-color:transparent;border-left:1px solid #563d7c}nav[data-toggle=toc] .nav-link.active,nav[data-toggle=toc] .nav-link.active:focus,nav[data-toggle=toc] .nav-link.active:hover{padding-left:18px;font-weight:700;color:#563d7c;background-color:transparent;border-left:2px solid #563d7c}nav[data-toggle=toc] .nav-link+ul{display:none;padding-bottom:10px}nav[data-toggle=toc] .nav .nav>li>a{padding-top:1px;padding-bottom:1px;padding-left:30px;font-size:12px;font-weight:400}nav[data-toggle=toc] .nav .nav>li>a:focus,nav[data-toggle=toc] .nav .nav>li>a:hover{padding-left:29px}nav[data-toggle=toc] .nav .nav>li>.active,nav[data-toggle=toc] .nav .nav>li>.active:focus,nav[data-toggle=toc] .nav .nav>li>.active:hover{padding-left:28px;font-weight:500}nav[data-toggle=toc] .nav-link.active+ul{display:block}
|
||||
7
assets/css/bootstrap/bootstrap.min.css
vendored
Normal file
1
assets/css/bootstrap/bootstrap.min.css.map
Normal file
8
assets/css/colors.css
Normal file
@@ -0,0 +1,8 @@
|
||||
:root {
|
||||
--main-color: #28a745;
|
||||
--nav-bg-color: #343a40;
|
||||
--footer-bg-color: #dbdbdb;
|
||||
--footer-color: #99979c;
|
||||
--link-color: var(--main-color);
|
||||
--link-color-hover: #1C7330;
|
||||
}
|
||||
28
assets/css/components/nav.css
Normal file
@@ -0,0 +1,28 @@
|
||||
/* CSS for toc sidebar */
|
||||
|
||||
nav[data-toggle='toc'] {
|
||||
padding-top: 28px;
|
||||
}
|
||||
|
||||
nav[data-toggle='toc'] .nav > li > a:hover,
|
||||
nav[data-toggle='toc'] .nav-link.active,
|
||||
nav[data-toggle='toc'] .nav-link.active:focus,
|
||||
nav[data-toggle='toc'] .nav-link.active:hover,
|
||||
nav[data-toggle='toc'] .nav > li > a:focus {
|
||||
color: var(--main-color);
|
||||
border-left: 1px solid var(--main-color);
|
||||
}
|
||||
nav[data-toggle='toc'] .nav > .active > a,
|
||||
nav[data-toggle='toc'] .nav > .active:hover > a,
|
||||
nav[data-toggle='toc'] .nav > .active:focus > a {
|
||||
color: var(--main-color);
|
||||
border-left: 2px solid var(--main-color);
|
||||
}
|
||||
|
||||
/* small screens */
|
||||
@media (max-width: 768px) {
|
||||
/* override the Affix plugin so that the navigation isn't sticky */
|
||||
nav.affix[data-toggle='toc'] {
|
||||
position: static;
|
||||
}
|
||||
}
|
||||
72
assets/css/components/syntax.css
Normal file
@@ -0,0 +1,72 @@
|
||||
.highlight, pre.highlight {
|
||||
background: #282c34;
|
||||
color: #abb2bf;
|
||||
border: 0;
|
||||
padding: 5px;
|
||||
border-radius: 3px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.highlight pre { background: #282c34 }
|
||||
.highlight .hll { background: #282c34 }
|
||||
.highlight .c { color: #5c6370; font-style: italic }
|
||||
.highlight .err { color: #960050; background-color: #1e0010 }
|
||||
.highlight .k { color: #c678dd }
|
||||
.highlight .l { color: #98c379 }
|
||||
.highlight .n { color: #abb2bf }
|
||||
.highlight .o { color: #abb2bf }
|
||||
.highlight .p { color: #abb2bf }
|
||||
.highlight .cm { color: #5c6370; font-style: italic }
|
||||
.highlight .cp { color: #5c6370; font-style: italic }
|
||||
.highlight .c1 { color: #5c6370; font-style: italic }
|
||||
.highlight .cs { color: #5c6370; font-style: italic }
|
||||
.highlight .ge { font-style: italic }
|
||||
.highlight .gs { font-weight: 700 }
|
||||
.highlight .kc { color: #c678dd }
|
||||
.highlight .kd { color: #c678dd }
|
||||
.highlight .kn { color: #c678dd }
|
||||
.highlight .kp { color: #c678dd }
|
||||
.highlight .kr { color: #c678dd }
|
||||
.highlight .kt { color: #c678dd }
|
||||
.highlight .ld { color: #98c379 }
|
||||
.highlight .m { color: #d19a66 }
|
||||
.highlight .s { color: #98c379 }
|
||||
.highlight .na { color: #d19a66 }
|
||||
.highlight .nb { color: #e5c07b }
|
||||
.highlight .nc { color: #e5c07b }
|
||||
.highlight .no { color: #e5c07b }
|
||||
.highlight .nd { color: #e5c07b }
|
||||
.highlight .ni { color: #e5c07b }
|
||||
.highlight .ne { color: #e5c07b }
|
||||
.highlight .nf { color: #abb2bf }
|
||||
.highlight .nl { color: #e5c07b }
|
||||
.highlight .nn { color: #abb2bf }
|
||||
.highlight .nx { color: #abb2bf }
|
||||
.highlight .py { color: #e5c07b }
|
||||
.highlight .nt { color: #e06c75 }
|
||||
.highlight .nv { color: #e5c07b }
|
||||
.highlight .ow { color: #c678dd;/* font-weight: 700 */}
|
||||
.highlight .w { color: #f8f8f2 }
|
||||
.highlight .mf { color: #d19a66 }
|
||||
.highlight .mh { color: #d19a66 }
|
||||
.highlight .mi { color: #d19a66 }
|
||||
.highlight .mo { color: #d19a66 }
|
||||
.highlight .sb { color: #98c379 }
|
||||
.highlight .sc { color: #98c379 }
|
||||
.highlight .sd { color: #98c379 }
|
||||
.highlight .s2 { color: #98c379 }
|
||||
.highlight .se { color: #98c379 }
|
||||
.highlight .sh { color: #98c379 }
|
||||
.highlight .si { color: #98c379 }
|
||||
.highlight .sx { color: #98c379 }
|
||||
.highlight .sr { color: #56b6c2 }
|
||||
.highlight .s1 { color: #98c379 }
|
||||
.highlight .ss { color: #56b6c2 }
|
||||
.highlight .bp { color: #e5c07b }
|
||||
.highlight .vc { color: #e5c07b }
|
||||
.highlight .vg { color: #e5c07b }
|
||||
.highlight .vi { color: #e06c75 }
|
||||
.highlight .il { color: #d19a66 }
|
||||
.highlight .gu { color: #75715e }
|
||||
.highlight .gd { color: #f92672 }
|
||||
.highlight .gi { color: #a6e22e }
|
||||
64
assets/css/components/syntaxOld.css
Normal file
@@ -0,0 +1,64 @@
|
||||
.highlight .hll, .highlight pre { background-color: #272822; border: 0; padding: 5px; border-radius: 3px; padding-left: 10px;}
|
||||
.highlight .c { color: #75715e } /* Comment */
|
||||
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
|
||||
.highlight .k { color: #66d9ef } /* Keyword */
|
||||
.highlight .l { color: #ae81ff } /* Literal */
|
||||
.highlight .n { color: #f8f8f2 } /* Name */
|
||||
.highlight .o { color: #f92672 } /* Operator */
|
||||
.highlight .p { color: #f8f8f2 } /* Punctuation */
|
||||
.highlight .cm { color: #75715e } /* Comment.Multiline */
|
||||
.highlight .cp { color: #75715e } /* Comment.Preproc */
|
||||
.highlight .c1 { color: #75715e } /* Comment.Single */
|
||||
.highlight .cs { color: #75715e } /* Comment.Special */
|
||||
.highlight .ge { font-style: italic } /* Generic.Emph */
|
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
||||
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
|
||||
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
|
||||
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
|
||||
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
|
||||
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
|
||||
.highlight .kt { color: #66d9ef } /* Keyword.Type */
|
||||
.highlight .ld { color: #e6db74 } /* Literal.Date */
|
||||
.highlight .m { color: #ae81ff } /* Literal.Number */
|
||||
.highlight .s { color: #e6db74 } /* Literal.String */
|
||||
.highlight .na { color: #a6e22e } /* Name.Attribute */
|
||||
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
|
||||
.highlight .nc { color: #a6e22e } /* Name.Class */
|
||||
.highlight .no { color: #66d9ef } /* Name.Constant */
|
||||
.highlight .nd { color: #a6e22e } /* Name.Decorator */
|
||||
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
|
||||
.highlight .ne { color: #a6e22e } /* Name.Exception */
|
||||
.highlight .nf { color: #a6e22e } /* Name.Function */
|
||||
.highlight .nl { color: #f8f8f2 } /* Name.Label */
|
||||
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
|
||||
.highlight .nx { color: #a6e22e } /* Name.Other */
|
||||
.highlight .py { color: #f8f8f2 } /* Name.Property */
|
||||
.highlight .nt { color: #f92672 } /* Name.Tag */
|
||||
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
|
||||
.highlight .ow { color: #f92672 } /* Operator.Word */
|
||||
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
|
||||
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
|
||||
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
|
||||
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
|
||||
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
|
||||
.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
|
||||
.highlight .sc { color: #e6db74 } /* Literal.String.Char */
|
||||
.highlight .sd { color: #e6db74 } /* Literal.String.Doc */
|
||||
.highlight .s2 { color: #e6db74 } /* Literal.String.Double */
|
||||
.highlight .se { color: #ae81ff } /* Literal.String.Escape */
|
||||
.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
|
||||
.highlight .si { color: #e6db74 } /* Literal.String.Interpol */
|
||||
.highlight .sx { color: #e6db74 } /* Literal.String.Other */
|
||||
.highlight .sr { color: #e6db74 } /* Literal.String.Regex */
|
||||
.highlight .s1 { color: #e6db74 } /* Literal.String.Single */
|
||||
.highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
|
||||
.highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
||||
.highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
|
||||
.highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
|
||||
.highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
||||
.highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
||||
|
||||
.highlight .gh { } /* Generic Heading & Diff Header */
|
||||
.highlight .gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */
|
||||
.highlight .gd { color: #f92672; } /* Generic.Deleted & Diff Deleted */
|
||||
.highlight .gi { color: #a6e22e; } /* Generic.Inserted & Diff Inserted */
|
||||
114
assets/css/components/theme.css
Normal file
@@ -0,0 +1,114 @@
|
||||
@import url("../colors.css");
|
||||
@import url("syntax.css");
|
||||
@import url("nav.css");
|
||||
|
||||
#navbarTop {
|
||||
background-color: var(--nav-bg-color) !important;
|
||||
min-height: 3.5rem;
|
||||
}
|
||||
|
||||
.jumbotron {
|
||||
background:var(--main-color);
|
||||
background: -moz-linear-gradient(-45deg,var(--main-color) 0%, var(--main-color) 100%);
|
||||
background: -webkit-gradient(left top, right bottom, color-stop(0%,var(--main-color)), color-stop(100%, var(--main-color)));
|
||||
background: -webkit-linear-gradient(-45deg,var(--main-color) 0%, var(--main-color) 100%);
|
||||
background: -o-linear-gradient(-45deg,var(--main-color) 0%, var(--main-color) 100%);
|
||||
background: -ms-linear-gradient(-45deg,var(--main-color) 0%, var(--main-color) 100%);
|
||||
background: linear-gradient(135deg,var(--main-color) 0%, var(--main-color) 100%);
|
||||
color: #FFFFFF;
|
||||
}
|
||||
|
||||
img {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
max-height: 80%;
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-weight: 500;
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
.mdg-nav {
|
||||
font-size: .9rem;
|
||||
}
|
||||
|
||||
.page-header {
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.list-group {
|
||||
padding: 4rem 0;
|
||||
}
|
||||
|
||||
.page-header .anchorjs-link {
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
h1 .anchorjs-link {
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
h2 .anchorjs-link {
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
h3 .anchorjs-link {
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
h4 .anchorjs-link {
|
||||
text-decoration: none
|
||||
}
|
||||
|
||||
.site-footer {
|
||||
padding-top: 2.5rem;
|
||||
padding-bottom: 1.8rem;
|
||||
margin-top: 2.5rem;
|
||||
height: 8.5rem;
|
||||
color: var(--footer-color);
|
||||
background-color: var(--footer-bg-color);
|
||||
}
|
||||
|
||||
.site-footer a {
|
||||
color: var(--link-color);
|
||||
}
|
||||
|
||||
.footnotes {
|
||||
margin-top: 40px;
|
||||
padding-top: 20px;
|
||||
border-top-width: 1px;
|
||||
border-top-style: solid;
|
||||
border-top-color: rgb(238, 238, 238);
|
||||
}
|
||||
|
||||
.highlight {
|
||||
padding-top: 1rem;
|
||||
padding-right: 1rem;
|
||||
padding-left: 1rem;
|
||||
padding-bottom: 1px;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
background: #f9f9f9;
|
||||
border-left: .8rem solid #ccc;
|
||||
margin: 1.5em 1rem;
|
||||
padding: 1em .8rem 0.1em .8rem;
|
||||
quotes: "\201C""\201D""\2018""\2019";
|
||||
}
|
||||
|
||||
a {
|
||||
color: var(--link-color);
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: var(--link-color-hover);
|
||||
}
|
||||
|
||||
.MJX_LiveRegion {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
||||
37
assets/css/default.css
Normal file
@@ -0,0 +1,37 @@
|
||||
@import url("components/theme.css");
|
||||
|
||||
.jumbotron {
|
||||
margin-bottom: 1.25rem;
|
||||
border-radius: 0;
|
||||
height: 12.5rem;
|
||||
}
|
||||
|
||||
.jumbotron h1 {
|
||||
font-weight: 300;
|
||||
font-size: 3.2rem;
|
||||
margin-top: -2.8rem;
|
||||
}
|
||||
|
||||
.jumbotron p {
|
||||
padding: 0.4rem 0 0 0;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 300;
|
||||
margin-bottom: 0.6rem;
|
||||
}
|
||||
|
||||
@media(max-width: 576px) {
|
||||
.jumbotron p {
|
||||
padding: 0.4rem 0 0 0;
|
||||
font-size: 1rem;
|
||||
font-weight: 300;
|
||||
margin-bottom: 0.6rem;
|
||||
}
|
||||
.jumbotron h1 {
|
||||
font-size: 3.2rem;
|
||||
margin-top: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
#main {
|
||||
min-height: calc(100vh - 28.25rem);
|
||||
}
|
||||
60
assets/css/home.css
Normal file
@@ -0,0 +1,60 @@
|
||||
@import url("components/theme.css");
|
||||
|
||||
|
||||
|
||||
.jumbotron {
|
||||
padding: 5.5rem 0 5rem 0;
|
||||
border-radius: 0;
|
||||
min-height: 20rem;
|
||||
}
|
||||
|
||||
.jumbotron .container {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.jumbotron p {
|
||||
padding: 2.5rem 0 0 0;
|
||||
font-size: 1.75rem;
|
||||
font-weight: 300;
|
||||
width: 85%;
|
||||
text-align: center;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
|
||||
#main {
|
||||
min-height: calc(100vh - 47.75rem);
|
||||
}
|
||||
|
||||
.home-link>a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.icon {
|
||||
font-size: 5rem;
|
||||
height: 6rem;
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
.homepage-main {
|
||||
padding-top: 1.875rem;
|
||||
padding-bottom: 2.5rem;
|
||||
font-size: 1rem;
|
||||
line-height: 1.5;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.col-sm-4 p {
|
||||
font-size: 1rem;
|
||||
font-weight: 300;
|
||||
color: #555;
|
||||
width: 95%;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
||||
37
assets/css/page.css
Normal file
@@ -0,0 +1,37 @@
|
||||
@import url("components/theme.css");
|
||||
|
||||
.jumbotron {
|
||||
margin-bottom: 1.25rem;
|
||||
border-radius: 0;
|
||||
min-height: 12.5rem;
|
||||
}
|
||||
|
||||
.jumbotron h1 {
|
||||
font-weight: 300;
|
||||
font-size: 3.2rem;
|
||||
margin-top: -2.8rem;
|
||||
}
|
||||
|
||||
.jumbotron p {
|
||||
padding: 0.4rem 0 0 0;
|
||||
font-size: 1.5rem;
|
||||
font-weight: 300;
|
||||
margin-bottom: 0.6rem;
|
||||
}
|
||||
|
||||
@media(max-width: 576px) {
|
||||
.jumbotron p {
|
||||
padding: 0.4rem 0 0 0;
|
||||
font-size: 1rem;
|
||||
font-weight: 300;
|
||||
margin-bottom: 0.6rem;
|
||||
}
|
||||
.jumbotron h1 {
|
||||
font-size: 3.2rem;
|
||||
margin-top: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
#main {
|
||||
min-height: calc(100vh - 28.25rem);
|
||||
}
|
||||
BIN
assets/favicons/android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 4.9 KiB |
BIN
assets/favicons/android-chrome-512x512.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
assets/favicons/apple-touch-icon-120x120-precomposed.png
Normal file
|
After Width: | Height: | Size: 2.3 KiB |
BIN
assets/favicons/apple-touch-icon-120x120.png
Normal file
|
After Width: | Height: | Size: 2.1 KiB |
BIN
assets/favicons/apple-touch-icon-152x152-precomposed.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
assets/favicons/apple-touch-icon-152x152.png
Normal file
|
After Width: | Height: | Size: 2.7 KiB |
BIN
assets/favicons/apple-touch-icon-180x180-precomposed.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
assets/favicons/apple-touch-icon-180x180.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
assets/favicons/apple-touch-icon-60x60-precomposed.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
assets/favicons/apple-touch-icon-60x60.png
Normal file
|
After Width: | Height: | Size: 1.0 KiB |
BIN
assets/favicons/apple-touch-icon-76x76-precomposed.png
Normal file
|
After Width: | Height: | Size: 1.5 KiB |
BIN
assets/favicons/apple-touch-icon-76x76.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
assets/favicons/apple-touch-icon-precomposed.png
Normal file
|
After Width: | Height: | Size: 3.8 KiB |
BIN
assets/favicons/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
9
assets/favicons/browserconfig.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/assets/favicons/mstile-150x150.png"/>
|
||||
<TileColor>#da532c</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
||||
</browserconfig>
|
||||
BIN
assets/favicons/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 707 B |
BIN
assets/favicons/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
assets/favicons/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
assets/favicons/mstile-150x150.png
Normal file
|
After Width: | Height: | Size: 3.4 KiB |
1
assets/favicons/safari-pinned-tab.svg
Normal file
@@ -0,0 +1 @@
|
||||
<svg version="1" xmlns="http://www.w3.org/2000/svg" width="838.667" height="838.667" viewBox="0 0 629.000000 629.000000"><path d="M188.5 54.9c-2.7 1-7.2 2.8-9.9 4-3.1 1.4-8.7 2.5-15.5 3.2-25.9 2.4-32.1 3.1-40.2 4.9-32.9 7.1-63.7 26.1-99.1 61L9.2 142.5l-2.6 11C-2.3 192.6.5 250 14.5 313.1 33.3 397.4 67.9 475 110.8 529c9 11.3 33.2 35.7 41.8 42.1l6.1 4.5 8.4-.8c38.8-3.9 82.8-18.9 126.6-43.4 8.7-4.8 17.4-9.7 19.3-10.7 2.6-1.5 5.2-4.8 9.9-12.8l6.4-10.7 5.6-1.1c26.9-5.1 106.1-20.4 107.8-20.8 1.9-.4 2.2 0 2.8 4.1.4 2.6 1.1 4.9 1.6 5.2.5.2 12.2-4.2 26.1-9.9l25.2-10.3 4-9.9 4-10 1.5 4.8c.8 2.6 1.8 4.7 2.2 4.7 1.8 0 50.5-21.8 65.3-29.2 19.4-9.7 29-15.1 42.2-23.9l10.2-6.8-.9-4.8c-3.5-18.2-10-59.1-11.3-70.8-.9-7.7-2-22.1-2.5-32-.5-9.9-1.4-19.1-1.9-20.5-.5-1.4-2.5-4-4.3-5.8-2.5-2.4-4.2-3.2-7-3.2-5.4 0-18.1 2.5-38.7 7.7-10.4 2.6-18.7 4.2-19.2 3.7-.4-.5-7.4-15.5-15.6-33.4-8.1-17.9-15.2-32.8-15.8-33.2-.6-.4-15.3-7.1-32.7-14.9l-31.6-14.1-8.9-27.9c-6.3-19.8-9.3-27.8-10.2-27.4-1.8.7-100.5 27.8-113.6 31.2l-10.9 2.8-11.6 12.5c-6.3 6.9-11.8 12.6-12.1 12.7-.3.2-1.4-1.8-2.4-4.5-11.4-28.2-29.4-57.6-44.6-73-5-5-7.5-8.8-12.5-19-7.8-15.5-12.6-22-18.5-25-5.3-2.6-6.1-2.7-12.5-.3zm-22.1 17.3c-6.2 15.5-7.8 26.3-7.8 51.8 0 18.1.5 25.3 2.3 37 10.5 68.7 38.5 148.8 83.3 238 21.9 43.9 42 78.5 61.8 106.8l7.9 11.2-3.7 2.4c-8.2 5.1-28.4 16.1-40.8 22.1-34 16.4-68.2 26.9-100.1 30.7l-10.2 1.1-7.3-5.8c-9.9-8-28.6-26.9-38-38.5-48.6-60.4-88-155.3-103.3-249-7.5-46-8.6-92.9-2.9-120.5 3.2-15.5 3.9-16.7 15.3-27.8 39.4-38.2 70.2-56.9 104.2-63.2 6.9-1.3 30.6-3.8 40.5-4.4 2-.1 2 .2-1.2 8.1z"/><path d="M92.5 171.6c-1.1.2-4.5.9-7.5 1.5-6.9 1.4-19.8 7.3-28 12.9-13.6 9.2-28.2 25.4-34.1 37.7-4.5 9.5-5.2 15.2-3.9 33.5 3 43.6 15.9 88.2 39 134.6 14.1 28.2 19.1 34.7 31.5 41 11.6 5.8 30 7.4 43.5 3.8 27.2-7.3 47.4-28.2 51.1-52.9 1.4-9.6 1-11.3-17.7-64-19.2-54.2-33.1-95.6-40.4-120.2-6.5-21.9-7.7-23.9-15.9-26.4-4.4-1.3-14.7-2.2-17.6-1.5zm10 120.8c5.5 2.5 9.3 6.4 12.8 13 1.7 3.2 2.2 5.8 2.2 12.1 0 6.9-.4 8.6-2.7 12.7-3.8 6.3-8.7 9.2-15.8 9.3-20.5.1-33-28.9-18.7-43.5 6.2-6.4 13.7-7.6 22.2-3.6z"/></svg>
|
||||
|
After Width: | Height: | Size: 2.0 KiB |
18
assets/favicons/site.webmanifest
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "GLaDOS",
|
||||
"short_name": "GLaDOS",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/assets/favicons/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/assets/favicons/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff"
|
||||
}
|
||||
239
assets/icons/glados.svg
Normal file
|
After Width: | Height: | Size: 872 KiB |
9
assets/js/anchor.min.js
vendored
Normal file
5
assets/js/bootstrap-toc.min.js
vendored
Normal file
@@ -0,0 +1,5 @@
|
||||
/*!
|
||||
* Bootstrap Table of Contents v1.0.1 (http://afeld.github.io/bootstrap-toc/)
|
||||
* Copyright 2015 Aidan Feldman
|
||||
* Licensed under MIT (https://github.com/afeld/bootstrap-toc/blob/gh-pages/LICENSE.md) */
|
||||
!function(a){"use strict";window.Toc={helpers:{findOrFilter:function(e,t){var n=e.find(t);return e.filter(t).add(n).filter(":not([data-toc-skip])")},generateUniqueIdBase:function(e){return a(e).text().trim().replace(/\'/gi,"").replace(/[& +$,:;=?@"#{}|^~[`%!'<>\]\.\/\(\)\*\\\n\t\b\v]/g,"-").replace(/-{2,}/g,"-").substring(0,64).replace(/^-+|-+$/gm,"").toLowerCase()||e.tagName.toLowerCase()},generateUniqueId:function(e){for(var t=this.generateUniqueIdBase(e),n=0;;n++){var r=t;if(0<n&&(r+="-"+n),!document.getElementById(r))return r}},generateAnchor:function(e){if(e.id)return e.id;var t=this.generateUniqueId(e);return e.id=t},createNavList:function(){return a('<ul class="nav navbar-nav"></ul>')},createChildNavList:function(e){var t=this.createNavList();return e.append(t),t},generateNavEl:function(e,t){var n=a('<a class="nav-link"></a>');n.attr("href","#"+e),n.text(t);var r=a("<li></li>");return r.append(n),r},generateNavItem:function(e){var t=this.generateAnchor(e),n=a(e),r=n.data("toc-text")||n.text();return this.generateNavEl(t,r)},getTopLevel:function(e){for(var t=1;t<=6;t++){if(1<this.findOrFilter(e,"h"+t).length)return t}return 1},getHeadings:function(e,t){var n="h"+t,r="h"+(t+1);return this.findOrFilter(e,n+","+r)},getNavLevel:function(e){return parseInt(e.tagName.charAt(1),10)},populateNav:function(r,a,e){var i,s=r,c=this;e.each(function(e,t){var n=c.generateNavItem(t);c.getNavLevel(t)===a?s=r:i&&s===r&&(s=c.createChildNavList(i)),s.append(n),i=n})},parseOps:function(e){var t;return(t=e.jquery?{$nav:e}:e).$scope=t.$scope||a(document.body),t}},init:function(e){(e=this.helpers.parseOps(e)).$nav.attr("data-toggle","toc");var t=this.helpers.createChildNavList(e.$nav),n=this.helpers.getTopLevel(e.$scope),r=this.helpers.getHeadings(e.$scope,n);this.helpers.populateNav(t,n,r)}},a(function(){a('nav[data-toggle="toc"]').each(function(e,t){var n=a(t);Toc.init(n)})})}(jQuery);
|
||||