jekyll-theme-staffplus 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +661 -0
- data/README.md +30 -0
- data/_includes/footer.html +29 -0
- data/_includes/google-analytics.html +10 -0
- data/_includes/head.html +56 -0
- data/_includes/header.html +21 -0
- data/_layouts/default.html +13 -0
- data/_layouts/home.html +5 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_layouts/posts.html +17 -0
- data/_sass/_dark.scss +32 -0
- data/_sass/_light.scss +32 -0
- data/_sass/site.scss +158 -0
- data/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/fontawesome-webfont.woff +0 -0
- data/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/images/android-chrome-192x192.png +0 -0
- data/assets/images/android-chrome-256x256.png +0 -0
- data/assets/images/apple-touch-icon.png +0 -0
- data/assets/images/browserconfig.xml +9 -0
- data/assets/images/favicon-16x16.png +0 -0
- data/assets/images/favicon-32x32.png +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/logo.svg +48 -0
- data/assets/images/mstile-150x150.png +0 -0
- data/assets/images/safari-pinned-tab.svg +29 -0
- data/assets/site.webmanifest +19 -0
- data/assets/styles/font-awesome.min.css +4 -0
- data/assets/styles/site.scss +10 -0
- metadata +32 -2
data/README.md
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# jekyll-theme-staffplus
|
2
|
+
|
3
|
+
Jekyll theme for [StaffPlus](https://staffplus.dev).
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your Jekyll site's `Gemfile`:
|
8
|
+
|
9
|
+
```ruby
|
10
|
+
gem "jekyll-theme-staffplus"
|
11
|
+
```
|
12
|
+
|
13
|
+
And add this line to your Jekyll site's `_config.yml`:
|
14
|
+
|
15
|
+
```yaml
|
16
|
+
theme: jekyll-theme-staffplus
|
17
|
+
```
|
18
|
+
|
19
|
+
And then execute:
|
20
|
+
|
21
|
+
$ bundle
|
22
|
+
|
23
|
+
Or install it yourself as:
|
24
|
+
|
25
|
+
$ gem install jekyll-theme-staffplus
|
26
|
+
|
27
|
+
## License
|
28
|
+
|
29
|
+
[AGPLv3](LICENSE)
|
30
|
+
|
@@ -0,0 +1,29 @@
|
|
1
|
+
{%- assign page_paths = site.footer_nav_pages -%}
|
2
|
+
<footer>
|
3
|
+
<div class="menu">
|
4
|
+
<span class="nav">
|
5
|
+
<ul>
|
6
|
+
{%- for path in page_paths -%}
|
7
|
+
{%- assign nav_page = site.pages | where: "path", path | first -%}
|
8
|
+
{%- if nav_page.title -%}
|
9
|
+
<li><a href="{{ nav_page.url | relative_url }}">{{ nav_page.nav | escape }}</a></li>
|
10
|
+
{%- endif -%}
|
11
|
+
{%- endfor -%}
|
12
|
+
</ul>
|
13
|
+
</span>
|
14
|
+
</div>
|
15
|
+
<div class="social">
|
16
|
+
<ul>
|
17
|
+
{% for entry in site.data.social %}
|
18
|
+
<li><a href="{{ entry.link }}" target="_blank" title="{{ entry.title }}"><span class="{{ entry.class }}"></span></a></li>
|
19
|
+
{% endfor %}
|
20
|
+
</ul>
|
21
|
+
</div>
|
22
|
+
<div class="credits">
|
23
|
+
<div>© 2021 - {{ site.time | date: '%Y' }} {{ site.author }}</div>
|
24
|
+
<div>Code for this website can be found <a href="https://github.com/staffplus/site">here</a>.</div>
|
25
|
+
<div>
|
26
|
+
{{ site.author }} LLC. All rights reserved.
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
</footer>
|
@@ -0,0 +1,10 @@
|
|
1
|
+
<script>
|
2
|
+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
3
|
+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
4
|
+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
5
|
+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
|
6
|
+
|
7
|
+
ga('create', '{{ site.ga_tracking_id }}', 'auto');
|
8
|
+
ga('send', 'pageview');
|
9
|
+
|
10
|
+
</script>
|
data/_includes/head.html
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
<head>
|
2
|
+
<meta charset="utf-8" lang="en">
|
3
|
+
<meta http-equiv="Content-Security-Policy" content="default-src 'none'; script-src 'self'; style-src 'self' https://fonts.googleapis.com; img-src https://mermaid.ink/ 'self'; font-src 'self' https://fonts.gstatic.com; connect-src 'self'; media-src 'self'; object-src 'self'; manifest-src 'self'; child-src 'self'; frame-src 'self' https://docs.google.com; form-action https://getform.io; base-uri 'self'" />
|
4
|
+
<meta http-equiv="X-XSS-Protection" content="1;mode=block" always>
|
5
|
+
<meta http-equiv="Referrer-Policy" content="no-referrer, strict-origin-when-cross-origin">
|
6
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
7
|
+
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
|
9
|
+
<meta name="author" content="{{ site.author }}">
|
10
|
+
<meta name="generator" content="jekyll">
|
11
|
+
{% if page.date %}
|
12
|
+
<meta name="dcterms.date" content="{{ page.date }}">
|
13
|
+
{% endif %}
|
14
|
+
{% if page.keywords %}
|
15
|
+
<meta name="keywords" content="{{ page.keywords | join: ' ' }}">
|
16
|
+
{% endif %}
|
17
|
+
|
18
|
+
{% if page.canonical %}
|
19
|
+
<link rel="canonical" href="{{ page.canonical }}" />
|
20
|
+
{% else %}
|
21
|
+
<link rel="canonical" href="{{ page.url | absolute_url }}" />
|
22
|
+
{% endif %}
|
23
|
+
|
24
|
+
{% if page.tagline %}
|
25
|
+
<title>{{ page.tagline }} | {{ site.title }}</title>
|
26
|
+
{% else %}
|
27
|
+
<title>{{ page.title | capitalize }} | {{ site.title }}</title>
|
28
|
+
{% endif %}
|
29
|
+
|
30
|
+
<!-- CSS -->
|
31
|
+
<link rel="stylesheet" href="/assets/styles/font-awesome.min.css"/>
|
32
|
+
<link rel="stylesheet" href="/assets/styles/site.css">
|
33
|
+
|
34
|
+
<!-- Icons -->
|
35
|
+
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/apple-touch-icon.png">
|
36
|
+
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/favicon-32x32.png">
|
37
|
+
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/favicon-16x16.png">
|
38
|
+
<link rel="shortcut icon" href="/assets/images/favicon.ico">
|
39
|
+
|
40
|
+
<link rel="manifest" href="/assets/site.webmanifest">
|
41
|
+
|
42
|
+
<meta name="msapplication-TileColor" content="#2d89ef">
|
43
|
+
<meta name="msapplication-config" content="/assets/browserconfig.xml">
|
44
|
+
<meta name="theme-color" content="#ffffff">
|
45
|
+
|
46
|
+
<!-- RSS -->
|
47
|
+
{% feed_meta %}
|
48
|
+
|
49
|
+
<!-- Google Analytics -->
|
50
|
+
{% if jekyll.environment == "production" and site.ga_tracking_id %}
|
51
|
+
{% include google-analytics.html %}
|
52
|
+
{% endif %}
|
53
|
+
|
54
|
+
<!-- SEO -->
|
55
|
+
{% seo %}
|
56
|
+
</head>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
{%- assign page_paths = site.header_nav_pages -%}
|
2
|
+
<header>
|
3
|
+
<div class="menu">
|
4
|
+
<span class="logo">
|
5
|
+
<a href="{{ site.url }}"><img src="assets/images/logo.svg" class="logo"></a>
|
6
|
+
</span>
|
7
|
+
<span class="prompt">
|
8
|
+
<a href="{{ site.url }}">{{ site.url | remove: 'http://' | remove: 'https://' }}</a>:<a href="{{ site.url }}{{ page.url }}">{{ page.term }}</a>
|
9
|
+
</span>
|
10
|
+
<span class="nav">
|
11
|
+
<ul>
|
12
|
+
{%- for path in page_paths -%}
|
13
|
+
{%- assign nav_page = site.pages | where: "path", path | first -%}
|
14
|
+
{%- if nav_page.title -%}
|
15
|
+
<li><a href="{{ nav_page.url | relative_url }}">{{ nav_page.nav | escape }}</a></li>
|
16
|
+
{%- endif -%}
|
17
|
+
{%- endfor -%}
|
18
|
+
</ul>
|
19
|
+
</span>
|
20
|
+
</div>
|
21
|
+
</header>
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
|
3
|
+
{%- include head.html -%}
|
4
|
+
<body>
|
5
|
+
<div class="container">
|
6
|
+
{%- include header.html -%}
|
7
|
+
<main>
|
8
|
+
{{ content }}
|
9
|
+
</main>
|
10
|
+
{%- include footer.html -%}
|
11
|
+
</div>
|
12
|
+
</body>
|
13
|
+
</html>
|
data/_layouts/home.html
ADDED
data/_layouts/page.html
ADDED
data/_layouts/post.html
ADDED
data/_layouts/posts.html
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
{{ content }}
|
6
|
+
{% assign contentwonl = content | strip_newlines %} {% unless contentwonl == "" %} <br /> {% endunless %} <!-- add line break if there is any content -->
|
7
|
+
|
8
|
+
{%- if site.posts.size > 0 -%}
|
9
|
+
<ul>
|
10
|
+
{%- for post in site.posts -%}
|
11
|
+
<li>
|
12
|
+
{%- assign date_format = "%Y-%m-%d" -%}
|
13
|
+
[ {{ post.date | date: date_format }} ] <a href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
|
14
|
+
</li>
|
15
|
+
{%- endfor -%}
|
16
|
+
</ul>
|
17
|
+
{%- endif -%}
|
data/_sass/_dark.scss
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
/**
|
2
|
+
* Dark theme variables
|
3
|
+
*/
|
4
|
+
|
5
|
+
:root {
|
6
|
+
--base-color: #DBDBDB;
|
7
|
+
--border: dashed 1px rgba(219, 219, 219, 0.9);
|
8
|
+
--selection-background: rgba(219, 219, 219, 0.99);
|
9
|
+
--selection-text: #000;
|
10
|
+
--background-color: #000;
|
11
|
+
--text-color: var(--base-color);
|
12
|
+
--placeholder-color: var(--base-color);
|
13
|
+
--link-color: var(--base-color);
|
14
|
+
--code-color-1: #aaaaaa;
|
15
|
+
--code-color-2: #ffffcc;
|
16
|
+
--code-color-3: #F00000;
|
17
|
+
--code-color-4: #F0A0A0;
|
18
|
+
--code-color-5: #b38aff;
|
19
|
+
--code-color-6: #5ba711;
|
20
|
+
--code-color-7: #e4e477;
|
21
|
+
--code-color-8: #000080;
|
22
|
+
--code-color-9: #05ca05;
|
23
|
+
--code-color-10: #888888;
|
24
|
+
--code-color-11: #555555;
|
25
|
+
--code-color-12: #800080;
|
26
|
+
--code-color-13: #00d4d4;
|
27
|
+
--code-color-14: #00c1c1;
|
28
|
+
--code-color-15: #ed9d13;
|
29
|
+
--code-color-16: #1e90ff;
|
30
|
+
--code-color-17: #800000;
|
31
|
+
--code-color-18: #bbbbbb;
|
32
|
+
}
|
data/_sass/_light.scss
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
/**
|
2
|
+
* Light theme variables
|
3
|
+
*/
|
4
|
+
|
5
|
+
:root {
|
6
|
+
--base-color: #000;
|
7
|
+
--border: dashed 1px rgba(0, 0, 0, 1);
|
8
|
+
--selection-background: rgba(0, 0, 0, 0.99);
|
9
|
+
--selection-text: #FFF;
|
10
|
+
--background-color: #FFF;
|
11
|
+
--text-color: var(--base-color);
|
12
|
+
--placeholder-color: var(--base-color);
|
13
|
+
--link-color: var(--base-color);
|
14
|
+
--code-color-1: #aaaaaa;
|
15
|
+
--code-color-2: #ffffcc;
|
16
|
+
--code-color-3: #F00000;
|
17
|
+
--code-color-4: #F0A0A0;
|
18
|
+
--code-color-5: #0000aa;
|
19
|
+
--code-color-6: #4c8317;
|
20
|
+
--code-color-7: #aa0000;
|
21
|
+
--code-color-8: #000080;
|
22
|
+
--code-color-9: #00aa00;
|
23
|
+
--code-color-10: #888888;
|
24
|
+
--code-color-11: #555555;
|
25
|
+
--code-color-12: #800080;
|
26
|
+
--code-color-13: #00aaaa;
|
27
|
+
--code-color-14: #009999;
|
28
|
+
--code-color-15: #aa5500;
|
29
|
+
--code-color-16: #1e90ff;
|
30
|
+
--code-color-17: #800000;
|
31
|
+
--code-color-18: #bbbbbb;
|
32
|
+
}
|
data/_sass/site.scss
ADDED
@@ -0,0 +1,158 @@
|
|
1
|
+
@charset "utf-8";
|
2
|
+
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro:400,700');
|
3
|
+
|
4
|
+
/**
|
5
|
+
* Style variables
|
6
|
+
*/
|
7
|
+
$base-font-family: 'Source Code Pro', monospace !default;
|
8
|
+
$base-font-size: 14px !default;
|
9
|
+
$mobile-font-size: 14px !default;
|
10
|
+
$base-line-height: 1.5 !default;
|
11
|
+
$container-width: 90% !default;
|
12
|
+
$container-max-width: 1280px !default;
|
13
|
+
|
14
|
+
/**
|
15
|
+
* Global
|
16
|
+
*/
|
17
|
+
body { background-color: var(--background-color); margin: 0 auto; padding: 0; font-family: $base-font-family; font-size: $base-font-size; color: var(--text-color); text-align: left; line-height: $base-line-height !important; }
|
18
|
+
h1, h2, h3, h4, h5, h6 { font-size: $base-font-size; margin: 0px; margin-top: 22px; font-weight: bold; color: var(--text-color); }
|
19
|
+
p, ul, ol { margin: 0px; color: var(--text-color); }
|
20
|
+
a { text-decoration: underline; color: var(--link-color); }
|
21
|
+
a:hover { color: var(--background-color); background-color: var(--base-color); }
|
22
|
+
@media only screen and (max-device-width: 500px) { * { font-size: $mobile-font-size !important; } }
|
23
|
+
|
24
|
+
/**
|
25
|
+
* Layout
|
26
|
+
*/
|
27
|
+
.container { width: $container-width; max-width: $container-max-width; margin-right: auto; margin-left: auto; }
|
28
|
+
p { word-wrap: break-word; word-break: break-word; white-space: pre-wrap; margin-bottom: 15px; }
|
29
|
+
footer { color: var(--text-color); margin: 25px auto 25px; padding-top: 10px; text-align: right; }
|
30
|
+
header { margin-top: 25px; margin-bottom: 25px; }
|
31
|
+
header p { text-align: left; margin: 0; }
|
32
|
+
|
33
|
+
/**
|
34
|
+
* Highlight/Markup
|
35
|
+
*/
|
36
|
+
::selection { background: var(--selection-background); color: var(--selection-text); }
|
37
|
+
::-moz-selection { background: var(--selection-background); color: var(--selection-text); }
|
38
|
+
|
39
|
+
/**
|
40
|
+
* Lists
|
41
|
+
*/
|
42
|
+
:not(.nav, .social) > ul { list-style: none; padding-left: 0; margin-bottom: 15px; }
|
43
|
+
:not(.nav, .social) > ul { list-style-type: none; }
|
44
|
+
:not(.nav, .social) > ul > li:before { content: "-"; margin-right: 9px; }
|
45
|
+
|
46
|
+
/**
|
47
|
+
* Header/Navigation
|
48
|
+
*/
|
49
|
+
.menu { border-top: var(--border); border-bottom: var(--border); padding-top: 2px; padding-bottom: 2px; }
|
50
|
+
.prompt { text-align: left; float: left; line-height: 20px; }
|
51
|
+
.logo { text-align: left; float: left; line-height: 20px; height: 20px; width: 20px; padding-right: 5px; }
|
52
|
+
.nav ul { padding-left: 0px; list-style-type: none; text-align: right; }
|
53
|
+
.nav ul li { display: inline; margin-left: 10px; }
|
54
|
+
.nav ul li a { text-decoration: none; color: var(--text-color); }
|
55
|
+
.nav ul li a:hover { text-decoration: none; color: var(--background-color); background-color: var(--base-color); }
|
56
|
+
|
57
|
+
/**
|
58
|
+
* Social
|
59
|
+
*/
|
60
|
+
.social { margin-top: 25px; }
|
61
|
+
.social ul { list-style: none; text-align: center; margin: 0 auto; margin-bottom: 0.5rem; padding-inline-start: 0; }
|
62
|
+
.social ul li { display: inline; padding: 0.5rem 0.25rem; margin-bottom: 0.5rem; }
|
63
|
+
.social ul a { background-repeat: repeat; }
|
64
|
+
.social ul a:hover { color: var(--base-color); background-color: var(--background-color); }
|
65
|
+
|
66
|
+
/**
|
67
|
+
* Footer
|
68
|
+
*/
|
69
|
+
.credits { text-align: center; }
|
70
|
+
|
71
|
+
/**
|
72
|
+
* Form
|
73
|
+
*/
|
74
|
+
input, select, textarea { padding: 0; margin: 0; -webkit-appearance: none; -webkit-border-radius: 0; }
|
75
|
+
input[type=text], input[type=email], select, textarea { width: 20%; resize: none; background-color: var(--background-color); color: var(--text-color); caret-color: var(--text-color); font-size: $base-font-size; font-family: $base-font-family; line-height: $base-line-height; }
|
76
|
+
input, select, textarea, textarea::-webkit-input-placeholder { text-indent: 0px; }
|
77
|
+
::placeholder { color: var(--placeholder-color); opacity: 1; }
|
78
|
+
:-ms-input-placeholder { color: var(--placeholder-color); }
|
79
|
+
::-ms-input-placeholder { color: var(--placeholder-color); }
|
80
|
+
input[type=submit] { font-size: $base-font-size; font-family: $base-font-family; line-height: $base-line-height; cursor: pointer; color: var(--link-color); background-color: var(--background-color); margin-top: 10px; margin-bottom: 10px; }
|
81
|
+
input[type=submit]:hover { color: var(--background-color); background-color: var(--base-color); }
|
82
|
+
*:focus { outline: none; }
|
83
|
+
textarea { vertical-align: top; }
|
84
|
+
|
85
|
+
/**
|
86
|
+
* Images
|
87
|
+
*/
|
88
|
+
.mermaid { width: 100%; height: auto; }
|
89
|
+
|
90
|
+
/**
|
91
|
+
* IFrame
|
92
|
+
*/
|
93
|
+
iframe { width: 100%; height: 100vh; overflow: hidden; overflow-x: hidden; overflow-y: hidden; border: none; display: block; }
|
94
|
+
|
95
|
+
/**
|
96
|
+
* Code and syntax highlighting
|
97
|
+
*/
|
98
|
+
.lineno { color: var(--code-color-1); margin-right: 15px; }
|
99
|
+
figure.highlight { margin: 5px 0; }
|
100
|
+
pre { background-color: var(--background-color); border: none; padding: 0; margin: 0; overflow:auto; font-size: $base-font-size; color: var(--text-color); line-height: 1.7 !important; font-family: $base-font-family !important; }
|
101
|
+
.highlight .hll { background-color: var(--code-color-2); }
|
102
|
+
.highlight .c { color: var(--code-color-1); font-style: italic } /* Comment */
|
103
|
+
.highlight .err { color: var(--code-color-3); background-color: var(--code-color-4); } /* Error */
|
104
|
+
.highlight .k { color: var(--code-color-5); } /* Keyword */
|
105
|
+
.highlight .cm { color: var(--code-color-1); font-style: italic } /* Comment.Multiline */
|
106
|
+
.highlight .cp { color: var(--code-color-6); } /* Comment.Preproc */
|
107
|
+
.highlight .c1 { color: var(--code-color-1); font-style: italic } /* Comment.Single */
|
108
|
+
.highlight .cs { color: var(--code-color-5); font-style: italic } /* Comment.Special */
|
109
|
+
.highlight .gd { color: var(--code-color-7); } /* Generic.Deleted */
|
110
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
111
|
+
.highlight .gr { color: var(--code-color-7); } /* Generic.Error */
|
112
|
+
.highlight .gh { color: var(--code-color-8); font-weight: bold } /* Generic.Heading */
|
113
|
+
.highlight .gi { color: var(--code-color-9); } /* Generic.Inserted */
|
114
|
+
.highlight .go { color: var(--code-color-10); } /* Generic.Output */
|
115
|
+
.highlight .gp { color: var(--code-color-11); } /* Generic.Prompt */
|
116
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
117
|
+
.highlight .gu { color: var(--code-color-12); font-weight: bold } /* Generic.Subheading */
|
118
|
+
.highlight .gt { color: var(--code-color-7); } /* Generic.Traceback */
|
119
|
+
.highlight .kc { color: var(--code-color-5); } /* Keyword.Constant */
|
120
|
+
.highlight .kd { color: var(--code-color-5); } /* Keyword.Declaration */
|
121
|
+
.highlight .kn { color: var(--code-color-5); } /* Keyword.Namespace */
|
122
|
+
.highlight .kp { color: var(--code-color-5); } /* Keyword.Pseudo */
|
123
|
+
.highlight .kr { color: var(--code-color-5); } /* Keyword.Reserved */
|
124
|
+
.highlight .kt { color: var(--code-color-13); } /* Keyword.Type */
|
125
|
+
.highlight .m { color: var(--code-color-14); } /* Literal.Number */
|
126
|
+
.highlight .s { color: var(--code-color-15); } /* Literal.String */
|
127
|
+
.highlight .na { color: var(--code-color-16); } /* Name.Attribute */
|
128
|
+
.highlight .nb { color: var(--code-color-13); } /* Name.Builtin */
|
129
|
+
.highlight .nc { color: var(--code-color-9); text-decoration: underline } /* Name.Class */
|
130
|
+
.highlight .no { color: var(--code-color-7); } /* Name.Constant */
|
131
|
+
.highlight .nd { color: var(--code-color-10); } /* Name.Decorator */
|
132
|
+
.highlight .ni { color: var(--code-color-17); font-weight: bold } /* Name.Entity */
|
133
|
+
.highlight .nf { color: var(--code-color-9); } /* Name.Function */
|
134
|
+
.highlight .nn { color: var(--code-color-13); text-decoration: underline } /* Name.Namespace */
|
135
|
+
.highlight .nt { color: var(--code-color-16); font-weight: bold } /* Name.Tag */
|
136
|
+
.highlight .nv { color: var(--code-color-7); } /* Name.Variable */
|
137
|
+
.highlight .ow { color: var(--code-color-5); } /* Operator.Word */
|
138
|
+
.highlight .w { color: var(--code-color-18); } /* Text.Whitespace */
|
139
|
+
.highlight .mf { color: var(--code-color-14); } /* Literal.Number.Float */
|
140
|
+
.highlight .mh { color: var(--code-color-14); } /* Literal.Number.Hex */
|
141
|
+
.highlight .mi { color: var(--code-color-14); } /* Literal.Number.Integer */
|
142
|
+
.highlight .mo { color: var(--code-color-14); } /* Literal.Number.Oct */
|
143
|
+
.highlight .sb { color: var(--code-color-15); } /* Literal.String.Backtick */
|
144
|
+
.highlight .sc { color: var(--code-color-15); } /* Literal.String.Char */
|
145
|
+
.highlight .sd { color: var(--code-color-15); } /* Literal.String.Doc */
|
146
|
+
.highlight .s2 { color: var(--code-color-15); } /* Literal.String.Double */
|
147
|
+
.highlight .se { color: var(--code-color-15); } /* Literal.String.Escape */
|
148
|
+
.highlight .sh { color: var(--code-color-15); } /* Literal.String.Heredoc */
|
149
|
+
.highlight .si { color: var(--code-color-15); } /* Literal.String.Interpol */
|
150
|
+
.highlight .sx { color: var(--code-color-15); } /* Literal.String.Other */
|
151
|
+
.highlight .sr { color: var(--code-color-14); } /* Literal.String.Regex */
|
152
|
+
.highlight .s1 { color: var(--code-color-15); } /* Literal.String.Single */
|
153
|
+
.highlight .ss { color: var(--code-color-5); } /* Literal.String.Symbol */
|
154
|
+
.highlight .bp { color: var(--code-color-13); } /* Name.Builtin.Pseudo */
|
155
|
+
.highlight .vc { color: var(--code-color-7); } /* Name.Variable.Class */
|
156
|
+
.highlight .vg { color: var(--code-color-7); } /* Name.Variable.Global */
|
157
|
+
.highlight .vi { color: var(--code-color-7); } /* Name.Variable.Instance */
|
158
|
+
.highlight .il { color: var(--code-color-14); } /* Literal.Number.Integer.Long */
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,48 @@
|
|
1
|
+
<?xml version="1.0" encoding="iso-8859-1"?>
|
2
|
+
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
4
|
+
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
5
|
+
width="377.343px" height="377.343px" viewBox="0 0 377.343 377.343" style="enable-background:new 0 0 377.343 377.343;"
|
6
|
+
xml:space="preserve">
|
7
|
+
<g>
|
8
|
+
<path d="M301.689,53.505H75.651c-10.876,0-19.725,8.843-19.725,19.713v230.904c0,10.878,8.843,19.727,19.725,19.727h226.039
|
9
|
+
c10.873,0,19.722-8.843,19.722-19.727V73.218C321.406,62.348,312.562,53.505,301.689,53.505z M188.67,141.046
|
10
|
+
c0,6.187-5.021,11.207-11.208,11.207h-29.888v29.889c0,6.193-5.015,11.205-11.206,11.205h-13.067
|
11
|
+
c-6.193,0-11.208-5.012-11.208-11.205v-29.889H82.207c-6.187,0-11.208-5.02-11.208-11.207v-13.073
|
12
|
+
c0-6.186,5.021-11.207,11.208-11.207h29.887V86.884c0-6.187,5.015-11.207,11.208-11.207h13.067c6.191,0,11.206,5.02,11.206,11.207
|
13
|
+
v29.882h29.888c6.187,0,11.208,5.021,11.208,11.207V141.046z M338.677,0H38.662C19.094,0,3.226,15.869,3.226,35.434v306.462
|
14
|
+
c0,19.581,15.869,35.447,35.437,35.447h300.02c19.568,0,35.436-15.866,35.436-35.447V35.434C374.117,15.869,358.25,0,338.677,0z
|
15
|
+
M335.381,304.122c0,18.572-15.113,33.691-33.691,33.691H75.651c-18.576,0-33.695-15.114-33.695-33.691V73.218
|
16
|
+
c0-18.569,15.114-33.688,33.695-33.688h226.039c18.572,0,33.691,15.114,33.691,33.688V304.122z"/>
|
17
|
+
</g>
|
18
|
+
<g>
|
19
|
+
</g>
|
20
|
+
<g>
|
21
|
+
</g>
|
22
|
+
<g>
|
23
|
+
</g>
|
24
|
+
<g>
|
25
|
+
</g>
|
26
|
+
<g>
|
27
|
+
</g>
|
28
|
+
<g>
|
29
|
+
</g>
|
30
|
+
<g>
|
31
|
+
</g>
|
32
|
+
<g>
|
33
|
+
</g>
|
34
|
+
<g>
|
35
|
+
</g>
|
36
|
+
<g>
|
37
|
+
</g>
|
38
|
+
<g>
|
39
|
+
</g>
|
40
|
+
<g>
|
41
|
+
</g>
|
42
|
+
<g>
|
43
|
+
</g>
|
44
|
+
<g>
|
45
|
+
</g>
|
46
|
+
<g>
|
47
|
+
</g>
|
48
|
+
</svg>
|
Binary file
|
@@ -0,0 +1,29 @@
|
|
1
|
+
<?xml version="1.0" standalone="no"?>
|
2
|
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN"
|
3
|
+
"http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
|
4
|
+
<svg version="1.0" xmlns="http://www.w3.org/2000/svg"
|
5
|
+
width="377.000000pt" height="377.000000pt" viewBox="0 0 377.000000 377.000000"
|
6
|
+
preserveAspectRatio="xMidYMid meet">
|
7
|
+
<metadata>
|
8
|
+
Created by potrace 1.14, written by Peter Selinger 2001-2017
|
9
|
+
</metadata>
|
10
|
+
<g transform="translate(0.000000,377.000000) scale(0.100000,-0.100000)"
|
11
|
+
fill="#000000" stroke="none">
|
12
|
+
<path d="M274 3751 c-108 -37 -186 -115 -224 -226 -20 -57 -20 -80 -18 -1659
|
13
|
+
l3 -1601 27 -55 c50 -101 129 -169 229 -196 82 -21 3121 -21 3193 1 109 33
|
14
|
+
197 117 236 227 19 51 19 103 17 1658 l-2 1605 -28 58 c-34 71 -102 138 -176
|
15
|
+
174 l-56 28 -1575 2 c-1470 2 -1578 0 -1626 -16z m2851 -395 c109 -39 197
|
16
|
+
-138 221 -248 8 -37 7 -2391 -1 -2439 -19 -114 -105 -214 -220 -254 -47 -17
|
17
|
+
-126 -18 -1225 -20 -646 0 -1192 3 -1213 7 -126 27 -235 134 -262 258 -4 19
|
18
|
+
-8 573 -8 1231 0 1113 2 1200 18 1250 38 117 141 207 259 228 23 4 568 6 1211
|
19
|
+
6 1095 -1 1173 -3 1220 -19z"/>
|
20
|
+
<path d="M717 3229 c-56 -9 -112 -51 -137 -105 l-23 -47 0 -1193 0 -1193 24
|
21
|
+
-48 c18 -33 40 -57 74 -78 l48 -30 1181 0 c1118 1 1183 2 1215 19 19 10 45 30
|
22
|
+
59 44 56 60 53 -6 53 1290 l0 1195 -23 46 c-17 31 -39 55 -73 76 l-48 30
|
23
|
+
-1157 0 c-636 0 -1173 -3 -1193 -6z m683 -224 c31 -10 70 -53 71 -80 1 -11 2
|
24
|
+
-87 3 -170 l1 -150 163 -1 c228 -2 244 -13 247 -171 3 -170 -18 -185 -248
|
25
|
+
-184 l-162 0 -1 -159 c-1 -234 -13 -250 -182 -250 -86 0 -103 3 -126 21 -42
|
26
|
+
33 -47 60 -47 230 l1 156 -160 1 c-171 1 -198 7 -232 52 -26 36 -28 206 -2
|
27
|
+
250 28 46 59 53 234 53 l159 0 0 166 c1 183 6 200 67 231 33 17 169 20 214 5z"/>
|
28
|
+
</g>
|
29
|
+
</svg>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"name": "",
|
3
|
+
"short_name": "",
|
4
|
+
"icons": [
|
5
|
+
{
|
6
|
+
"src": "/android-chrome-192x192.png",
|
7
|
+
"sizes": "192x192",
|
8
|
+
"type": "image/png"
|
9
|
+
},
|
10
|
+
{
|
11
|
+
"src": "/android-chrome-256x256.png",
|
12
|
+
"sizes": "256x256",
|
13
|
+
"type": "image/png"
|
14
|
+
}
|
15
|
+
],
|
16
|
+
"theme_color": "#ffffff",
|
17
|
+
"background_color": "#ffffff",
|
18
|
+
"display": "standalone"
|
19
|
+
}
|