just-the-docs 0.1.6 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/nav.html +39 -19
- data/_layouts/default.html +8 -3
- data/_sass/base.scss +8 -2
- data/_sass/buttons.scss +11 -7
- data/_sass/code.scss +3 -3
- data/_sass/color_schemes/dark.scss +14 -0
- data/_sass/content.scss +6 -0
- data/_sass/custom/custom.scss +11 -3
- data/_sass/layout.scss +4 -4
- data/_sass/navigation.scss +21 -5
- data/_sass/search.scss +6 -4
- data/_sass/support/_variables.scss +8 -0
- data/_sass/tables.scss +2 -1
- data/_sass/utilities/_colors.scss +8 -0
- data/assets/css/dark-mode-preview.scss +41 -0
- data/assets/css/just-the-docs.scss +13 -3
- metadata +10 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1ee4012df0af4513d5e2f63830405f4e457bfa72
|
4
|
+
data.tar.gz: 15b2e45b803671c5188059037d8fcfcb0cb08132
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d6fadcecb8b62cbf53c7fd1d04855844b77f221603b811d5561b30dfe7d6a36a3173c8d68919ee22765f4fe6f664536392b98c22c91482b9b011d610d09145e
|
7
|
+
data.tar.gz: e1995c1385211169970ed4a5d3bf371a7b705e7180bac8a9703bc21ca47e97326b47c3c7df444ff7f3d848cacc4969a17ff5ceac1fb78dceb9d2f7ec05d9852d
|
data/_includes/nav.html
CHANGED
@@ -1,24 +1,44 @@
|
|
1
1
|
<nav>
|
2
2
|
<ul class="navigation-list">
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
{% if node.parent == nil
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
3
|
+
{% assign pages_list = site.html_pages | sort:"nav_order" %}
|
4
|
+
{% for node in pages_list %}
|
5
|
+
{% unless node.nav_exclude %}
|
6
|
+
{% if node.parent == nil %}
|
7
|
+
<li class="navigation-list-item{% if page.url == node.url or page.parent == node.title or page.grand_parent == node.title %} active{% endif %}">
|
8
|
+
{% if page.parent == node.title or page.grand_parent == node.title %}
|
9
|
+
{% assign first_level_url = node.url | absolute_url %}
|
10
|
+
{% endif %}
|
11
|
+
<a href="{{ node.url | absolute_url }}" class="navigation-list-link{% if page.url == node.url %} active{% endif %}">{{ node.title }}</a>
|
12
|
+
{% if node.has_children %}
|
13
|
+
{% assign children_list = site.html_pages | sort:"nav_order" %}
|
14
|
+
<ul class="navigation-list-child-list ">
|
15
|
+
{% for child in children_list %}
|
16
|
+
{% if child.parent == node.title %}
|
17
|
+
<li class="navigation-list-item {% if page.url == child.url or page.parent == child.title %} active{% endif %}">
|
18
|
+
{% if page.url == child.url or page.parent == child.title %}
|
19
|
+
{% assign second_level_url = child.url | absolute_url %}
|
20
|
+
{% endif %}
|
21
|
+
<a href="{{ child.url | absolute_url }}" class="navigation-list-link{% if page.url == child.url %} active{% endif %}">{{ child.title }}</a>
|
22
|
+
{% if child.has_children %}
|
23
|
+
{% assign grand_children_list = site.html_pages | sort:"nav_order" %}
|
24
|
+
<ul class="navigation-list-child-list">
|
25
|
+
{% for grand_child in grand_children_list %}
|
26
|
+
{% if grand_child.parent == child.title %}
|
27
|
+
<li class="navigation-list-item {% if page.url == grand_child.url %} active{% endif %}">
|
28
|
+
<a href="{{ grand_child.url | absolute_url }}" class="navigation-list-link{% if page.url == grand_child.url %} active{% endif %}">{{ grand_child.title }}</a>
|
29
|
+
</li>
|
30
|
+
{% endif %}
|
31
|
+
{% endfor %}
|
32
|
+
</ul>
|
33
|
+
{% endif %}
|
34
|
+
</li>
|
35
|
+
{% endif %}
|
36
|
+
{% endfor %}
|
37
|
+
</ul>
|
38
|
+
{% endif %}
|
39
|
+
</li>
|
20
40
|
{% endif %}
|
21
|
-
|
22
|
-
|
41
|
+
{% endunless %}
|
42
|
+
{% endfor %}
|
23
43
|
</ul>
|
24
44
|
</nav>
|
data/_layouts/default.html
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
<div class="page-wrap">
|
7
7
|
<div class="side-bar">
|
8
|
-
<a href="{{ site.url }}{{ site.baseurl }}" class="site-title fs-6
|
8
|
+
<a href="{{ site.url }}{{ site.baseurl }}" class="site-title fs-6 lh-tight">{{ site.title }}</a>
|
9
9
|
<span class="fs-3"><button class="js-main-nav-trigger navigation-list-toggle btn btn-outline" type="button" data-text-toggle="Hide">Menu</button></span>
|
10
10
|
<div class="navigation main-nav js-main-nav">
|
11
11
|
{% include nav.html %}
|
@@ -37,10 +37,15 @@
|
|
37
37
|
</div>
|
38
38
|
<div class="main-content">
|
39
39
|
{% unless page.url == "/" %}
|
40
|
-
{% if page.parent
|
40
|
+
{% if page.parent %}
|
41
41
|
<nav class="breadcrumb-nav">
|
42
42
|
<ol class="breadcrumb-nav-list">
|
43
|
-
|
43
|
+
{% if page.grand_parent %}
|
44
|
+
<li class="breadcrumb-nav-list-item"><a href="{{ first_level_url }}">{{ page.grand_parent }}</a></li>
|
45
|
+
<li class="breadcrumb-nav-list-item"><a href="{{ second_level_url }}">{{ page.parent }}</a></li>
|
46
|
+
{% else %}
|
47
|
+
<li class="breadcrumb-nav-list-item"><a href="{{ first_level_url }}">{{ page.parent }}</a></li>
|
48
|
+
{% endif %}
|
44
49
|
<li class="breadcrumb-nav-list-item"><span>{{ page.title }}</span></li>
|
45
50
|
</ol>
|
46
51
|
</nav>
|
data/_sass/base.scss
CHANGED
@@ -7,6 +7,11 @@
|
|
7
7
|
box-sizing: border-box;
|
8
8
|
}
|
9
9
|
|
10
|
+
::selection {
|
11
|
+
color: $white;
|
12
|
+
background: $link-color;
|
13
|
+
}
|
14
|
+
|
10
15
|
html {
|
11
16
|
@include fs-4;
|
12
17
|
}
|
@@ -16,6 +21,7 @@ body {
|
|
16
21
|
font-size: inherit;
|
17
22
|
line-height: $body-line-height;
|
18
23
|
color: $body-text-color;
|
24
|
+
background-color: $body-background-color;
|
19
25
|
}
|
20
26
|
|
21
27
|
p,
|
@@ -64,7 +70,7 @@ a {
|
|
64
70
|
|
65
71
|
a:not([class]) {
|
66
72
|
text-decoration: none;
|
67
|
-
background-image: linear-gradient($
|
73
|
+
background-image: linear-gradient($border-color 0%, $border-color 100%);
|
68
74
|
background-repeat: repeat-x;
|
69
75
|
background-position: 0 100%;
|
70
76
|
background-size: 1px 1px;
|
@@ -99,6 +105,6 @@ hr {
|
|
99
105
|
height: 1px;
|
100
106
|
padding: 0;
|
101
107
|
margin: $sp-6 0;
|
102
|
-
background-color: $
|
108
|
+
background-color: $border-color;
|
103
109
|
border: 0;
|
104
110
|
}
|
data/_sass/buttons.scss
CHANGED
@@ -15,11 +15,11 @@
|
|
15
15
|
font-size: inherit;
|
16
16
|
font-weight: 500;
|
17
17
|
line-height: 1.5;
|
18
|
-
color: $
|
18
|
+
color: $link-color;
|
19
19
|
text-decoration: none;
|
20
20
|
vertical-align: baseline;
|
21
21
|
cursor: pointer;
|
22
|
-
background-color:
|
22
|
+
background-color: $base-button-color;
|
23
23
|
border-width: 0;
|
24
24
|
border-radius: 3px;
|
25
25
|
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12), 0 3px 10px rgba(0, 0, 0, 0.08);
|
@@ -38,7 +38,7 @@
|
|
38
38
|
|
39
39
|
&:hover,
|
40
40
|
&.zeroclipboard-is-hover {
|
41
|
-
color: $
|
41
|
+
color: darken($link-color, 2%);
|
42
42
|
}
|
43
43
|
|
44
44
|
&:hover,
|
@@ -46,13 +46,13 @@
|
|
46
46
|
&.zeroclipboard-is-hover,
|
47
47
|
&.zeroclipboard-is-active {
|
48
48
|
text-decoration: none;
|
49
|
-
background-color:
|
49
|
+
background-color: darken($base-button-color, 1%);
|
50
50
|
}
|
51
51
|
|
52
52
|
&:active,
|
53
53
|
&.selected,
|
54
54
|
&.zeroclipboard-is-active {
|
55
|
-
background-color:
|
55
|
+
background-color: darken($base-button-color, 3%);
|
56
56
|
background-image: none;
|
57
57
|
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15);
|
58
58
|
}
|
@@ -75,7 +75,7 @@
|
|
75
75
|
}
|
76
76
|
|
77
77
|
.btn-outline {
|
78
|
-
color: $
|
78
|
+
color: $link-color;
|
79
79
|
background: transparent;
|
80
80
|
box-shadow: inset 0 0 0 2px $grey-lt-300;
|
81
81
|
|
@@ -83,7 +83,7 @@
|
|
83
83
|
&:active,
|
84
84
|
&.zeroclipboard-is-hover,
|
85
85
|
&.zeroclipboard-is-active {
|
86
|
-
color: $
|
86
|
+
color: darken($link-color, 4%);
|
87
87
|
text-decoration: none;
|
88
88
|
background-color: transparent;
|
89
89
|
box-shadow: inset 0 0 0 3px $grey-lt-300;
|
@@ -101,6 +101,10 @@
|
|
101
101
|
}
|
102
102
|
}
|
103
103
|
|
104
|
+
.btn-primary {
|
105
|
+
@include btn-color($white, $btn-primary-color);
|
106
|
+
}
|
107
|
+
|
104
108
|
.btn-purple {
|
105
109
|
@include btn-color($white, $purple-100);
|
106
110
|
}
|
data/_sass/code.scss
CHANGED
@@ -6,15 +6,15 @@
|
|
6
6
|
code {
|
7
7
|
padding: 0.2em 0.15em;
|
8
8
|
font-weight: 400;
|
9
|
-
background-color: $
|
9
|
+
background-color: $code-background-color;
|
10
10
|
border: $border $border-color;
|
11
11
|
border-radius: $border-radius;
|
12
12
|
}
|
13
13
|
|
14
|
-
.highlight {
|
14
|
+
pre.highlight {
|
15
15
|
padding: $sp-3;
|
16
16
|
margin-bottom: 0;
|
17
|
-
background-color: $
|
17
|
+
background-color: $code-background-color;
|
18
18
|
|
19
19
|
code {
|
20
20
|
padding: 0;
|
@@ -0,0 +1,14 @@
|
|
1
|
+
|
2
|
+
$body-background-color: $grey-dk-300;
|
3
|
+
$sidebar-color: $grey-dk-300;
|
4
|
+
$border-color: $grey-dk-200;
|
5
|
+
|
6
|
+
$body-text-color: $grey-lt-300;
|
7
|
+
$body-heading-color: $grey-lt-000;
|
8
|
+
$nav-child-link-color: $grey-dk-000;
|
9
|
+
|
10
|
+
$link-color: $blue-000;
|
11
|
+
$btn-primary-color: $blue-200;
|
12
|
+
$base-button-color: $grey-dk-250;
|
13
|
+
|
14
|
+
$code-background-color: $grey-dk-250;
|
data/_sass/content.scss
CHANGED
data/_sass/custom/custom.scss
CHANGED
@@ -17,6 +17,7 @@
|
|
17
17
|
// $grey-dk-000: #959396;
|
18
18
|
// $grey-dk-100: #5c5962;
|
19
19
|
// $grey-dk-200: #44434d;
|
20
|
+
// $grey-dk-250: #302d36 !default;
|
20
21
|
// $grey-dk-300: #27262b;
|
21
22
|
//
|
22
23
|
// $grey-lt-000: #f5f6fa;
|
@@ -39,9 +40,16 @@
|
|
39
40
|
// $green-200: #009c7b;
|
40
41
|
// $green-300: #026e57;
|
41
42
|
//
|
42
|
-
// $body-
|
43
|
-
// $
|
44
|
-
// $
|
43
|
+
// $body-background-color: $white !default;
|
44
|
+
// $sidebar-color: $grey-lt-000 !default;
|
45
|
+
// $code-background-color: $grey-lt-000 !default;
|
46
|
+
|
47
|
+
// $body-text-color: $grey-dk-100 !default;
|
48
|
+
// $body-heading-color: $grey-dk-300 !default;
|
49
|
+
// $nav-child-link-color: $grey-dk-100 !default;
|
50
|
+
// $link-color: $purple-000 !default;
|
51
|
+
// $btn-primary-color: $purple-100 !default;
|
52
|
+
// $base-button-color: #f7f7f7 !default;
|
45
53
|
//
|
46
54
|
// //
|
47
55
|
// // Media queries in pixels
|
data/_sass/layout.scss
CHANGED
@@ -21,7 +21,7 @@
|
|
21
21
|
flex-wrap: wrap;
|
22
22
|
padding-top: $gutter-spacing-sm;
|
23
23
|
padding-bottom: $gutter-spacing-sm;
|
24
|
-
background-color: $
|
24
|
+
background-color: $sidebar-color;
|
25
25
|
|
26
26
|
@include mq(md) {
|
27
27
|
flex-wrap: nowrap;
|
@@ -75,10 +75,10 @@
|
|
75
75
|
}
|
76
76
|
|
77
77
|
.page-header {
|
78
|
-
background-color: $
|
78
|
+
background-color: $sidebar-color;
|
79
79
|
|
80
80
|
@include mq(md) {
|
81
|
-
background-color: $
|
81
|
+
background-color: $body-background-color;
|
82
82
|
}
|
83
83
|
|
84
84
|
.main-content {
|
@@ -138,6 +138,6 @@ body {
|
|
138
138
|
position: static;
|
139
139
|
align-self: flex-end;
|
140
140
|
justify-self: end;
|
141
|
-
background-color: $
|
141
|
+
background-color: $sidebar-color;
|
142
142
|
}
|
143
143
|
}
|
data/_sass/navigation.scss
CHANGED
@@ -5,7 +5,8 @@
|
|
5
5
|
.site-title {
|
6
6
|
display: block;
|
7
7
|
flex: 1 1 auto;
|
8
|
-
|
8
|
+
color: $body-heading-color;
|
9
|
+
background-color: $sidebar-color;
|
9
10
|
|
10
11
|
@include mq(md) {
|
11
12
|
position: absolute;
|
@@ -34,7 +35,7 @@
|
|
34
35
|
list-style: none;
|
35
36
|
|
36
37
|
.navigation-list-link {
|
37
|
-
color: $
|
38
|
+
color: $nav-child-link-color;
|
38
39
|
}
|
39
40
|
|
40
41
|
.navigation-list-item {
|
@@ -44,13 +45,13 @@
|
|
44
45
|
position: absolute;
|
45
46
|
margin-top: 0.3em;
|
46
47
|
margin-left: -0.8em;
|
47
|
-
color: $
|
48
|
+
color: rgba($body-text-color, 0.3);
|
48
49
|
content: "- ";
|
49
50
|
}
|
50
51
|
|
51
52
|
&.active {
|
52
53
|
&::before {
|
53
|
-
color: $
|
54
|
+
color: $body-text-color;
|
54
55
|
}
|
55
56
|
}
|
56
57
|
}
|
@@ -63,6 +64,16 @@
|
|
63
64
|
@include mq(md) {
|
64
65
|
@include fs-3;
|
65
66
|
}
|
67
|
+
|
68
|
+
.navigation-list-child-list {
|
69
|
+
display: none;
|
70
|
+
}
|
71
|
+
|
72
|
+
&.active {
|
73
|
+
.navigation-list-child-list {
|
74
|
+
display: block;
|
75
|
+
}
|
76
|
+
}
|
66
77
|
}
|
67
78
|
|
68
79
|
.navigation-list-link {
|
@@ -72,7 +83,7 @@
|
|
72
83
|
|
73
84
|
&.active {
|
74
85
|
font-weight: 600;
|
75
|
-
color: $
|
86
|
+
color: $body-heading-color;
|
76
87
|
text-decoration: none;
|
77
88
|
}
|
78
89
|
}
|
@@ -101,6 +112,11 @@
|
|
101
112
|
}
|
102
113
|
|
103
114
|
// Breadcrumb nav
|
115
|
+
.breadcrumb-nav {
|
116
|
+
@include mq(md) {
|
117
|
+
margin-top: -$sp-4;
|
118
|
+
}
|
119
|
+
}
|
104
120
|
|
105
121
|
.breadcrumb-nav-list {
|
106
122
|
padding-left: 0;
|
data/_sass/search.scss
CHANGED
@@ -39,20 +39,21 @@
|
|
39
39
|
display: block;
|
40
40
|
width: 300px;
|
41
41
|
margin-top: $gutter-spacing;
|
42
|
-
background: $
|
42
|
+
background: lighten($body-background-color, 1%);
|
43
43
|
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07), 0 4px 14px rgba(0, 0, 0, 0.05);
|
44
44
|
}
|
45
45
|
}
|
46
46
|
|
47
47
|
.search-input-wrap {
|
48
48
|
display: flex;
|
49
|
-
background-color: $
|
49
|
+
background-color: $body-background-color;
|
50
50
|
}
|
51
51
|
|
52
52
|
.search-input {
|
53
53
|
width: 100%;
|
54
54
|
padding-top: $sp-1;
|
55
55
|
padding-bottom: $sp-1;
|
56
|
+
background-color: $body-background-color;
|
56
57
|
border-top: 0;
|
57
58
|
border-right: 0;
|
58
59
|
border-bottom: 0;
|
@@ -64,7 +65,7 @@
|
|
64
65
|
box-shadow: none;
|
65
66
|
|
66
67
|
+ .search-icon {
|
67
|
-
fill: $
|
68
|
+
fill: $link-color;
|
68
69
|
}
|
69
70
|
}
|
70
71
|
|
@@ -107,6 +108,7 @@
|
|
107
108
|
padding-left: $sp-3;
|
108
109
|
|
109
110
|
&:hover {
|
110
|
-
|
111
|
+
color: $body-heading-color;
|
112
|
+
background-color: darken($body-background-color, 2%);
|
111
113
|
}
|
112
114
|
}
|
@@ -17,6 +17,7 @@ $white: #fff !default;
|
|
17
17
|
$grey-dk-000: #959396 !default;
|
18
18
|
$grey-dk-100: #5c5962 !default;
|
19
19
|
$grey-dk-200: #44434d !default;
|
20
|
+
$grey-dk-250: #302d36 !default;
|
20
21
|
$grey-dk-300: #27262b !default;
|
21
22
|
|
22
23
|
$grey-lt-000: #f5f6fa !default;
|
@@ -49,9 +50,16 @@ $red-100: #f96e65 !default;
|
|
49
50
|
$red-200: #e94c4c !default;
|
50
51
|
$red-300: #dd2e2e !default;
|
51
52
|
|
53
|
+
$body-background-color: $white !default;
|
54
|
+
$sidebar-color: $grey-lt-000 !default;
|
55
|
+
$code-background-color: $grey-lt-000 !default;
|
56
|
+
|
52
57
|
$body-text-color: $grey-dk-100 !default;
|
53
58
|
$body-heading-color: $grey-dk-300 !default;
|
59
|
+
$nav-child-link-color: $grey-dk-100 !default;
|
54
60
|
$link-color: $purple-000 !default;
|
61
|
+
$btn-primary-color: $purple-100 !default;
|
62
|
+
$base-button-color: #f7f7f7 !default;
|
55
63
|
|
56
64
|
//
|
57
65
|
// Media queries in pixels
|
data/_sass/tables.scss
CHANGED
@@ -25,7 +25,8 @@ td {
|
|
25
25
|
padding-right: $sp-3;
|
26
26
|
padding-bottom: $sp-2;
|
27
27
|
padding-left: $sp-3;
|
28
|
-
|
28
|
+
background-color: lighten($body-background-color, 2%);
|
29
|
+
border-bottom: $border rgba($border-color, 0.5);
|
29
30
|
border-left: $border $border-color;
|
30
31
|
|
31
32
|
&:first-of-type {
|
@@ -16,6 +16,10 @@
|
|
16
16
|
color: $grey-dk-200 !important;
|
17
17
|
}
|
18
18
|
|
19
|
+
.text-grey-dk-250 {
|
20
|
+
color: $grey-dk-250 !important;
|
21
|
+
}
|
22
|
+
|
19
23
|
.text-grey-dk-300 {
|
20
24
|
color: $grey-dk-300 !important;
|
21
25
|
}
|
@@ -130,6 +134,10 @@
|
|
130
134
|
background-color: $grey-dk-200 !important;
|
131
135
|
}
|
132
136
|
|
137
|
+
.bg-grey-dk-250 {
|
138
|
+
background-color: $grey-dk-250 !important;
|
139
|
+
}
|
140
|
+
|
133
141
|
.bg-grey-dk-300 {
|
134
142
|
background-color: $grey-dk-300 !important;
|
135
143
|
}
|
@@ -0,0 +1,41 @@
|
|
1
|
+
---
|
2
|
+
# this ensures Jekyll reads the file to be transformed into CSS later
|
3
|
+
# only Main files contain this front matter, not partials.
|
4
|
+
---
|
5
|
+
|
6
|
+
//
|
7
|
+
// Import external dependencies
|
8
|
+
//
|
9
|
+
|
10
|
+
@import "./vendor/normalize.scss/normalize.scss";
|
11
|
+
|
12
|
+
//
|
13
|
+
// Import Just the docs scss
|
14
|
+
//
|
15
|
+
|
16
|
+
// Support
|
17
|
+
@import "./support/support";
|
18
|
+
|
19
|
+
//
|
20
|
+
// Import custom color scheme scss
|
21
|
+
//
|
22
|
+
|
23
|
+
@import "./color_schemes/dark.scss";
|
24
|
+
|
25
|
+
// Modules
|
26
|
+
@import "./base";
|
27
|
+
@import "./layout";
|
28
|
+
@import "./content";
|
29
|
+
@import "./navigation";
|
30
|
+
@import "./typography";
|
31
|
+
@import "./labels";
|
32
|
+
@import "./buttons";
|
33
|
+
@import "./search";
|
34
|
+
@import "./tables";
|
35
|
+
@import "./code";
|
36
|
+
@import "./utilities/utilities";
|
37
|
+
|
38
|
+
//
|
39
|
+
// Import custom overrides
|
40
|
+
//
|
41
|
+
@import "./custom/custom";
|
@@ -4,7 +4,7 @@
|
|
4
4
|
---
|
5
5
|
|
6
6
|
//
|
7
|
-
// Import
|
7
|
+
// Import external dependencies
|
8
8
|
//
|
9
9
|
|
10
10
|
@import "./vendor/normalize.scss/normalize.scss";
|
@@ -16,8 +16,13 @@
|
|
16
16
|
// Support
|
17
17
|
@import "./support/support";
|
18
18
|
|
19
|
-
//
|
20
|
-
|
19
|
+
//
|
20
|
+
// Import custom color scheme scss
|
21
|
+
//
|
22
|
+
|
23
|
+
{% if site.color_scheme == "dark" %}
|
24
|
+
@import "./color_schemes/dark.scss";
|
25
|
+
{% endif %}
|
21
26
|
|
22
27
|
// Modules
|
23
28
|
@import "./base";
|
@@ -31,3 +36,8 @@
|
|
31
36
|
@import "./tables";
|
32
37
|
@import "./code";
|
33
38
|
@import "./utilities/utilities";
|
39
|
+
|
40
|
+
//
|
41
|
+
// Import custom overrides
|
42
|
+
//
|
43
|
+
@import "./custom/custom";
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: just-the-docs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Patrick Marsceill
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-11-
|
11
|
+
date: 2018-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -16,42 +16,42 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 3.8.5
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 3.8.5
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - "~>"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version:
|
33
|
+
version: 12.3.1
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version:
|
40
|
+
version: 12.3.1
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: bundler
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version:
|
47
|
+
version: 1.17.1
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version:
|
54
|
+
version: 1.17.1
|
55
55
|
description:
|
56
56
|
email:
|
57
57
|
- patrick.marsceill@gmail.com
|
@@ -72,6 +72,7 @@ files:
|
|
72
72
|
- _sass/base.scss
|
73
73
|
- _sass/buttons.scss
|
74
74
|
- _sass/code.scss
|
75
|
+
- _sass/color_schemes/dark.scss
|
75
76
|
- _sass/content.scss
|
76
77
|
- _sass/custom/custom.scss
|
77
78
|
- _sass/labels.scss
|
@@ -96,6 +97,7 @@ files:
|
|
96
97
|
- _sass/vendor/normalize.scss/README.md
|
97
98
|
- _sass/vendor/normalize.scss/normalize.scss
|
98
99
|
- _sass/vendor/normalize.scss/package.json
|
100
|
+
- assets/css/dark-mode-preview.scss
|
99
101
|
- assets/css/just-the-docs.scss
|
100
102
|
- assets/images/just-the-docs.png
|
101
103
|
- assets/images/search.svg
|