jekyll-theme-gerbera 2.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,85 @@
1
+ .highlight {
2
+ @include code-font();
3
+ direction: ltr;
4
+ text-align: left;
5
+ white-space: pre;
6
+ word-spacing: normal;
7
+ word-break: normal;
8
+
9
+ -moz-tab-size: 2;
10
+ -o-tab-size: 2;
11
+ tab-size: 2;
12
+
13
+ -webkit-hyphens: none;
14
+ -moz-hyphens: none;
15
+ -ms-hyphens: none;
16
+ hyphens: none;
17
+
18
+ position: relative;
19
+ }
20
+
21
+ .highlight .hll { background-color: #ffc; }
22
+ .highlight .c { color: #999; } /* Comment */
23
+ .highlight .err { color: #a00; background-color: #faa } /* Error */
24
+ .highlight .k { color: #B11A04; } /* Keyword */
25
+ .highlight .o { color: #555 } /* Operator */
26
+ .highlight .cm { color: #999; font-style: italic } /* Comment.Multiline */
27
+ .highlight .cp { color: #B33086 } /* Comment.Preproc */
28
+ .highlight .c1 { color: #999; } /* Comment.Single */
29
+ .highlight .cs { color: #999; } /* Comment.Special */
30
+ .highlight .gd { background-color: #fcc; border: 1px solid #c00 } /* Generic.Deleted */
31
+ .highlight .ge { font-style: italic } /* Generic.Emph */
32
+ .highlight .gr { color: #f00 } /* Generic.Error */
33
+ .highlight .gh { color: #030; } /* Generic.Heading */
34
+ .highlight .gi { background-color: #cfc; border: 1px solid #0c0 } /* Generic.Inserted */
35
+ .highlight .go { color: #aaa } /* Generic.Output */
36
+ .highlight .gp { color: #009; } /* Generic.Prompt */
37
+ .highlight .gs { } /* Generic.Strong */
38
+ .highlight .gu { color: #030; } /* Generic.Subheading */
39
+ .highlight .gt { color: #444 } /* Generic.Traceback */
40
+ .highlight .kc { color: #B11A04; } /* Keyword.Constant */
41
+ .highlight .kd { color: #B11A04; } /* Keyword.Declaration */
42
+ .highlight .kn { color: #B11A04; } /* Keyword.Namespace */
43
+ .highlight .kp { color: #B11A04 } /* Keyword.Pseudo */
44
+ .highlight .kr { color: #B11A04; } /* Keyword.Reserved */
45
+ .highlight .kt { color: #B11A04; } /* Keyword.Type */
46
+ .highlight .m { color: #2882F9 } /* Literal.Number */
47
+ .highlight .s { color: #D64292 } /* Literal.String */
48
+ .highlight .na { color: #4f9fcf } /* Name.Attribute */
49
+ .highlight .nb { color: #366 } /* Name.Builtin */
50
+ .highlight .nc { color: #CA9800; } /* Name.Class */
51
+ .highlight .no { color: #360 } /* Name.Constant */
52
+ .highlight .nd { color: #99f } /* Name.Decorator */
53
+ .highlight .ni { color: #999; } /* Name.Entity */
54
+ .highlight .ne { color: #c00; } /* Name.Exception */
55
+ .highlight .nf { color: #c0f } /* Name.Function */
56
+ .highlight .nl { color: #99f } /* Name.Label */
57
+ .highlight .nn { color: #0cf; } /* Name.Namespace */
58
+ .highlight .nt { color: #1F61A0; } /* Name.Tag */
59
+ .highlight .nv { color: #397D13 } /* Name.Variable */
60
+ .highlight .ow { color: #000; } /* Operator.Word */
61
+ .highlight .w { color: #bbb } /* Text.Whitespace */
62
+ .highlight .mf { color: #2882F9 } /* Literal.Number.Float */
63
+ .highlight .mh { color: #2882F9 } /* Literal.Number.Hex */
64
+ .highlight .mi { color: #2882F9 } /* Literal.Number.Integer */
65
+ .highlight .mo { color: #2882F9 } /* Literal.Number.Oct */
66
+ .highlight .sb { color: #D64292 } /* Literal.String.Backtick */
67
+ .highlight .sc { color: #D64292 } /* Literal.String.Char */
68
+ .highlight .sd { color: #D64292; font-style: italic } /* Literal.String.Doc */
69
+ .highlight .s2 { color: #D64292 } /* Literal.String.Double */
70
+ .highlight .se { color: #D64292; } /* Literal.String.Escape */
71
+ .highlight .sh { color: #D64292 } /* Literal.String.Heredoc */
72
+ .highlight .si { color: #D64292 } /* Literal.String.Interpol */
73
+ .highlight .sx { color: #D64292 } /* Literal.String.Other */
74
+ .highlight .sr { color: #D64292 } /* Literal.String.Regex */
75
+ .highlight .s1 { color: #D64292 } /* Literal.String.Single */
76
+ .highlight .ss { color: #D64292 } /* Literal.String.Symbol */
77
+ .highlight .bp { color: #397D13 } /* Name.Builtin.Pseudo */
78
+ .highlight .vc { color: #397D13 } /* Name.Variable.Class */
79
+ .highlight .vg { color: #397D13 } /* Name.Variable.Global */
80
+ .highlight .vi { color: #397D13 } /* Name.Variable.Instance */
81
+ .highlight .il { color: #2882F9 } /* Literal.Number.Integer.Long */
82
+
83
+ .css .o,
84
+ .css .o + .nt,
85
+ .css .nt + .nt { color: #999; }
@@ -0,0 +1,28 @@
1
+ /* https://www.pantone.com/color-finder/Rhodamine-Red-C */
2
+ $dark-color: #171E26;
3
+ $rhodamine-color: #E10098;
4
+ $text-color: #202020;
5
+
6
+ @mixin headline-font($size: 48px, $color: $text-color) {
7
+ font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif;
8
+ font-weight: 300;
9
+ color: $color;
10
+ font-size: $size;
11
+ line-height: $size * 1.4;
12
+ }
13
+
14
+ @mixin body-font($size: 18px, $color: $text-color) {
15
+ font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
16
+ font-weight: 300;
17
+ color: $color;
18
+ font-size: $size;
19
+ line-height: $size * 1.6;
20
+ }
21
+
22
+ @mixin code-font($size: 13px, $color: $text-color) {
23
+ font-family: 'Roboto Mono', Menlo, Monaco, monospace;
24
+ font-weight: 400;
25
+ color: $color;
26
+ font-size: $size;
27
+ line-height: $size * 17/13;
28
+ }
@@ -0,0 +1,33 @@
1
+ /*
2
+ * _ __ ____ __ __ __
3
+ * (_)__ / /____ __/ / / / /_/ /_ ___ ____ ___ ___ ____/ /___ __________
4
+ * / / _ \/ //_/ / / / / /_____/ __/ __ \/ _ \/ __ `__ \/ _ \______/ __ / __ \/ ___/ ___/
5
+ * / / __/ ,< / /_/ / / /_____/ /_/ / / / __/ / / / / / __/_____/ /_/ / /_/ / /__(__ )
6
+ * __/ /\___/_/|_|\__, /_/_/ \__/_/ /_/\___/_/ /_/ /_/\___/ \__,_/\____/\___/____/
7
+ * /___/ /____/
8
+ *
9
+ * Designed, built, and released under MIT license by Greg Arakelian.
10
+ * Learn more at https://github.com/arakelian/jekyll-theme-gerbera
11
+ */
12
+
13
+ $baseurl: '' !default;
14
+
15
+ $base-font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif !default;
16
+ $base-font-size: 18px !default;
17
+ $base-font-weight: 300 !default;
18
+ $base-line-height: $base-font-size * 1.6 !default;
19
+
20
+ $header-font-family: 'Rubik', 'Helvetica Neue', Helvetica, Arial, sans-serif !default;
21
+ $header-font-weight: $base-font-weight !default;
22
+
23
+ $small-font-size: $base-font-size * 0.875 !default;
24
+
25
+ @import
26
+ "_variables",
27
+ "_base",
28
+ "_docs",
29
+ "_codemirror",
30
+ "_algolia",
31
+ "_syntax",
32
+ "_index"
33
+ ;
data/_sass/prism.scss ADDED
@@ -0,0 +1,102 @@
1
+ .prism {
2
+ @include code-font();
3
+ direction: ltr;
4
+ text-align: left;
5
+ white-space: pre;
6
+ word-spacing: normal;
7
+ word-break: normal;
8
+
9
+ -moz-tab-size: 2;
10
+ -o-tab-size: 2;
11
+ tab-size: 2;
12
+
13
+ -webkit-hyphens: none;
14
+ -moz-hyphens: none;
15
+ -ms-hyphens: none;
16
+ hyphens: none;
17
+
18
+ position: relative;
19
+ }
20
+
21
+
22
+ /* Comment */
23
+ .prism .comment,
24
+ .cm-comment {
25
+ color: #999;
26
+ }
27
+
28
+ /* Punctuation */
29
+ .prism .punctuation,
30
+ .cm-punctuation {
31
+ color: #555;
32
+ }
33
+
34
+ /* Keyword */
35
+ .prism .keyword,
36
+ .cm-keyword {
37
+ color: #B11A04;
38
+ }
39
+
40
+ /* OperationName, FragmentName */
41
+ .prism .constant,
42
+ .cm-def {
43
+ color: #D2054E;
44
+ }
45
+
46
+ /* FieldName */
47
+ .prism .attr-name,
48
+ .cm-property {
49
+ color: #1F61A0;
50
+ }
51
+
52
+ /* FieldAlias */
53
+ .cm-qualifier {
54
+ color: #1C92A9;
55
+ }
56
+
57
+ /* ArgumentName and ObjectFieldName */
58
+ .cm-attribute {
59
+ color: #8B2BB9;
60
+ }
61
+
62
+ /* Number */
63
+ .prism .number,
64
+ .cm-number {
65
+ color: #2882F9;
66
+ }
67
+
68
+ /* String */
69
+ .prism .string,
70
+ .cm-string {
71
+ color: #D64292;
72
+ }
73
+
74
+ /* Boolean */
75
+ .prism .boolean,
76
+ .cm-builtin {
77
+ color: #D47509;
78
+ }
79
+
80
+ /* EnumValue */
81
+ .prism .enum,
82
+ .cm-string-2 {
83
+ color: #0B7FC7;
84
+ }
85
+
86
+ /* Variable */
87
+ .prism .variable,
88
+ .cm-variable {
89
+ color: #397D13;
90
+ }
91
+
92
+ /* Directive */
93
+ .prism .function,
94
+ .cm-meta {
95
+ color: #B33086;
96
+ }
97
+
98
+ /* Type */
99
+ .prism .type-name,
100
+ .cm-atom {
101
+ color: #CA9800;
102
+ }
Binary file
Binary file
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><path fill="#869CB6" d="M57.468 302.66l-14.376-8.3 160.15-277.38 14.376 8.3z"/><path fill="#869CB6" d="M39.8 272.2h320.3v16.6H39.8z"/><path fill="#869CB6" d="M206.348 374.026l-160.21-92.5 8.3-14.376 160.21 92.5zM345.522 132.947l-160.21-92.5 8.3-14.376 160.21 92.5z"/><path fill="#869CB6" d="M54.482 132.883l-8.3-14.375 160.21-92.5 8.3 14.376z"/><path fill="#869CB6" d="M342.568 302.663l-160.15-277.38 14.376-8.3 160.15 277.38zM52.5 107.5h16.6v185H52.5zM330.9 107.5h16.6v185h-16.6z"/><path fill="#869CB6" d="M203.522 367l-7.25-12.558 139.34-80.45 7.25 12.557z"/><path fill="#869CB6" d="M369.5 297.9c-9.6 16.7-31 22.4-47.7 12.8-16.7-9.6-22.4-31-12.8-47.7 9.6-16.7 31-22.4 47.7-12.8 16.8 9.7 22.5 31 12.8 47.7M90.9 137c-9.6 16.7-31 22.4-47.7 12.8-16.7-9.6-22.4-31-12.8-47.7 9.6-16.7 31-22.4 47.7-12.8 16.7 9.7 22.4 31 12.8 47.7M30.5 297.9c-9.6-16.7-3.9-38 12.8-47.7 16.7-9.6 38-3.9 47.7 12.8 9.6 16.7 3.9 38-12.8 47.7-16.8 9.6-38.1 3.9-47.7-12.8M309.1 137c-9.6-16.7-3.9-38 12.8-47.7 16.7-9.6 38-3.9 47.7 12.8 9.6 16.7 3.9 38-12.8 47.7-16.7 9.6-38.1 3.9-47.7-12.8M200 395.8c-19.3 0-34.9-15.6-34.9-34.9 0-19.3 15.6-34.9 34.9-34.9 19.3 0 34.9 15.6 34.9 34.9 0 19.2-15.6 34.9-34.9 34.9M200 74c-19.3 0-34.9-15.6-34.9-34.9 0-19.3 15.6-34.9 34.9-34.9 19.3 0 34.9 15.6 34.9 34.9 0 19.3-15.6 34.9-34.9 34.9"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 400"><path fill="#E10098" d="M57.468 302.66l-14.376-8.3 160.15-277.38 14.376 8.3z"/><path fill="#E10098" d="M39.8 272.2h320.3v16.6H39.8z"/><path fill="#E10098" d="M206.348 374.026l-160.21-92.5 8.3-14.376 160.21 92.5zM345.522 132.947l-160.21-92.5 8.3-14.376 160.21 92.5z"/><path fill="#E10098" d="M54.482 132.883l-8.3-14.375 160.21-92.5 8.3 14.376z"/><path fill="#E10098" d="M342.568 302.663l-160.15-277.38 14.376-8.3 160.15 277.38zM52.5 107.5h16.6v185H52.5zM330.9 107.5h16.6v185h-16.6z"/><path fill="#E10098" d="M203.522 367l-7.25-12.558 139.34-80.45 7.25 12.557z"/><path fill="#E10098" d="M369.5 297.9c-9.6 16.7-31 22.4-47.7 12.8-16.7-9.6-22.4-31-12.8-47.7 9.6-16.7 31-22.4 47.7-12.8 16.8 9.7 22.5 31 12.8 47.7M90.9 137c-9.6 16.7-31 22.4-47.7 12.8-16.7-9.6-22.4-31-12.8-47.7 9.6-16.7 31-22.4 47.7-12.8 16.7 9.7 22.4 31 12.8 47.7M30.5 297.9c-9.6-16.7-3.9-38 12.8-47.7 16.7-9.6 38-3.9 47.7 12.8 9.6 16.7 3.9 38-12.8 47.7-16.8 9.6-38.1 3.9-47.7-12.8M309.1 137c-9.6-16.7-3.9-38 12.8-47.7 16.7-9.6 38-3.9 47.7 12.8 9.6 16.7 3.9 38-12.8 47.7-16.7 9.6-38.1 3.9-47.7-12.8M200 395.8c-19.3 0-34.9-15.6-34.9-34.9 0-19.3 15.6-34.9 34.9-34.9 19.3 0 34.9 15.6 34.9 34.9 0 19.2-15.6 34.9-34.9 34.9M200 74c-19.3 0-34.9-15.6-34.9-34.9 0-19.3 15.6-34.9 34.9-34.9 19.3 0 34.9 15.6 34.9 34.9 0 19.3-15.6 34.9-34.9 34.9"/></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" width="36" height="36" viewBox="0 0 36 36"><path fill="#9DA7B3" fill-opacity=".5" d="M35.525 31.228l-8.88-8.882c1.444-2.238 2.298-4.895 2.298-7.752C28.943 6.684 22.505.25 14.597.25 6.687.25.254 6.686.254 14.595c0 7.91 6.433 14.344 14.343 14.344 2.856 0 5.513-.85 7.752-2.294l8.88 8.88c.294.297.78.297 1.075 0l3.22-3.22c.3-.296.3-.78 0-1.076zM4.81 14.593c0-5.396 4.39-9.788 9.788-9.788 5.398 0 9.787 4.392 9.787 9.788 0 5.398-4.39 9.79-9.787 9.79-5.398 0-9.788-4.392-9.788-9.79z"/></svg>
data/assets/main.scss ADDED
@@ -0,0 +1,8 @@
1
+ ---
2
+ # Only the main Sass file needs front matter (the dashes are enough)
3
+ ---
4
+ @charset "utf-8";
5
+
6
+ $baseurl : '{{ site.baseurl }}';
7
+
8
+ @import "jekyll-theme-gerbera";
metadata ADDED
@@ -0,0 +1,162 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jekyll-theme-gerbera
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Greg Arakelian
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-12-07 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.4'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.4'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-feed
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '0.8'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '0.8'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-sitemap
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.12'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.12'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-tidy
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.2.2
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.2.2
69
+ - !ruby/object:Gem::Dependency
70
+ name: bundler
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.13'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.13'
83
+ - !ruby/object:Gem::Dependency
84
+ name: rake
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '12.0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '12.0'
97
+ description:
98
+ email:
99
+ - greg@arakelian.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - LICENSE.md
105
+ - README.md
106
+ - _includes/head.html
107
+ - _includes/menu_nav.html
108
+ - _includes/menubar.html
109
+ - _includes/sidebar.html
110
+ - _layouts/bare.html
111
+ - _layouts/default.html
112
+ - _layouts/landing.html
113
+ - _layouts/page.html
114
+ - _layouts/post.html
115
+ - _layouts/posts.html
116
+ - _sass/_algolia.scss
117
+ - _sass/_base.scss
118
+ - _sass/_codemirror.scss
119
+ - _sass/_docs.scss
120
+ - _sass/_index.scss
121
+ - _sass/_syntax.scss
122
+ - _sass/_variables.scss
123
+ - _sass/jekyll-theme-gerbera.scss
124
+ - _sass/prism.scss
125
+ - assets/favicon.ico
126
+ - assets/gerbera.icns
127
+ - assets/img/logo-gray.svg
128
+ - assets/img/logo.svg
129
+ - assets/img/search.svg
130
+ - assets/main.scss
131
+ homepage: https://github.com/arakelian/jekyll-theme-gerbera
132
+ licenses:
133
+ - MIT
134
+ metadata:
135
+ plugin_type: theme
136
+ post_install_message: |2+
137
+
138
+ ----------------------------------------------
139
+ Thank you for installing jekyll-theme-gerbera!
140
+ https://github.com/arakelian/jekyll-theme-gerbera
141
+ ----------------------------------------------
142
+
143
+ rdoc_options: []
144
+ require_paths:
145
+ - lib
146
+ required_ruby_version: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - ">="
149
+ - !ruby/object:Gem::Version
150
+ version: '0'
151
+ required_rubygems_version: !ruby/object:Gem::Requirement
152
+ requirements:
153
+ - - ">="
154
+ - !ruby/object:Gem::Version
155
+ version: '0'
156
+ requirements: []
157
+ rubyforge_project:
158
+ rubygems_version: 2.6.14
159
+ signing_key:
160
+ specification_version: 4
161
+ summary: Document theme for Jekyll inspired by Facebook GraphQL documentation
162
+ test_files: []