jekyll-theme-nn 0.1.7 → 0.1.8
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 +5 -5
- data/LICENSE.txt +21 -21
- data/README.md +60 -60
- data/_includes/components/feather-icon.html +9 -9
- data/_includes/components/featured-image.html +10 -0
- data/_includes/components/hero.html +25 -26
- data/_includes/components/made-with.html +34 -34
- data/_includes/components/menu.html +16 -16
- data/_includes/components/post-snippet.html +40 -40
- data/_includes/components/recent-posts.html +9 -9
- data/_includes/components/series-footer.html +156 -156
- data/_includes/components/series-header.html +17 -17
- data/_includes/footer.html +46 -46
- data/_includes/head.html +32 -28
- data/_includes/header.html +33 -34
- data/_layouts/default.html +35 -35
- data/_layouts/front.html +11 -11
- data/_layouts/group.html +28 -28
- data/_layouts/page.html +29 -29
- data/_layouts/post.html +43 -43
- data/_sass/_bulma-tweaks.scss +45 -34
- data/_sass/_highlight.scss +362 -362
- data/_sass/nn-main.scss +4 -4
- data/_sass/vendor/nord/License.md +22 -22
- data/_sass/vendor/nord/nord.scss +235 -235
- data/assets/nn.scss +5 -5
- data/assets/scripts/navbar.js +19 -19
- data/assets/vendor/bulma/LICENSE +21 -21
- data/assets/vendor/feather/LICENSE +20 -20
- metadata +4 -3
data/_includes/header.html
CHANGED
@@ -1,34 +1,33 @@
|
|
1
|
-
<header>
|
2
|
-
<nav class="navbar is-fixed-top is-light" role="navigation"
|
3
|
-
aria-label="main navigation">
|
4
|
-
<div class="container">
|
5
|
-
<div class="navbar-brand">
|
6
|
-
{% if site.logo %}
|
7
|
-
<a href="{{ "/" | relative_url }}" class="navbar-item">
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
<span></span>
|
14
|
-
<span></span>
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
</header>
|
1
|
+
<header>
|
2
|
+
<nav class="navbar is-fixed-top is-light" role="navigation"
|
3
|
+
aria-label="main navigation">
|
4
|
+
<div class="container">
|
5
|
+
<div class="navbar-brand">
|
6
|
+
{% if site.logo %}
|
7
|
+
<a href="{{ "/" | relative_url }}" class="navbar-item">
|
8
|
+
{% asset "{{ site.logo }}" alt="{{ site.logo_alt }}" %}
|
9
|
+
</a>
|
10
|
+
{% endif %}
|
11
|
+
<div class="navbar-burger" data-target="navMenu">
|
12
|
+
<span></span>
|
13
|
+
<span></span>
|
14
|
+
<span></span>
|
15
|
+
</div>
|
16
|
+
</div>
|
17
|
+
<div id="navMenu" class="navbar-menu">
|
18
|
+
<div class="navbar-start">
|
19
|
+
</div>
|
20
|
+
<div class="navbar-end">
|
21
|
+
{% for page in site.pages %}
|
22
|
+
{% if page.menu-title %}
|
23
|
+
<a href="{{ page.url | relative_url }}"
|
24
|
+
class="navbar-item">
|
25
|
+
{{ page.menu-title | escape }}
|
26
|
+
</a>
|
27
|
+
{% endif %}
|
28
|
+
{% endfor %}
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
</div>
|
32
|
+
</nav>
|
33
|
+
</header>
|
data/_layouts/default.html
CHANGED
@@ -1,35 +1,35 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html class="has-navbar-fixed-top"
|
3
|
-
lang="{{ page.lang | default: site.lang | default: 'en'}}">
|
4
|
-
{% include head.html %}
|
5
|
-
<body>
|
6
|
-
{% include header.html %}
|
7
|
-
|
8
|
-
{% if layout.hero %}
|
9
|
-
{% include components/hero.html %}
|
10
|
-
{% endif %}
|
11
|
-
|
12
|
-
<section class="section">
|
13
|
-
<div class="container">
|
14
|
-
{% if layout.menu %}
|
15
|
-
<div class="columns">
|
16
|
-
<div class="column is-narrow">
|
17
|
-
{% include components/menu.html %}
|
18
|
-
</div>
|
19
|
-
<div class="column">
|
20
|
-
{% endif %}
|
21
|
-
<main class="page-content" aria-label="Content">
|
22
|
-
<div class="wrapper">
|
23
|
-
{{ content }}
|
24
|
-
</div>
|
25
|
-
</main>
|
26
|
-
{% if layout.menu %}
|
27
|
-
</div>
|
28
|
-
</div>
|
29
|
-
{% endif %}
|
30
|
-
</div>
|
31
|
-
</section>
|
32
|
-
|
33
|
-
{% include footer.html %}
|
34
|
-
</body>
|
35
|
-
</html>
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html class="has-navbar-fixed-top"
|
3
|
+
lang="{{ page.lang | default: site.lang | default: 'en'}}">
|
4
|
+
{% include head.html %}
|
5
|
+
<body>
|
6
|
+
{% include header.html %}
|
7
|
+
|
8
|
+
{% if layout.hero %}
|
9
|
+
{% include components/hero.html %}
|
10
|
+
{% endif %}
|
11
|
+
|
12
|
+
<section class="section">
|
13
|
+
<div class="container">
|
14
|
+
{% if layout.menu %}
|
15
|
+
<div class="columns">
|
16
|
+
<div class="column is-narrow">
|
17
|
+
{% include components/menu.html %}
|
18
|
+
</div>
|
19
|
+
<div class="column">
|
20
|
+
{% endif %}
|
21
|
+
<main class="page-content" aria-label="Content">
|
22
|
+
<div class="wrapper">
|
23
|
+
{{ content }}
|
24
|
+
</div>
|
25
|
+
</main>
|
26
|
+
{% if layout.menu %}
|
27
|
+
</div>
|
28
|
+
</div>
|
29
|
+
{% endif %}
|
30
|
+
</div>
|
31
|
+
</section>
|
32
|
+
|
33
|
+
{% include footer.html %}
|
34
|
+
</body>
|
35
|
+
</html>
|
data/_layouts/front.html
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
---
|
2
|
-
layout: default
|
3
|
-
hero: true
|
4
|
-
menu: true
|
5
|
-
---
|
6
|
-
|
7
|
-
<section class="front">
|
8
|
-
{{ content }}
|
9
|
-
</section>
|
10
|
-
|
11
|
-
{% include components/recent-posts.html %}
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
hero: true
|
4
|
+
menu: true
|
5
|
+
---
|
6
|
+
|
7
|
+
<section class="front">
|
8
|
+
{{ content }}
|
9
|
+
</section>
|
10
|
+
|
11
|
+
{% include components/recent-posts.html %}
|
data/_layouts/group.html
CHANGED
@@ -1,28 +1,28 @@
|
|
1
|
-
---
|
2
|
-
layout: default
|
3
|
-
---
|
4
|
-
|
5
|
-
<p class="title is-2 has-text-info">
|
6
|
-
{{ page.title }}
|
7
|
-
</p>
|
8
|
-
<p class="subtitle is-6">
|
9
|
-
{{ page.posts | size }} posts in this {{ page.key }}
|
10
|
-
</p>
|
11
|
-
|
12
|
-
{% assign group_data = site.data[page.key] | where: "name", page.slug | first %}
|
13
|
-
{% if group_data %}
|
14
|
-
<p class="content">
|
15
|
-
{{ group_data.content }}
|
16
|
-
</p>
|
17
|
-
<hr>
|
18
|
-
{% endif %}
|
19
|
-
|
20
|
-
<section class="posts-group">
|
21
|
-
{% for post in page.posts %}
|
22
|
-
{% include components/post-snippet.html %}
|
23
|
-
|
24
|
-
{% if forloop.last == false %}
|
25
|
-
<hr>
|
26
|
-
{% endif %}
|
27
|
-
{% endfor %}
|
28
|
-
</section>
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<p class="title is-2 has-text-info">
|
6
|
+
{{ page.title }}
|
7
|
+
</p>
|
8
|
+
<p class="subtitle is-6">
|
9
|
+
{{ page.posts | size }} posts in this {{ page.key }}
|
10
|
+
</p>
|
11
|
+
|
12
|
+
{% assign group_data = site.data[page.key] | where: "name", page.slug | first %}
|
13
|
+
{% if group_data %}
|
14
|
+
<p class="content">
|
15
|
+
{{ group_data.content }}
|
16
|
+
</p>
|
17
|
+
<hr>
|
18
|
+
{% endif %}
|
19
|
+
|
20
|
+
<section class="posts-group">
|
21
|
+
{% for post in page.posts %}
|
22
|
+
{% include components/post-snippet.html %}
|
23
|
+
|
24
|
+
{% if forloop.last == false %}
|
25
|
+
<hr>
|
26
|
+
{% endif %}
|
27
|
+
{% endfor %}
|
28
|
+
</section>
|
data/_layouts/page.html
CHANGED
@@ -1,29 +1,29 @@
|
|
1
|
-
---
|
2
|
-
layout: default
|
3
|
-
---
|
4
|
-
|
5
|
-
<article class="page">
|
6
|
-
<div class="level">
|
7
|
-
<div class="level-left">
|
8
|
-
<header class="page-header">
|
9
|
-
<p class="title is-3 has-text-primary">
|
10
|
-
{{ page.title | default: page.menu-title | escape }}
|
11
|
-
</p>
|
12
|
-
<p class="subtitle is-5">
|
13
|
-
{{ page.date | date: "%B %-d, %Y" }}
|
14
|
-
</p>
|
15
|
-
</header>
|
16
|
-
</div>
|
17
|
-
<div class="level-right">
|
18
|
-
<div class="tags">
|
19
|
-
{% for tag in page.tags %}
|
20
|
-
<span class="tag is-light">{{ tag }}</span>
|
21
|
-
{% endfor %}
|
22
|
-
</div>
|
23
|
-
</div>
|
24
|
-
</div>
|
25
|
-
<hr>
|
26
|
-
<div class="content">
|
27
|
-
{{ content }}
|
28
|
-
</div>
|
29
|
-
</article>
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<article class="page">
|
6
|
+
<div class="level">
|
7
|
+
<div class="level-left">
|
8
|
+
<header class="page-header">
|
9
|
+
<p class="title is-3 has-text-primary">
|
10
|
+
{{ page.title | default: page.menu-title | escape }}
|
11
|
+
</p>
|
12
|
+
<p class="subtitle is-5">
|
13
|
+
{{ page.date | date: "%B %-d, %Y" }}
|
14
|
+
</p>
|
15
|
+
</header>
|
16
|
+
</div>
|
17
|
+
<div class="level-right">
|
18
|
+
<div class="tags">
|
19
|
+
{% for tag in page.tags %}
|
20
|
+
<span class="tag is-light">{{ tag }}</span>
|
21
|
+
{% endfor %}
|
22
|
+
</div>
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
<hr>
|
26
|
+
<div class="content">
|
27
|
+
{{ content }}
|
28
|
+
</div>
|
29
|
+
</article>
|
data/_layouts/post.html
CHANGED
@@ -1,43 +1,43 @@
|
|
1
|
-
---
|
2
|
-
layout: default
|
3
|
-
---
|
4
|
-
|
5
|
-
<article class="post">
|
6
|
-
<section class="post-header">
|
7
|
-
<div class="level">
|
8
|
-
<div class="level-left">
|
9
|
-
<header class="post-title">
|
10
|
-
<p class="title is-3 has-text-primary">
|
11
|
-
{{ page.title | escape }}
|
12
|
-
</p>
|
13
|
-
<p class="subtitle is-5">
|
14
|
-
{{ page.date | date: "%B %-d, %Y" }}
|
15
|
-
</p>
|
16
|
-
</header>
|
17
|
-
</div>
|
18
|
-
<div class="level-right">
|
19
|
-
<div class="tags">
|
20
|
-
{% for tag in page.tags %}
|
21
|
-
<span class="tag is-light">{{ tag }}</span>
|
22
|
-
{% endfor %}
|
23
|
-
</div>
|
24
|
-
</div>
|
25
|
-
</div>
|
26
|
-
</section>
|
27
|
-
|
28
|
-
<hr>
|
29
|
-
|
30
|
-
{% if page.series %}
|
31
|
-
{% include components/series-header.html %}
|
32
|
-
{% endif %}
|
33
|
-
|
34
|
-
<section class="post-content">
|
35
|
-
<div class="content">
|
36
|
-
{{ content }}
|
37
|
-
</div>
|
38
|
-
</section>
|
39
|
-
|
40
|
-
{% if page.series %}
|
41
|
-
{% include components/series-footer.html %}
|
42
|
-
{% endif %}
|
43
|
-
</article>
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<article class="post">
|
6
|
+
<section class="post-header">
|
7
|
+
<div class="level">
|
8
|
+
<div class="level-left">
|
9
|
+
<header class="post-title">
|
10
|
+
<p class="title is-3 has-text-primary">
|
11
|
+
{{ page.title | escape }}
|
12
|
+
</p>
|
13
|
+
<p class="subtitle is-5">
|
14
|
+
{{ page.date | date: "%B %-d, %Y" }}
|
15
|
+
</p>
|
16
|
+
</header>
|
17
|
+
</div>
|
18
|
+
<div class="level-right">
|
19
|
+
<div class="tags">
|
20
|
+
{% for tag in page.tags %}
|
21
|
+
<span class="tag is-light">{{ tag }}</span>
|
22
|
+
{% endfor %}
|
23
|
+
</div>
|
24
|
+
</div>
|
25
|
+
</div>
|
26
|
+
</section>
|
27
|
+
|
28
|
+
<hr>
|
29
|
+
|
30
|
+
{% if page.series %}
|
31
|
+
{% include components/series-header.html %}
|
32
|
+
{% endif %}
|
33
|
+
|
34
|
+
<section class="post-content">
|
35
|
+
<div class="content has-pulled-children">
|
36
|
+
{{ content }}
|
37
|
+
</div>
|
38
|
+
</section>
|
39
|
+
|
40
|
+
{% if page.series %}
|
41
|
+
{% include components/series-footer.html %}
|
42
|
+
{% endif %}
|
43
|
+
</article>
|
data/_sass/_bulma-tweaks.scss
CHANGED
@@ -1,34 +1,45 @@
|
|
1
|
-
.post-excerpt {
|
2
|
-
text-align: justify;
|
3
|
-
}
|
4
|
-
|
5
|
-
.feather {
|
6
|
-
width: 1.5em;
|
7
|
-
height: 1.5em;
|
8
|
-
stroke: currentColor;
|
9
|
-
stroke-width: 2;
|
10
|
-
stroke-linecap: round;
|
11
|
-
stroke-linejoin: round;
|
12
|
-
fill: none;
|
13
|
-
}
|
14
|
-
|
15
|
-
.hero img {
|
16
|
-
height: 6rem;
|
17
|
-
}
|
18
|
-
|
19
|
-
.made-with * {
|
20
|
-
max-height: 1.5rem;
|
21
|
-
filter: grayscale(100%);
|
22
|
-
}
|
23
|
-
|
24
|
-
.content {
|
25
|
-
div[class^="highlighter-"],
|
26
|
-
div[class*=" highlighter-"] {
|
27
|
-
margin-bottom: 1em;
|
28
|
-
}
|
29
|
-
}
|
30
|
-
|
31
|
-
.link-wrapper {
|
32
|
-
display: inherit;
|
33
|
-
align-items: inherit;
|
34
|
-
}
|
1
|
+
.post-excerpt {
|
2
|
+
text-align: justify;
|
3
|
+
}
|
4
|
+
|
5
|
+
.feather {
|
6
|
+
width: 1.5em;
|
7
|
+
height: 1.5em;
|
8
|
+
stroke: currentColor;
|
9
|
+
stroke-width: 2;
|
10
|
+
stroke-linecap: round;
|
11
|
+
stroke-linejoin: round;
|
12
|
+
fill: none;
|
13
|
+
}
|
14
|
+
|
15
|
+
.hero img {
|
16
|
+
height: 6rem;
|
17
|
+
}
|
18
|
+
|
19
|
+
.made-with * {
|
20
|
+
max-height: 1.5rem;
|
21
|
+
filter: grayscale(100%);
|
22
|
+
}
|
23
|
+
|
24
|
+
.content {
|
25
|
+
div[class^="highlighter-"],
|
26
|
+
div[class*=" highlighter-"] {
|
27
|
+
margin-bottom: 1em;
|
28
|
+
}
|
29
|
+
}
|
30
|
+
|
31
|
+
.link-wrapper {
|
32
|
+
display: inherit;
|
33
|
+
align-items: inherit;
|
34
|
+
}
|
35
|
+
|
36
|
+
figure.is-pulled-left {
|
37
|
+
margin-left: 0;
|
38
|
+
}
|
39
|
+
|
40
|
+
.has-pulled-children::after {
|
41
|
+
content: " ";
|
42
|
+
display: block;
|
43
|
+
height: 0;
|
44
|
+
clear: both;
|
45
|
+
}
|
data/_sass/_highlight.scss
CHANGED
@@ -1,362 +1,362 @@
|
|
1
|
-
@import "vendor/nord/nord";
|
2
|
-
|
3
|
-
.highlight {
|
4
|
-
color: $nord4;
|
5
|
-
background-color: $nord0;
|
6
|
-
|
7
|
-
/* Text.Whitespace */
|
8
|
-
.w {
|
9
|
-
background-color: $nord11;
|
10
|
-
}
|
11
|
-
|
12
|
-
/* Error */
|
13
|
-
.err {
|
14
|
-
color: $nord11;
|
15
|
-
}
|
16
|
-
|
17
|
-
/* Other */
|
18
|
-
.x {
|
19
|
-
color: $nord4;
|
20
|
-
}
|
21
|
-
|
22
|
-
/* Keyword */
|
23
|
-
.k {
|
24
|
-
color: $nord9;
|
25
|
-
}
|
26
|
-
|
27
|
-
/* Keyword.Constant */
|
28
|
-
.kc {
|
29
|
-
color: $nord11;
|
30
|
-
}
|
31
|
-
|
32
|
-
/* Keyword.Declaration */
|
33
|
-
.kd {
|
34
|
-
color: $nord9;
|
35
|
-
}
|
36
|
-
/* Keyword.Namespace */
|
37
|
-
.kn {
|
38
|
-
color: $nord9;
|
39
|
-
}
|
40
|
-
|
41
|
-
/* Keyword.Pseudo */
|
42
|
-
.kp {
|
43
|
-
color: $nord9;
|
44
|
-
}
|
45
|
-
|
46
|
-
/* Keyword.Reserved */
|
47
|
-
.kr {
|
48
|
-
color: $nord10;
|
49
|
-
}
|
50
|
-
|
51
|
-
/* Keyword.Type */
|
52
|
-
.kt {
|
53
|
-
color: $nord9;
|
54
|
-
}
|
55
|
-
|
56
|
-
/* Name */
|
57
|
-
.n {
|
58
|
-
color: $nord4;
|
59
|
-
}
|
60
|
-
|
61
|
-
/* Name.Attribute */
|
62
|
-
.na {
|
63
|
-
color: $nord7;
|
64
|
-
}
|
65
|
-
|
66
|
-
/* Name.Builtin */
|
67
|
-
.nb {
|
68
|
-
color: $nord9;
|
69
|
-
}
|
70
|
-
|
71
|
-
/* Name.Builtin.Pseudo */
|
72
|
-
.bp {
|
73
|
-
color: $nord9;
|
74
|
-
}
|
75
|
-
|
76
|
-
/* Name.Class */
|
77
|
-
.nc {
|
78
|
-
color: $nord7;
|
79
|
-
}
|
80
|
-
|
81
|
-
/* Name.Constant */
|
82
|
-
.no {
|
83
|
-
color: $nord7;
|
84
|
-
}
|
85
|
-
|
86
|
-
/* Name.Decorator */
|
87
|
-
.nd {
|
88
|
-
color: $nord7;
|
89
|
-
}
|
90
|
-
|
91
|
-
/* Name.Entity */
|
92
|
-
.ni {
|
93
|
-
color: $nord12;
|
94
|
-
}
|
95
|
-
|
96
|
-
/* Name.Exception */
|
97
|
-
.ne {
|
98
|
-
color: $nord12;
|
99
|
-
}
|
100
|
-
|
101
|
-
/* Name.Function */
|
102
|
-
.nf {
|
103
|
-
color: $nord8;
|
104
|
-
}
|
105
|
-
|
106
|
-
/* Name.Property */
|
107
|
-
.py {
|
108
|
-
color: $nord9;
|
109
|
-
}
|
110
|
-
|
111
|
-
/* Name.Label */
|
112
|
-
.nl {
|
113
|
-
color: $nord8;
|
114
|
-
}
|
115
|
-
|
116
|
-
/* Name.Namespace */
|
117
|
-
.nn {
|
118
|
-
color: $nord8;
|
119
|
-
}
|
120
|
-
|
121
|
-
/* Name.Other */
|
122
|
-
.nx {
|
123
|
-
color: $nord8;
|
124
|
-
}
|
125
|
-
|
126
|
-
/* Name.Tag */
|
127
|
-
.nt {
|
128
|
-
color: $nord9;
|
129
|
-
}
|
130
|
-
|
131
|
-
/* Name.Variable */
|
132
|
-
.nv {
|
133
|
-
color: $nord4;
|
134
|
-
}
|
135
|
-
|
136
|
-
/* Name.Variable.Class */
|
137
|
-
.vc {
|
138
|
-
color: $nord4;
|
139
|
-
}
|
140
|
-
|
141
|
-
/* Name.Variable.Global */
|
142
|
-
.vg {
|
143
|
-
color: $nord4;
|
144
|
-
}
|
145
|
-
|
146
|
-
/* Name.Variable.Instance */
|
147
|
-
.vi {
|
148
|
-
color: $nord4;
|
149
|
-
}
|
150
|
-
|
151
|
-
/* Literal */
|
152
|
-
.l {
|
153
|
-
color: $nord9;
|
154
|
-
}
|
155
|
-
|
156
|
-
/* Literal.Date */
|
157
|
-
.ld {
|
158
|
-
color: $nord9;
|
159
|
-
}
|
160
|
-
|
161
|
-
/* Literal.String */
|
162
|
-
.s {
|
163
|
-
color: $nord14;
|
164
|
-
}
|
165
|
-
|
166
|
-
/* Literal.String.Backtick */
|
167
|
-
.sb {
|
168
|
-
color: $nord14;
|
169
|
-
}
|
170
|
-
|
171
|
-
/* Literal.String.Char */
|
172
|
-
.sc {
|
173
|
-
color: $nord14;
|
174
|
-
}
|
175
|
-
|
176
|
-
/* Literal.String.Doc */
|
177
|
-
.sd {
|
178
|
-
color: $nord14;
|
179
|
-
}
|
180
|
-
|
181
|
-
/* Literal.String.Double */
|
182
|
-
.s2 {
|
183
|
-
color: $nord14;
|
184
|
-
}
|
185
|
-
|
186
|
-
/* Literal.String.Escape */
|
187
|
-
.se {
|
188
|
-
color: $nord12;
|
189
|
-
}
|
190
|
-
|
191
|
-
/* Literal.String.Heredoc */
|
192
|
-
.sh {
|
193
|
-
color: $nord14;
|
194
|
-
}
|
195
|
-
|
196
|
-
/* Literal.String.Interpol */
|
197
|
-
.si {
|
198
|
-
color: $nord14;
|
199
|
-
}
|
200
|
-
|
201
|
-
/* Literal.String.Other */
|
202
|
-
.sx {
|
203
|
-
color: $nord14;
|
204
|
-
}
|
205
|
-
|
206
|
-
/* Literal.String.Regex */
|
207
|
-
.sr {
|
208
|
-
color: $nord13;
|
209
|
-
}
|
210
|
-
|
211
|
-
/* Literal.String.Single */
|
212
|
-
.s1 {
|
213
|
-
color: $nord14;
|
214
|
-
}
|
215
|
-
|
216
|
-
/* Literal.String.Symbol */
|
217
|
-
.ss {
|
218
|
-
color: $nord14;
|
219
|
-
}
|
220
|
-
|
221
|
-
/* Literal.Number */
|
222
|
-
.m {
|
223
|
-
color: $nord15;
|
224
|
-
}
|
225
|
-
|
226
|
-
/* Literal.Number.Float */
|
227
|
-
.mf {
|
228
|
-
color: $nord15;
|
229
|
-
}
|
230
|
-
|
231
|
-
/* Literal.Number.Hex */
|
232
|
-
.mh {
|
233
|
-
color: $nord15;
|
234
|
-
}
|
235
|
-
|
236
|
-
/* Literal.Number.Integer */
|
237
|
-
.mi {
|
238
|
-
color: $nord15;
|
239
|
-
}
|
240
|
-
|
241
|
-
/* Literal.Number.Integer.Long */
|
242
|
-
.il {
|
243
|
-
color: $nord15;
|
244
|
-
}
|
245
|
-
|
246
|
-
/* Literal.Number.Oct */
|
247
|
-
.mo {
|
248
|
-
color: $nord15;
|
249
|
-
}
|
250
|
-
|
251
|
-
/* Literal.Number.Hex */
|
252
|
-
.mx {
|
253
|
-
color: $nord15;
|
254
|
-
}
|
255
|
-
|
256
|
-
/* Literal.Number.Bin */
|
257
|
-
.mb {
|
258
|
-
color: $nord15;
|
259
|
-
}
|
260
|
-
|
261
|
-
/* Operator */
|
262
|
-
.o {
|
263
|
-
color: $nord4;
|
264
|
-
}
|
265
|
-
|
266
|
-
/* Operator.Word */
|
267
|
-
.ow {
|
268
|
-
color: $nord9;
|
269
|
-
}
|
270
|
-
|
271
|
-
/* Punctuation */
|
272
|
-
.p {
|
273
|
-
color: $nord4;
|
274
|
-
}
|
275
|
-
|
276
|
-
/* Comment */
|
277
|
-
.c {
|
278
|
-
color: $nord3;
|
279
|
-
}
|
280
|
-
|
281
|
-
/* Comment.Multiline */
|
282
|
-
.cm {
|
283
|
-
color: $nord3;
|
284
|
-
}
|
285
|
-
|
286
|
-
/* Comment.Preproc */
|
287
|
-
.cp {
|
288
|
-
color: $nord10;
|
289
|
-
}
|
290
|
-
|
291
|
-
/* Comment.Single */
|
292
|
-
.c1 {
|
293
|
-
color: $nord3;
|
294
|
-
}
|
295
|
-
|
296
|
-
/* Comment.Special */
|
297
|
-
.cs {
|
298
|
-
color: $nord3;
|
299
|
-
}
|
300
|
-
|
301
|
-
/* Generic */
|
302
|
-
.g {
|
303
|
-
color: $nord4;
|
304
|
-
}
|
305
|
-
|
306
|
-
/* Generic.Deleted */
|
307
|
-
.gd {
|
308
|
-
color: $nord13;
|
309
|
-
}
|
310
|
-
|
311
|
-
/* Generic.Emph */
|
312
|
-
.ge {
|
313
|
-
color: $nord4;
|
314
|
-
font-style: italic;
|
315
|
-
}
|
316
|
-
|
317
|
-
/* Generic.Error */
|
318
|
-
.gr {
|
319
|
-
color: $nord11;
|
320
|
-
}
|
321
|
-
|
322
|
-
/* Generic.Heading */
|
323
|
-
.gh {
|
324
|
-
color: $nord8;
|
325
|
-
}
|
326
|
-
|
327
|
-
/* Generic.Inserted */
|
328
|
-
.gi {
|
329
|
-
color: $nord4;
|
330
|
-
}
|
331
|
-
|
332
|
-
/* Generic.Output */
|
333
|
-
.go {
|
334
|
-
color: $nord4;
|
335
|
-
}
|
336
|
-
|
337
|
-
/* Generic.Prompt */
|
338
|
-
.gp {
|
339
|
-
color: $nord4;
|
340
|
-
}
|
341
|
-
|
342
|
-
/* Generic.Strong */
|
343
|
-
.gs {
|
344
|
-
color: $nord4;
|
345
|
-
font-weight: bold;
|
346
|
-
}
|
347
|
-
|
348
|
-
/* Generic.Subheading */
|
349
|
-
.gu {
|
350
|
-
color: $nord9;
|
351
|
-
}
|
352
|
-
|
353
|
-
/* Generic.Traceback */
|
354
|
-
.gt {
|
355
|
-
color: $nord13;
|
356
|
-
}
|
357
|
-
|
358
|
-
/* Generic.Lineno */
|
359
|
-
.gl {
|
360
|
-
color: $nord2;
|
361
|
-
}
|
362
|
-
}
|
1
|
+
@import "vendor/nord/nord";
|
2
|
+
|
3
|
+
.highlight {
|
4
|
+
color: $nord4;
|
5
|
+
background-color: $nord0;
|
6
|
+
|
7
|
+
/* Text.Whitespace */
|
8
|
+
.w {
|
9
|
+
background-color: $nord11;
|
10
|
+
}
|
11
|
+
|
12
|
+
/* Error */
|
13
|
+
.err {
|
14
|
+
color: $nord11;
|
15
|
+
}
|
16
|
+
|
17
|
+
/* Other */
|
18
|
+
.x {
|
19
|
+
color: $nord4;
|
20
|
+
}
|
21
|
+
|
22
|
+
/* Keyword */
|
23
|
+
.k {
|
24
|
+
color: $nord9;
|
25
|
+
}
|
26
|
+
|
27
|
+
/* Keyword.Constant */
|
28
|
+
.kc {
|
29
|
+
color: $nord11;
|
30
|
+
}
|
31
|
+
|
32
|
+
/* Keyword.Declaration */
|
33
|
+
.kd {
|
34
|
+
color: $nord9;
|
35
|
+
}
|
36
|
+
/* Keyword.Namespace */
|
37
|
+
.kn {
|
38
|
+
color: $nord9;
|
39
|
+
}
|
40
|
+
|
41
|
+
/* Keyword.Pseudo */
|
42
|
+
.kp {
|
43
|
+
color: $nord9;
|
44
|
+
}
|
45
|
+
|
46
|
+
/* Keyword.Reserved */
|
47
|
+
.kr {
|
48
|
+
color: $nord10;
|
49
|
+
}
|
50
|
+
|
51
|
+
/* Keyword.Type */
|
52
|
+
.kt {
|
53
|
+
color: $nord9;
|
54
|
+
}
|
55
|
+
|
56
|
+
/* Name */
|
57
|
+
.n {
|
58
|
+
color: $nord4;
|
59
|
+
}
|
60
|
+
|
61
|
+
/* Name.Attribute */
|
62
|
+
.na {
|
63
|
+
color: $nord7;
|
64
|
+
}
|
65
|
+
|
66
|
+
/* Name.Builtin */
|
67
|
+
.nb {
|
68
|
+
color: $nord9;
|
69
|
+
}
|
70
|
+
|
71
|
+
/* Name.Builtin.Pseudo */
|
72
|
+
.bp {
|
73
|
+
color: $nord9;
|
74
|
+
}
|
75
|
+
|
76
|
+
/* Name.Class */
|
77
|
+
.nc {
|
78
|
+
color: $nord7;
|
79
|
+
}
|
80
|
+
|
81
|
+
/* Name.Constant */
|
82
|
+
.no {
|
83
|
+
color: $nord7;
|
84
|
+
}
|
85
|
+
|
86
|
+
/* Name.Decorator */
|
87
|
+
.nd {
|
88
|
+
color: $nord7;
|
89
|
+
}
|
90
|
+
|
91
|
+
/* Name.Entity */
|
92
|
+
.ni {
|
93
|
+
color: $nord12;
|
94
|
+
}
|
95
|
+
|
96
|
+
/* Name.Exception */
|
97
|
+
.ne {
|
98
|
+
color: $nord12;
|
99
|
+
}
|
100
|
+
|
101
|
+
/* Name.Function */
|
102
|
+
.nf {
|
103
|
+
color: $nord8;
|
104
|
+
}
|
105
|
+
|
106
|
+
/* Name.Property */
|
107
|
+
.py {
|
108
|
+
color: $nord9;
|
109
|
+
}
|
110
|
+
|
111
|
+
/* Name.Label */
|
112
|
+
.nl {
|
113
|
+
color: $nord8;
|
114
|
+
}
|
115
|
+
|
116
|
+
/* Name.Namespace */
|
117
|
+
.nn {
|
118
|
+
color: $nord8;
|
119
|
+
}
|
120
|
+
|
121
|
+
/* Name.Other */
|
122
|
+
.nx {
|
123
|
+
color: $nord8;
|
124
|
+
}
|
125
|
+
|
126
|
+
/* Name.Tag */
|
127
|
+
.nt {
|
128
|
+
color: $nord9;
|
129
|
+
}
|
130
|
+
|
131
|
+
/* Name.Variable */
|
132
|
+
.nv {
|
133
|
+
color: $nord4;
|
134
|
+
}
|
135
|
+
|
136
|
+
/* Name.Variable.Class */
|
137
|
+
.vc {
|
138
|
+
color: $nord4;
|
139
|
+
}
|
140
|
+
|
141
|
+
/* Name.Variable.Global */
|
142
|
+
.vg {
|
143
|
+
color: $nord4;
|
144
|
+
}
|
145
|
+
|
146
|
+
/* Name.Variable.Instance */
|
147
|
+
.vi {
|
148
|
+
color: $nord4;
|
149
|
+
}
|
150
|
+
|
151
|
+
/* Literal */
|
152
|
+
.l {
|
153
|
+
color: $nord9;
|
154
|
+
}
|
155
|
+
|
156
|
+
/* Literal.Date */
|
157
|
+
.ld {
|
158
|
+
color: $nord9;
|
159
|
+
}
|
160
|
+
|
161
|
+
/* Literal.String */
|
162
|
+
.s {
|
163
|
+
color: $nord14;
|
164
|
+
}
|
165
|
+
|
166
|
+
/* Literal.String.Backtick */
|
167
|
+
.sb {
|
168
|
+
color: $nord14;
|
169
|
+
}
|
170
|
+
|
171
|
+
/* Literal.String.Char */
|
172
|
+
.sc {
|
173
|
+
color: $nord14;
|
174
|
+
}
|
175
|
+
|
176
|
+
/* Literal.String.Doc */
|
177
|
+
.sd {
|
178
|
+
color: $nord14;
|
179
|
+
}
|
180
|
+
|
181
|
+
/* Literal.String.Double */
|
182
|
+
.s2 {
|
183
|
+
color: $nord14;
|
184
|
+
}
|
185
|
+
|
186
|
+
/* Literal.String.Escape */
|
187
|
+
.se {
|
188
|
+
color: $nord12;
|
189
|
+
}
|
190
|
+
|
191
|
+
/* Literal.String.Heredoc */
|
192
|
+
.sh {
|
193
|
+
color: $nord14;
|
194
|
+
}
|
195
|
+
|
196
|
+
/* Literal.String.Interpol */
|
197
|
+
.si {
|
198
|
+
color: $nord14;
|
199
|
+
}
|
200
|
+
|
201
|
+
/* Literal.String.Other */
|
202
|
+
.sx {
|
203
|
+
color: $nord14;
|
204
|
+
}
|
205
|
+
|
206
|
+
/* Literal.String.Regex */
|
207
|
+
.sr {
|
208
|
+
color: $nord13;
|
209
|
+
}
|
210
|
+
|
211
|
+
/* Literal.String.Single */
|
212
|
+
.s1 {
|
213
|
+
color: $nord14;
|
214
|
+
}
|
215
|
+
|
216
|
+
/* Literal.String.Symbol */
|
217
|
+
.ss {
|
218
|
+
color: $nord14;
|
219
|
+
}
|
220
|
+
|
221
|
+
/* Literal.Number */
|
222
|
+
.m {
|
223
|
+
color: $nord15;
|
224
|
+
}
|
225
|
+
|
226
|
+
/* Literal.Number.Float */
|
227
|
+
.mf {
|
228
|
+
color: $nord15;
|
229
|
+
}
|
230
|
+
|
231
|
+
/* Literal.Number.Hex */
|
232
|
+
.mh {
|
233
|
+
color: $nord15;
|
234
|
+
}
|
235
|
+
|
236
|
+
/* Literal.Number.Integer */
|
237
|
+
.mi {
|
238
|
+
color: $nord15;
|
239
|
+
}
|
240
|
+
|
241
|
+
/* Literal.Number.Integer.Long */
|
242
|
+
.il {
|
243
|
+
color: $nord15;
|
244
|
+
}
|
245
|
+
|
246
|
+
/* Literal.Number.Oct */
|
247
|
+
.mo {
|
248
|
+
color: $nord15;
|
249
|
+
}
|
250
|
+
|
251
|
+
/* Literal.Number.Hex */
|
252
|
+
.mx {
|
253
|
+
color: $nord15;
|
254
|
+
}
|
255
|
+
|
256
|
+
/* Literal.Number.Bin */
|
257
|
+
.mb {
|
258
|
+
color: $nord15;
|
259
|
+
}
|
260
|
+
|
261
|
+
/* Operator */
|
262
|
+
.o {
|
263
|
+
color: $nord4;
|
264
|
+
}
|
265
|
+
|
266
|
+
/* Operator.Word */
|
267
|
+
.ow {
|
268
|
+
color: $nord9;
|
269
|
+
}
|
270
|
+
|
271
|
+
/* Punctuation */
|
272
|
+
.p {
|
273
|
+
color: $nord4;
|
274
|
+
}
|
275
|
+
|
276
|
+
/* Comment */
|
277
|
+
.c {
|
278
|
+
color: $nord3;
|
279
|
+
}
|
280
|
+
|
281
|
+
/* Comment.Multiline */
|
282
|
+
.cm {
|
283
|
+
color: $nord3;
|
284
|
+
}
|
285
|
+
|
286
|
+
/* Comment.Preproc */
|
287
|
+
.cp {
|
288
|
+
color: $nord10;
|
289
|
+
}
|
290
|
+
|
291
|
+
/* Comment.Single */
|
292
|
+
.c1 {
|
293
|
+
color: $nord3;
|
294
|
+
}
|
295
|
+
|
296
|
+
/* Comment.Special */
|
297
|
+
.cs {
|
298
|
+
color: $nord3;
|
299
|
+
}
|
300
|
+
|
301
|
+
/* Generic */
|
302
|
+
.g {
|
303
|
+
color: $nord4;
|
304
|
+
}
|
305
|
+
|
306
|
+
/* Generic.Deleted */
|
307
|
+
.gd {
|
308
|
+
color: $nord13;
|
309
|
+
}
|
310
|
+
|
311
|
+
/* Generic.Emph */
|
312
|
+
.ge {
|
313
|
+
color: $nord4;
|
314
|
+
font-style: italic;
|
315
|
+
}
|
316
|
+
|
317
|
+
/* Generic.Error */
|
318
|
+
.gr {
|
319
|
+
color: $nord11;
|
320
|
+
}
|
321
|
+
|
322
|
+
/* Generic.Heading */
|
323
|
+
.gh {
|
324
|
+
color: $nord8;
|
325
|
+
}
|
326
|
+
|
327
|
+
/* Generic.Inserted */
|
328
|
+
.gi {
|
329
|
+
color: $nord4;
|
330
|
+
}
|
331
|
+
|
332
|
+
/* Generic.Output */
|
333
|
+
.go {
|
334
|
+
color: $nord4;
|
335
|
+
}
|
336
|
+
|
337
|
+
/* Generic.Prompt */
|
338
|
+
.gp {
|
339
|
+
color: $nord4;
|
340
|
+
}
|
341
|
+
|
342
|
+
/* Generic.Strong */
|
343
|
+
.gs {
|
344
|
+
color: $nord4;
|
345
|
+
font-weight: bold;
|
346
|
+
}
|
347
|
+
|
348
|
+
/* Generic.Subheading */
|
349
|
+
.gu {
|
350
|
+
color: $nord9;
|
351
|
+
}
|
352
|
+
|
353
|
+
/* Generic.Traceback */
|
354
|
+
.gt {
|
355
|
+
color: $nord13;
|
356
|
+
}
|
357
|
+
|
358
|
+
/* Generic.Lineno */
|
359
|
+
.gl {
|
360
|
+
color: $nord2;
|
361
|
+
}
|
362
|
+
}
|