jekyll-theme-simplex 0.9.5 → 0.9.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +8 -0
- data/_layouts/post.html +26 -2
- data/_plugins/button.rb +26 -0
- data/_sass/_feed.scss +2 -2
- data/_sass/_global.scss +76 -7
- data/_sass/_post.scss +41 -4
- data/_sass/_variables.scss +190 -32
- data/assets/hqdefault.jpg +0 -0
- data/assets/img/icons/arrow_left.svg +1 -0
- data/assets/img/icons/arrow_right.svg +1 -0
- data/assets/img/icons/code.svg +1 -0
- data/assets/img/icons/cog.svg +1 -0
- data/assets/img/icons/download.svg +1 -0
- metadata +9 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: '018a6a5f2af74af998326fc1916d92c5064a6225a1488ed6e7d89efbcf643caa'
|
4
|
+
data.tar.gz: 63ede6dc44bc801e35e7bb7db32135004f78fd55f0b6099c99cf0f63f532455a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b42d2ba7eb31fc8df60ff8c299a6e8a48f511e3261307f0eba3eb583df676e2c8e519f9239a8dea9e4b659f2cdfefaec7b9bca4d0d8ca9a828828b2c72c9a4b5
|
7
|
+
data.tar.gz: fcf9a760f971c3f98c7133432962d84bb94960cbff3b2c5489f7c693b37f1fdb1f73e3a8ba6cfdf413b787018691b644e43b9e9abaa2c68a4b4da56057de3543
|
data/README.md
CHANGED
@@ -120,6 +120,11 @@ author: andy #Author's nick.
|
|
120
120
|
Your markdown content here.
|
121
121
|
```
|
122
122
|
|
123
|
+
### Syntax highlighting
|
124
|
+
The theme uses Pygments CSS files created by [@richleland](https://github.com/richleland). If you want to modify the highlighting styles, just download different CSS or create your own - see [Jekyll docs](https://jekyllrb.com/docs/liquid/tags/#stylesheets-for-syntax-highlighting).
|
125
|
+
|
126
|
+
Note - `@media` is used to supply different styles for light and dark browser mode. See `_variables.scss` file for details.
|
127
|
+
|
123
128
|
### ℹ Notes
|
124
129
|
[1] Hue can be either one of the predefined colors or any of the CSS `color` attribute supported values (hex, rgb...).
|
125
130
|
|
@@ -159,6 +164,9 @@ Your theme is setup just like a normal Jekyll site! To test your theme, run `bun
|
|
159
164
|
When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
|
160
165
|
To add a custom directory to your theme-gem, please edit the regexp in `jekyll-theme-simplex.gemspec` accordingly.
|
161
166
|
|
167
|
+
## Credit
|
168
|
+
Includes icons by [uxwing](https://uxwing.com/).
|
169
|
+
|
162
170
|
## ⚖ License
|
163
171
|
© Ondrej Golasowski. The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
164
172
|
|
data/_layouts/post.html
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
layout: default
|
3
3
|
---
|
4
4
|
|
5
|
-
<
|
5
|
+
<article class="post">
|
6
6
|
|
7
7
|
<div class="post__title">
|
8
8
|
<h1 class="post__title__text">{{ page.title }}</h1>
|
@@ -30,7 +30,31 @@ layout: default
|
|
30
30
|
{% endif %}
|
31
31
|
</div>
|
32
32
|
|
33
|
+
{% if page.prevPart != nil or page.nextPart != nil %}
|
34
|
+
<div class="post__navigator">
|
35
|
+
<div
|
36
|
+
class="post__navigator__buttons"
|
37
|
+
{% if page.prevPart == nil %}
|
38
|
+
style="justify-content: flex-end;"
|
39
|
+
{% endif %}
|
40
|
+
>
|
41
|
+
{% if page.prevPart != nil %}
|
42
|
+
<a href="{% link {{ page.prevPart }} %}">
|
43
|
+
<img class="arrow-left" src="{{ site.url }}/assets/img/icons/arrow_left.svg"/>
|
44
|
+
Previous
|
45
|
+
</a>
|
46
|
+
{% endif %}
|
47
|
+
{% if page.nextPart != nil %}
|
48
|
+
<a href="{% link {{ page.nextPart }} %}">
|
49
|
+
Next
|
50
|
+
<img class="arrow-right" src="{{ site.url }}/assets/img/icons/arrow_right.svg"/>
|
51
|
+
</a>
|
52
|
+
{% endif %}
|
53
|
+
</div>
|
54
|
+
</div>
|
55
|
+
{% endif %}
|
56
|
+
|
33
57
|
<div class="post__content">
|
34
58
|
{{ content }}
|
35
59
|
</div>
|
36
|
-
</
|
60
|
+
</article>
|
data/_plugins/button.rb
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
module Jekyll
|
2
|
+
class ButtonTagBlock < Liquid::Block
|
3
|
+
|
4
|
+
def initialize(tag_name, text, tokens)
|
5
|
+
super
|
6
|
+
@input = text
|
7
|
+
end
|
8
|
+
|
9
|
+
def render(context)
|
10
|
+
|
11
|
+
input_split = split_params(@input)
|
12
|
+
theme = input_split[0].strip
|
13
|
+
link = input_split[1].strip
|
14
|
+
icon = input_split[2].strip
|
15
|
+
|
16
|
+
text = super
|
17
|
+
"<div class='sx-button'><a href='#{link}' class='sx-button__content #{theme}'><img src='#{icon}'/>#{text}</a></div>"
|
18
|
+
end
|
19
|
+
|
20
|
+
def split_params(params)
|
21
|
+
params.split("|")
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
Liquid::Template.register_tag('button', Jekyll::ButtonTagBlock)
|
data/_sass/_feed.scss
CHANGED
data/_sass/_global.scss
CHANGED
@@ -25,13 +25,10 @@ body{
|
|
25
25
|
margin: 0;
|
26
26
|
min-height: 100vh;
|
27
27
|
|
28
|
-
display:
|
29
|
-
|
30
|
-
align-items:
|
31
|
-
|
32
|
-
"header"
|
33
|
-
"main"
|
34
|
-
"footer";
|
28
|
+
display: flex;
|
29
|
+
flex-direction: column;
|
30
|
+
align-items: center;
|
31
|
+
justify-content: center;
|
35
32
|
}
|
36
33
|
|
37
34
|
h1,h2,h3,h4,h5,h5,h6{
|
@@ -66,3 +63,75 @@ a{
|
|
66
63
|
color: var(--c-linkActive);
|
67
64
|
}
|
68
65
|
}
|
66
|
+
|
67
|
+
table:not([class]){
|
68
|
+
border-collapse: collapse;
|
69
|
+
border-spacing: 0;
|
70
|
+
border: 1px solid var(--c-tableBorder);
|
71
|
+
|
72
|
+
th,td{
|
73
|
+
padding: .25rem;
|
74
|
+
border: 1px solid var(--c-tableBorder);
|
75
|
+
}
|
76
|
+
}
|
77
|
+
|
78
|
+
.highlight{
|
79
|
+
|
80
|
+
margin: 2rem 0;
|
81
|
+
transition: $t-smooth;
|
82
|
+
box-shadow: inset 0px 0px 14px -4px var(--c-codeShadow);
|
83
|
+
|
84
|
+
&:hover{
|
85
|
+
box-shadow: inset 0px 0px 14px -4px var(--c-codeShadowHover);
|
86
|
+
}
|
87
|
+
|
88
|
+
max-width: calc(100vw - 2rem);
|
89
|
+
overflow-x: auto;
|
90
|
+
|
91
|
+
pre{
|
92
|
+
margin: 0;
|
93
|
+
padding: 1rem;
|
94
|
+
}
|
95
|
+
}
|
96
|
+
|
97
|
+
.sx-center{
|
98
|
+
|
99
|
+
display: flex;
|
100
|
+
align-items: center;
|
101
|
+
justify-content: center;
|
102
|
+
}
|
103
|
+
|
104
|
+
.sx-button{
|
105
|
+
|
106
|
+
width: 100%;
|
107
|
+
margin: 1rem 0;
|
108
|
+
display: flex;
|
109
|
+
align-items: center;
|
110
|
+
justify-content: center;
|
111
|
+
|
112
|
+
&__content{
|
113
|
+
|
114
|
+
&:link, &:visited, &:hover, &:active{
|
115
|
+
color: var(--c-themePrimaryLight);
|
116
|
+
}
|
117
|
+
text-decoration: none;
|
118
|
+
width: fit-content;
|
119
|
+
padding: .5rem 1rem;
|
120
|
+
display: flex;
|
121
|
+
align-items: center;
|
122
|
+
justify-content: center;
|
123
|
+
|
124
|
+
&.red{background-color: var(--c-themeHueRed);}
|
125
|
+
&.orange{background-color: var(--c-themeHueOrange);}
|
126
|
+
&.green{background-color: var(--c-themeHueGreen);}
|
127
|
+
&.blue{background-color: var(--c-themeHueBlue);}
|
128
|
+
&.purple{background-color: var(--c-themeHuePurple);}
|
129
|
+
&.brown{background-color: var(--c-themeHueBrown);}
|
130
|
+
|
131
|
+
img{
|
132
|
+
margin-right: 1rem;
|
133
|
+
height: 1rem;
|
134
|
+
filter: brightness(0) invert(1);
|
135
|
+
}
|
136
|
+
}
|
137
|
+
}
|
data/_sass/_post.scss
CHANGED
@@ -42,8 +42,8 @@
|
|
42
42
|
@include flexbox;
|
43
43
|
|
44
44
|
&__title{
|
45
|
-
color:
|
46
|
-
background: var(--c-
|
45
|
+
color: var(--c-noCategoryText);
|
46
|
+
background: var(--c-noCategoryBackground);
|
47
47
|
padding: .2rem .5rem;
|
48
48
|
}
|
49
49
|
|
@@ -64,7 +64,7 @@
|
|
64
64
|
|
65
65
|
color: var(--c-postText);
|
66
66
|
@include for-size('tablet'){
|
67
|
-
margin-top:
|
67
|
+
margin-top: .5rem;
|
68
68
|
}
|
69
69
|
}
|
70
70
|
|
@@ -72,7 +72,6 @@
|
|
72
72
|
|
73
73
|
color: var(--c-postText);
|
74
74
|
width: fit-content;
|
75
|
-
//box-shadow: inset 0px 0px 14px -4px rgba(0,0,0,0.5);
|
76
75
|
@include flexbox;
|
77
76
|
|
78
77
|
&__photo{
|
@@ -94,4 +93,42 @@
|
|
94
93
|
font-size: 1.8rem;
|
95
94
|
}
|
96
95
|
}
|
96
|
+
|
97
|
+
&__navigator{
|
98
|
+
|
99
|
+
margin-top: 1rem;
|
100
|
+
width: 100%;
|
101
|
+
|
102
|
+
&__buttons{
|
103
|
+
|
104
|
+
@include flexbox{
|
105
|
+
justify-content: space-between;
|
106
|
+
};
|
107
|
+
|
108
|
+
a{
|
109
|
+
transition: $t-smooth;
|
110
|
+
text-decoration: none;
|
111
|
+
font-weight: bold;
|
112
|
+
font-size: 1.25rem;
|
113
|
+
color: var(--c-navigator);
|
114
|
+
filter: var(--c-navigatorFilter);
|
115
|
+
|
116
|
+
display: flex;
|
117
|
+
align-items: center;
|
118
|
+
|
119
|
+
&:hover{
|
120
|
+
letter-spacing: .25rem;
|
121
|
+
}
|
122
|
+
|
123
|
+
.arrow-left{
|
124
|
+
margin-right: .5rem;
|
125
|
+
height: 1em;
|
126
|
+
}
|
127
|
+
.arrow-right{
|
128
|
+
margin-left: .5rem;
|
129
|
+
height: 1em;
|
130
|
+
}
|
131
|
+
}
|
132
|
+
}
|
133
|
+
}
|
97
134
|
}
|
data/_sass/_variables.scss
CHANGED
@@ -26,46 +26,127 @@
|
|
26
26
|
// ELEMENT COLORS
|
27
27
|
:root{
|
28
28
|
|
29
|
-
|
29
|
+
// *** Default light. ***
|
30
|
+
--c-articleHeading: var(--c-themePrimaryDark);
|
31
|
+
--c-articleParagraph: var(--c-themeSecondaryDark);
|
32
|
+
--c-articleBackground: var(--c-themePrimaryLight);
|
30
33
|
|
34
|
+
--c-pageBackground: var(--c-themePrimaryLight);
|
31
35
|
|
32
|
-
|
33
|
-
|
34
|
-
|
36
|
+
--c-headerImageFilter: none;
|
37
|
+
--c-menuLinks: var(--c-themePrimaryDark);
|
38
|
+
--c-menuDepth0: var(--c-themeSecondaryLight);
|
39
|
+
--c-menuItemsFilter: brightness(0);
|
40
|
+
--c-menuItemsFilterHover: none;
|
41
|
+
--c-menuShadow: rgba(0,0,0,0.5);
|
35
42
|
|
36
|
-
|
43
|
+
--c-snippetBackgroundExternal: rgba(239, 239, 239, 0.425);
|
44
|
+
--c-snippetBackgroundInternal: var(--c-pageBackground);
|
45
|
+
--c-snippetHeading: var(--c-themePrimaryDark);
|
46
|
+
--c-snippetDate: var(--c-themeSecondaryDark);
|
47
|
+
--c-snippetAuthor: var(--c-themePrimaryDark);
|
48
|
+
--c-snippetShadowHover: rgba(0,0,0,0.5);
|
49
|
+
--c-snippetShadow: rgba(0, 0, 0, 0);
|
37
50
|
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
--c-menuItemsFilterHover: none;
|
43
|
-
--c-menuShadow: rgba(0,0,0,0.5);
|
44
|
-
|
45
|
-
--c-snippetBackgroundExternal: rgba(239, 239, 239, 0.425);
|
46
|
-
--c-snippetBackgroundInternal: var(--c-pageBackground);
|
47
|
-
--c-snippetHeading: var(--c-themePrimaryDark);
|
48
|
-
--c-snippetDate: var(--c-themeSecondaryDark);
|
49
|
-
--c-snippetAuthor: var(--c-themePrimaryDark);
|
50
|
-
--c-snippetShadowHover: rgba(0,0,0,0.5);
|
51
|
-
--c-snippetShadow: rgba(0, 0, 0, 0);
|
51
|
+
--c-postTitle: var(--c-themePrimaryDark);
|
52
|
+
--c-postText: var(--c-themePrimaryDark);
|
53
|
+
--c-pageTitle: var(--c-themePrimaryDark);
|
54
|
+
--c-pageText: var(--c-themePrimaryDark);
|
52
55
|
|
53
|
-
|
54
|
-
--c-postText: var(--c-themePrimaryDark);
|
55
|
-
--c-pageTitle: var(--c-themePrimaryDark);
|
56
|
-
--c-pageText: var(--c-themePrimaryDark);
|
56
|
+
--c-feed-title: var(--c-themePrimaryDark);
|
57
57
|
|
58
|
-
|
58
|
+
--c-link: var(--c-themeTerniaryDark);
|
59
|
+
--c-linkVisited: var(--c-themeQuaternaryDark);
|
60
|
+
--c-linkHover: var(--c-themePrimaryDark);
|
61
|
+
--c-linkActive: var(--c-themePrimaryDark);
|
59
62
|
|
60
|
-
|
61
|
-
|
62
|
-
--c-linkHover: var(--c-themePrimaryDark);
|
63
|
-
--c-linkActive: var(--c-themePrimaryDark);
|
63
|
+
--c-footerText: var(--c-themePrimaryDark);
|
64
|
+
--c-footerImageFilter: none;
|
64
65
|
|
65
|
-
|
66
|
-
|
67
|
-
|
66
|
+
--c-codeShadow: rgba(0, 0, 0, 0.5);
|
67
|
+
--c-codeShadowHover: rgba(0, 0, 0, 0.1);
|
68
|
+
|
69
|
+
--c-navigator: var(--c-themePrimaryDark);
|
70
|
+
--c-navigatorFilter: none;
|
71
|
+
|
72
|
+
--c-noCategoryBackground: var(--c-themePrimaryDark);
|
73
|
+
--c-noCategoryText: var(--c-themePrimaryLight);
|
74
|
+
|
75
|
+
--c-tableBorder: var(--c-themePrimaryDark);
|
76
|
+
|
77
|
+
//Syntax highlighting.
|
78
|
+
.highlight .hll { background-color: #ffffcc }
|
79
|
+
.highlight .c { color: #8f5902; font-style: italic } /* Comment */
|
80
|
+
.highlight .err { color: #a40000; border: 1px solid #ef2929 } /* Error */
|
81
|
+
.highlight .g { color: #000000 } /* Generic */
|
82
|
+
.highlight .k { color: #204a87; font-weight: bold } /* Keyword */
|
83
|
+
.highlight .l { color: #000000 } /* Literal */
|
84
|
+
.highlight .n { color: #000000 } /* Name */
|
85
|
+
.highlight .o { color: #ce5c00; font-weight: bold } /* Operator */
|
86
|
+
.highlight .x { color: #000000 } /* Other */
|
87
|
+
.highlight .p { color: #000000; font-weight: bold } /* Punctuation */
|
88
|
+
.highlight .cm { color: #8f5902; font-style: italic } /* Comment.Multiline */
|
89
|
+
.highlight .cp { color: #8f5902; font-style: italic } /* Comment.Preproc */
|
90
|
+
.highlight .c1 { color: #8f5902; font-style: italic } /* Comment.Single */
|
91
|
+
.highlight .cs { color: #8f5902; font-style: italic } /* Comment.Special */
|
92
|
+
.highlight .gd { color: #a40000 } /* Generic.Deleted */
|
93
|
+
.highlight .ge { color: #000000; font-style: italic } /* Generic.Emph */
|
94
|
+
.highlight .gr { color: #ef2929 } /* Generic.Error */
|
95
|
+
.highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
|
96
|
+
.highlight .gi { color: #00A000 } /* Generic.Inserted */
|
97
|
+
.highlight .go { color: #000000; font-style: italic } /* Generic.Output */
|
98
|
+
.highlight .gp { color: #8f5902 } /* Generic.Prompt */
|
99
|
+
.highlight .gs { color: #000000; font-weight: bold } /* Generic.Strong */
|
100
|
+
.highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
|
101
|
+
.highlight .gt { color: #a40000; font-weight: bold } /* Generic.Traceback */
|
102
|
+
.highlight .kc { color: #204a87; font-weight: bold } /* Keyword.Constant */
|
103
|
+
.highlight .kd { color: #204a87; font-weight: bold } /* Keyword.Declaration */
|
104
|
+
.highlight .kn { color: #204a87; font-weight: bold } /* Keyword.Namespace */
|
105
|
+
.highlight .kp { color: #204a87; font-weight: bold } /* Keyword.Pseudo */
|
106
|
+
.highlight .kr { color: #204a87; font-weight: bold } /* Keyword.Reserved */
|
107
|
+
.highlight .kt { color: #204a87; font-weight: bold } /* Keyword.Type */
|
108
|
+
.highlight .ld { color: #000000 } /* Literal.Date */
|
109
|
+
.highlight .m { color: #0000cf; font-weight: bold } /* Literal.Number */
|
110
|
+
.highlight .s { color: #4e9a06 } /* Literal.String */
|
111
|
+
.highlight .na { color: #c4a000 } /* Name.Attribute */
|
112
|
+
.highlight .nb { color: #204a87 } /* Name.Builtin */
|
113
|
+
.highlight .nc { color: #000000 } /* Name.Class */
|
114
|
+
.highlight .no { color: #000000 } /* Name.Constant */
|
115
|
+
.highlight .nd { color: #5c35cc; font-weight: bold } /* Name.Decorator */
|
116
|
+
.highlight .ni { color: #ce5c00 } /* Name.Entity */
|
117
|
+
.highlight .ne { color: #cc0000; font-weight: bold } /* Name.Exception */
|
118
|
+
.highlight .nf { color: #000000 } /* Name.Function */
|
119
|
+
.highlight .nl { color: #f57900 } /* Name.Label */
|
120
|
+
.highlight .nn { color: #000000 } /* Name.Namespace */
|
121
|
+
.highlight .nx { color: #000000 } /* Name.Other */
|
122
|
+
.highlight .py { color: #000000 } /* Name.Property */
|
123
|
+
.highlight .nt { color: #204a87; font-weight: bold } /* Name.Tag */
|
124
|
+
.highlight .nv { color: #000000 } /* Name.Variable */
|
125
|
+
.highlight .ow { color: #204a87; font-weight: bold } /* Operator.Word */
|
126
|
+
.highlight .w { color: #f8f8f8; text-decoration: underline } /* Text.Whitespace */
|
127
|
+
.highlight .mf { color: #0000cf; font-weight: bold } /* Literal.Number.Float */
|
128
|
+
.highlight .mh { color: #0000cf; font-weight: bold } /* Literal.Number.Hex */
|
129
|
+
.highlight .mi { color: #0000cf; font-weight: bold } /* Literal.Number.Integer */
|
130
|
+
.highlight .mo { color: #0000cf; font-weight: bold } /* Literal.Number.Oct */
|
131
|
+
.highlight .sb { color: #4e9a06 } /* Literal.String.Backtick */
|
132
|
+
.highlight .sc { color: #4e9a06 } /* Literal.String.Char */
|
133
|
+
.highlight .sd { color: #8f5902; font-style: italic } /* Literal.String.Doc */
|
134
|
+
.highlight .s2 { color: #4e9a06 } /* Literal.String.Double */
|
135
|
+
.highlight .se { color: #4e9a06 } /* Literal.String.Escape */
|
136
|
+
.highlight .sh { color: #4e9a06 } /* Literal.String.Heredoc */
|
137
|
+
.highlight .si { color: #4e9a06 } /* Literal.String.Interpol */
|
138
|
+
.highlight .sx { color: #4e9a06 } /* Literal.String.Other */
|
139
|
+
.highlight .sr { color: #4e9a06 } /* Literal.String.Regex */
|
140
|
+
.highlight .s1 { color: #4e9a06 } /* Literal.String.Single */
|
141
|
+
.highlight .ss { color: #4e9a06 } /* Literal.String.Symbol */
|
142
|
+
.highlight .bp { color: #3465a4 } /* Name.Builtin.Pseudo */
|
143
|
+
.highlight .vc { color: #000000 } /* Name.Variable.Class */
|
144
|
+
.highlight .vg { color: #000000 } /* Name.Variable.Global */
|
145
|
+
.highlight .vi { color: #000000 } /* Name.Variable.Instance */
|
146
|
+
.highlight .il { color: #0000cf; font-weight: bold } /* Literal.Number.Integer.Long */
|
147
|
+
|
68
148
|
|
149
|
+
// *** Dark mode ***
|
69
150
|
@media (prefers-color-scheme: dark){
|
70
151
|
|
71
152
|
--c-headerImageFilter: invert(1);
|
@@ -97,8 +178,85 @@
|
|
97
178
|
|
98
179
|
--c-footerText: var(--c-themePrimaryLight);
|
99
180
|
--c-footerImageFilter: invert(1);
|
181
|
+
|
182
|
+
--c-codeShadow: rgba(0, 0, 0, 0);
|
183
|
+
--c-codeShadowHover: rgba(0, 0, 0, 0);
|
184
|
+
|
185
|
+
--c-navigator: var(--c-themePrimaryDark);
|
186
|
+
--c-navigatorFilter: invert(1);
|
187
|
+
|
188
|
+
--c-noCategoryBackground: var(--c-themePrimaryLight);
|
189
|
+
--c-noCategoryText: var(--c-themePrimaryDark);
|
190
|
+
|
191
|
+
--c-tableBorder: var(--c-themePrimaryLight);
|
192
|
+
|
193
|
+
//Syntax highlighting.
|
194
|
+
.highlight pre { background-color: #272822; }
|
195
|
+
.highlight .hll { background-color: #272822; }
|
196
|
+
.highlight .c { color: #75715e } /* Comment */
|
197
|
+
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
|
198
|
+
.highlight .k { color: #66d9ef } /* Keyword */
|
199
|
+
.highlight .l { color: #ae81ff } /* Literal */
|
200
|
+
.highlight .n { color: #f8f8f2 } /* Name */
|
201
|
+
.highlight .o { color: #f92672 } /* Operator */
|
202
|
+
.highlight .p { color: #f8f8f2 } /* Punctuation */
|
203
|
+
.highlight .cm { color: #75715e } /* Comment.Multiline */
|
204
|
+
.highlight .cp { color: #75715e } /* Comment.Preproc */
|
205
|
+
.highlight .c1 { color: #75715e } /* Comment.Single */
|
206
|
+
.highlight .cs { color: #75715e } /* Comment.Special */
|
207
|
+
.highlight .ge { font-style: italic } /* Generic.Emph */
|
208
|
+
.highlight .gs { font-weight: bold } /* Generic.Strong */
|
209
|
+
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
|
210
|
+
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
|
211
|
+
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
|
212
|
+
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
|
213
|
+
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
|
214
|
+
.highlight .kt { color: #66d9ef } /* Keyword.Type */
|
215
|
+
.highlight .ld { color: #e6db74 } /* Literal.Date */
|
216
|
+
.highlight .m { color: #ae81ff } /* Literal.Number */
|
217
|
+
.highlight .s { color: #e6db74 } /* Literal.String */
|
218
|
+
.highlight .na { color: #a6e22e } /* Name.Attribute */
|
219
|
+
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
|
220
|
+
.highlight .nc { color: #a6e22e } /* Name.Class */
|
221
|
+
.highlight .no { color: #66d9ef } /* Name.Constant */
|
222
|
+
.highlight .nd { color: #a6e22e } /* Name.Decorator */
|
223
|
+
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
|
224
|
+
.highlight .ne { color: #a6e22e } /* Name.Exception */
|
225
|
+
.highlight .nf { color: #a6e22e } /* Name.Function */
|
226
|
+
.highlight .nl { color: #f8f8f2 } /* Name.Label */
|
227
|
+
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
|
228
|
+
.highlight .nx { color: #a6e22e } /* Name.Other */
|
229
|
+
.highlight .py { color: #f8f8f2 } /* Name.Property */
|
230
|
+
.highlight .nt { color: #f92672 } /* Name.Tag */
|
231
|
+
.highlight .nv { color: #f8f8f2 } /* Name.Variable */
|
232
|
+
.highlight .ow { color: #f92672 } /* Operator.Word */
|
233
|
+
.highlight .w { color: #f8f8f2 } /* Text.Whitespace */
|
234
|
+
.highlight .mf { color: #ae81ff } /* Literal.Number.Float */
|
235
|
+
.highlight .mh { color: #ae81ff } /* Literal.Number.Hex */
|
236
|
+
.highlight .mi { color: #ae81ff } /* Literal.Number.Integer */
|
237
|
+
.highlight .mo { color: #ae81ff } /* Literal.Number.Oct */
|
238
|
+
.highlight .sb { color: #e6db74 } /* Literal.String.Backtick */
|
239
|
+
.highlight .sc { color: #e6db74 } /* Literal.String.Char */
|
240
|
+
.highlight .sd { color: #e6db74 } /* Literal.String.Doc */
|
241
|
+
.highlight .s2 { color: #e6db74 } /* Literal.String.Double */
|
242
|
+
.highlight .se { color: #ae81ff } /* Literal.String.Escape */
|
243
|
+
.highlight .sh { color: #e6db74 } /* Literal.String.Heredoc */
|
244
|
+
.highlight .si { color: #e6db74 } /* Literal.String.Interpol */
|
245
|
+
.highlight .sx { color: #e6db74 } /* Literal.String.Other */
|
246
|
+
.highlight .sr { color: #e6db74 } /* Literal.String.Regex */
|
247
|
+
.highlight .s1 { color: #e6db74 } /* Literal.String.Single */
|
248
|
+
.highlight .ss { color: #e6db74 } /* Literal.String.Symbol */
|
249
|
+
.highlight .bp { color: #f8f8f2 } /* Name.Builtin.Pseudo */
|
250
|
+
.highlight .vc { color: #f8f8f2 } /* Name.Variable.Class */
|
251
|
+
.highlight .vg { color: #f8f8f2 } /* Name.Variable.Global */
|
252
|
+
.highlight .vi { color: #f8f8f2 } /* Name.Variable.Instance */
|
253
|
+
.highlight .il { color: #ae81ff } /* Literal.Number.Integer.Long */
|
254
|
+
|
255
|
+
//.highlight .gh { } /* Generic Heading & Diff Header */
|
256
|
+
.highlight .gu { color: #75715e; } /* Generic.Subheading & Diff Unified/Comment? */
|
257
|
+
.highlight .gd { color: #f92672; } /* Generic.Deleted & Diff Deleted */
|
258
|
+
.highlight .gi { color: #a6e22e; } /* Generic.Inserted & Diff Inserted */
|
100
259
|
}
|
101
|
-
|
102
260
|
}
|
103
261
|
|
104
262
|
// SIZES
|
Binary file
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><title>ionicons-v5-b</title><polygon points="368 64 144 256 368 448 368 64"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="512" height="512" viewBox="0 0 512 512"><title>ionicons-v5-b</title><polygon points="144 448 368 256 144 64 144 448"/></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 122.88 101.57" style="enable-background:new 0 0 122.88 101.57" xml:space="preserve"><g><path d="M44.97,12.84h-17.2L0,49.37L27.77,85.9h17.2L17.2,49.37L44.97,12.84L44.97,12.84z M77.91,12.84h17.2l27.77,36.53 L95.11,85.9h-17.2l27.77-36.53L77.91,12.84L77.91,12.84z M70.17,0.04l5.96,1.39c0.94,0.22,1.52,1.16,1.31,2.1l-22.5,96.69 c-0.22,0.93-1.16,1.52-2.1,1.31l-5.95-1.39c-0.94-0.22-1.52-1.16-1.31-2.1l22.5-96.69C68.3,0.42,69.24-0.17,70.17,0.04L70.17,0.04 L70.17,0.04z"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="122.88px" height="95.089px" viewBox="0 0 122.88 95.089" enable-background="new 0 0 122.88 95.089" xml:space="preserve"><g><path d="M66.605,9.676c-0.791-0.791-1.718-1.181-2.792-1.181c-1.073,0-2.013,0.39-2.791,1.181l-4.255,4.241 c-1.141-0.738-2.348-1.383-3.61-1.96c-1.261-0.577-2.55-1.072-3.852-1.502V3.931c0-1.1-0.375-2.026-1.141-2.791 C47.401,0.375,46.475,0,45.374,0h-8.187c-1.047,0-1.958,0.375-2.75,1.14c-0.778,0.765-1.168,1.691-1.168,2.791v5.973 c-1.368,0.321-2.697,0.724-3.973,1.221c-1.287,0.496-2.508,1.061-3.663,1.691l-4.711-4.644c-0.738-0.778-1.637-1.181-2.724-1.181 c-1.075,0-2,0.403-2.792,1.181l-5.73,5.745c-0.791,0.791-1.181,1.718-1.181,2.79c0,1.074,0.39,2.014,1.181,2.792l4.242,4.255 c-0.738,1.14-1.382,2.348-1.959,3.608c-0.578,1.262-1.073,2.552-1.504,3.853H3.933c-1.102,0-2.028,0.375-2.792,1.14 C0.376,33.121,0,34.047,0,35.148v8.187c0,1.045,0.376,1.959,1.14,2.751c0.764,0.777,1.691,1.167,2.792,1.167h5.971 c0.322,1.367,0.724,2.696,1.222,3.971c0.498,1.289,1.061,2.537,1.691,3.744l-4.644,4.63c-0.779,0.739-1.181,1.638-1.181,2.726 c0,1.073,0.402,2,1.181,2.792l5.745,5.811c0.791,0.738,1.717,1.102,2.792,1.102c1.072,0,2.011-0.363,2.791-1.102l4.254-4.321 c1.14,0.737,2.349,1.381,3.61,1.96c1.262,0.575,2.55,1.073,3.852,1.502v6.523c0,1.1,0.376,2.025,1.14,2.789 c0.765,0.767,1.692,1.143,2.792,1.143h8.186c1.047,0,1.959-0.376,2.751-1.143c0.777-0.764,1.167-1.689,1.167-2.789v-5.973 c1.369-0.321,2.697-0.724,3.972-1.222c1.289-0.496,2.538-1.061,3.744-1.691l4.63,4.645c0.739,0.778,1.65,1.181,2.753,1.181 c1.112,0,2.025-0.402,2.765-1.181l5.811-5.744c0.738-0.793,1.102-1.719,1.102-2.792s-0.363-2.013-1.102-2.791l-4.321-4.255 c0.738-1.141,1.382-2.348,1.96-3.609c0.575-1.261,1.072-2.551,1.502-3.852h6.523c1.1,0,2.025-0.378,2.789-1.141 c0.766-0.766,1.142-1.691,1.142-2.792v-8.186c0-1.047-0.376-1.958-1.142-2.752c-0.764-0.778-1.689-1.167-2.789-1.167h-5.973 c-0.322-1.315-0.725-2.63-1.222-3.931c-0.496-1.316-1.061-2.55-1.691-3.706l4.645-4.709c0.778-0.738,1.181-1.638,1.181-2.724 c0-1.075-0.402-2-1.181-2.792L66.605,9.676L66.605,9.676z M111.918,53.649c-0.506-0.355-1.044-0.479-1.627-0.376 c-0.583,0.101-1.057,0.401-1.401,0.904l-1.908,2.702c-0.688-0.292-1.402-0.526-2.144-0.721c-0.737-0.194-1.484-0.343-2.231-0.451 l-0.616-3.538c-0.105-0.596-0.395-1.063-0.884-1.406c-0.486-0.343-1.024-0.459-1.621-0.354l-4.441,0.774 c-0.566,0.099-1.025,0.39-1.383,0.879c-0.35,0.487-0.475,1.027-0.369,1.625l0.564,3.238c-0.713,0.303-1.395,0.648-2.037,1.038 c-0.654,0.392-1.263,0.812-1.828,1.264l-2.995-2.073c-0.476-0.352-0.999-0.484-1.59-0.383c-0.583,0.103-1.046,0.407-1.402,0.904 l-2.564,3.659c-0.354,0.504-0.479,1.044-0.377,1.623c0.102,0.585,0.402,1.057,0.905,1.404l2.703,1.907 c-0.292,0.687-0.527,1.402-0.721,2.144c-0.195,0.738-0.343,1.484-0.452,2.231l-3.538,0.616c-0.596,0.104-1.063,0.396-1.406,0.884 c-0.344,0.486-0.458,1.025-0.354,1.621l0.773,4.441c0.099,0.566,0.388,1.026,0.88,1.383c0.487,0.35,1.027,0.474,1.624,0.369 l3.239-0.564c0.304,0.713,0.648,1.394,1.038,2.039c0.392,0.652,0.815,1.274,1.272,1.869l-2.081,2.952 c-0.353,0.475-0.485,0.999-0.383,1.59c0.102,0.583,0.406,1.047,0.904,1.402l3.665,2.607c0.499,0.325,1.036,0.436,1.618,0.334 c0.583-0.101,1.059-0.389,1.41-0.862l1.899-2.746c0.688,0.293,1.403,0.528,2.144,0.721c0.738,0.194,1.484,0.343,2.23,0.45 l0.618,3.54c0.104,0.597,0.396,1.063,0.883,1.404c0.486,0.344,1.025,0.46,1.621,0.356l4.439-0.775 c0.569-0.1,1.028-0.389,1.386-0.879c0.349-0.488,0.474-1.025,0.368-1.624l-0.565-3.241c0.713-0.303,1.396-0.646,2.04-1.037 c0.651-0.393,1.274-0.814,1.87-1.27l2.951,2.081c0.475,0.352,1.008,0.483,1.604,0.378c0.604-0.104,1.061-0.409,1.388-0.901 l2.609-3.665c0.324-0.5,0.435-1.036,0.332-1.618c-0.101-0.583-0.387-1.059-0.86-1.41l-2.748-1.899 c0.294-0.688,0.528-1.403,0.722-2.144c0.194-0.738,0.342-1.484,0.452-2.232l3.537-0.616c0.597-0.104,1.063-0.394,1.405-0.883 c0.344-0.488,0.459-1.024,0.355-1.621l-0.775-4.441c-0.099-0.567-0.389-1.025-0.879-1.384c-0.487-0.351-1.027-0.473-1.624-0.369 l-3.239,0.565c-0.299-0.684-0.642-1.358-1.035-2.017c-0.395-0.667-0.816-1.283-1.267-1.85l2.074-2.995 c0.353-0.475,0.484-0.998,0.38-1.59c-0.101-0.583-0.405-1.045-0.904-1.401L111.918,53.649L111.918,53.649z M99.16,64.929 c1.071-0.188,2.118-0.162,3.147,0.075c1.025,0.246,1.953,0.657,2.777,1.231c0.825,0.582,1.523,1.316,2.101,2.198 c0.573,0.889,0.95,1.865,1.139,2.936c0.187,1.072,0.16,2.119-0.076,3.15c-0.246,1.023-0.655,1.949-1.233,2.776 c-0.582,0.823-1.314,1.522-2.196,2.1c-0.889,0.573-1.865,0.951-2.937,1.139c-1.07,0.186-2.117,0.159-3.148-0.077 c-1.025-0.246-1.95-0.655-2.777-1.232c-0.822-0.582-1.522-1.314-2.1-2.196c-0.572-0.889-0.952-1.866-1.138-2.937 c-0.188-1.07-0.162-2.117,0.075-3.148c0.246-1.025,0.657-1.951,1.231-2.778c0.583-0.821,1.316-1.521,2.198-2.099 C97.114,65.494,98.09,65.116,99.16,64.929L99.16,64.929z M40.262,24.224c2.201,0,4.28,0.417,6.252,1.248 c1.961,0.846,3.666,1.986,5.115,3.421c1.435,1.449,2.575,3.156,3.421,5.113c0.833,1.973,1.248,4.054,1.248,6.254 c0,2.201-0.415,4.282-1.248,6.254c-0.846,1.959-1.986,3.666-3.421,5.115c-1.449,1.436-3.154,2.575-5.115,3.421 c-1.972,0.833-4.051,1.248-6.252,1.248s-4.282-0.415-6.255-1.248c-1.958-0.846-3.664-1.985-5.112-3.421 c-1.437-1.449-2.577-3.155-3.423-5.115c-0.831-1.972-1.248-4.053-1.248-6.254c0-2.2,0.417-4.281,1.248-6.254 c0.846-1.958,1.986-3.664,3.423-5.113c1.448-1.435,3.154-2.576,5.112-3.421C35.979,24.641,38.061,24.224,40.262,24.224 L40.262,24.224z"/></g></svg>
|
@@ -0,0 +1 @@
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="122.433px" height="122.88px" viewBox="0 0 122.433 122.88" enable-background="new 0 0 122.433 122.88" xml:space="preserve"><g><polygon fill-rule="evenodd" clip-rule="evenodd" points="61.216,122.88 0,59.207 39.403,59.207 39.403,0 83.033,0 83.033,59.207 122.433,59.207 61.216,122.88"/></g></svg>
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-simplex
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.5
|
4
|
+
version: 0.9.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ondrej Golasowski
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-01-
|
11
|
+
date: 2021-01-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -72,6 +72,7 @@ files:
|
|
72
72
|
- _layouts/home.html
|
73
73
|
- _layouts/page.html
|
74
74
|
- _layouts/post.html
|
75
|
+
- _plugins/button.rb
|
75
76
|
- _sass/_feed.scss
|
76
77
|
- _sass/_footer.scss
|
77
78
|
- _sass/_global.scss
|
@@ -100,9 +101,15 @@ files:
|
|
100
101
|
- assets/fonts/RobotoSlab-Regular.woff
|
101
102
|
- assets/fonts/RobotoSlab-Regular.woff2
|
102
103
|
- assets/fonts/fonts.css
|
104
|
+
- assets/hqdefault.jpg
|
105
|
+
- assets/img/icons/arrow_left.svg
|
106
|
+
- assets/img/icons/arrow_right.svg
|
103
107
|
- assets/img/icons/brush.svg
|
104
108
|
- assets/img/icons/chip.svg
|
109
|
+
- assets/img/icons/code.svg
|
110
|
+
- assets/img/icons/cog.svg
|
105
111
|
- assets/img/icons/cpp.svg
|
112
|
+
- assets/img/icons/download.svg
|
106
113
|
- assets/img/icons/golasblog_logo.svg
|
107
114
|
- assets/img/icons/question.svg
|
108
115
|
- assets/img/icons/server.svg
|