opendevsecops-jekyll 0.1.0

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.
Files changed (90) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +1755 -0
  3. data/LICENSE.txt +21 -0
  4. data/README.md +110 -0
  5. data/Rakefile +1 -0
  6. data/_includes/components/aux_nav.html +15 -0
  7. data/_includes/components/breadcrumbs.html +144 -0
  8. data/_includes/components/children_nav.html +33 -0
  9. data/_includes/components/footer.html +34 -0
  10. data/_includes/components/header.html +11 -0
  11. data/_includes/components/mermaid.html +45 -0
  12. data/_includes/components/nav.html +75 -0
  13. data/_includes/components/search_footer.html +7 -0
  14. data/_includes/components/search_header.html +9 -0
  15. data/_includes/components/sidebar.html +32 -0
  16. data/_includes/components/site_nav.html +67 -0
  17. data/_includes/css/activation.scss.liquid +332 -0
  18. data/_includes/css/callouts.scss.liquid +93 -0
  19. data/_includes/css/custom.scss.liquid +1 -0
  20. data/_includes/css/just-the-docs.scss.liquid +12 -0
  21. data/_includes/favicon.html +23 -0
  22. data/_includes/fix_linenos.html +73 -0
  23. data/_includes/footer_custom.html +3 -0
  24. data/_includes/head.html +53 -0
  25. data/_includes/head_custom.html +0 -0
  26. data/_includes/header_custom.html +0 -0
  27. data/_includes/icons/code_copy.html +15 -0
  28. data/_includes/icons/document.html +6 -0
  29. data/_includes/icons/expand.html +6 -0
  30. data/_includes/icons/external_link.html +5 -0
  31. data/_includes/icons/icons.html +13 -0
  32. data/_includes/icons/link.html +6 -0
  33. data/_includes/icons/menu.html +6 -0
  34. data/_includes/icons/search.html +6 -0
  35. data/_includes/js/custom.js +0 -0
  36. data/_includes/lunr/custom-data.json +0 -0
  37. data/_includes/lunr/custom-index.js +0 -0
  38. data/_includes/mermaid_config.js +1 -0
  39. data/_includes/nav_footer_custom.html +0 -0
  40. data/_includes/search_placeholder_custom.html +1 -0
  41. data/_includes/sorted_pages.html +109 -0
  42. data/_includes/title.html +5 -0
  43. data/_includes/toc_heading_custom.html +1 -0
  44. data/_layouts/about.html +5 -0
  45. data/_layouts/default.html +41 -0
  46. data/_layouts/home.html +5 -0
  47. data/_layouts/minimal.html +34 -0
  48. data/_layouts/page.html +5 -0
  49. data/_layouts/post.html +5 -0
  50. data/_layouts/table_wrappers.html +7 -0
  51. data/_sass/base.scss +113 -0
  52. data/_sass/buttons.scss +127 -0
  53. data/_sass/code.scss +246 -0
  54. data/_sass/color_schemes/dark.scss +18 -0
  55. data/_sass/color_schemes/legacy_light.scss +208 -0
  56. data/_sass/color_schemes/light.scss +16 -0
  57. data/_sass/content.scss +239 -0
  58. data/_sass/custom/custom.scss +1 -0
  59. data/_sass/custom/setup.scss +1 -0
  60. data/_sass/labels.scss +37 -0
  61. data/_sass/layout.scss +209 -0
  62. data/_sass/modules.scss +17 -0
  63. data/_sass/navigation.scss +235 -0
  64. data/_sass/print.scss +40 -0
  65. data/_sass/search.scss +324 -0
  66. data/_sass/skiptomain.scss +30 -0
  67. data/_sass/support/_variables.scss +117 -0
  68. data/_sass/support/mixins/_buttons.scss +29 -0
  69. data/_sass/support/mixins/_layout.scss +33 -0
  70. data/_sass/support/mixins/_typography.scss +84 -0
  71. data/_sass/support/mixins/mixins.scss +3 -0
  72. data/_sass/support/support.scss +2 -0
  73. data/_sass/tables.scss +56 -0
  74. data/_sass/typography.scss +63 -0
  75. data/_sass/utilities/_colors.scss +237 -0
  76. data/_sass/utilities/_layout.scss +101 -0
  77. data/_sass/utilities/_lists.scss +15 -0
  78. data/_sass/utilities/_spacing.scss +162 -0
  79. data/_sass/utilities/_typography.scss +85 -0
  80. data/_sass/utilities/utilities.scss +5 -0
  81. data/assets/css/just-the-docs-dark.scss +3 -0
  82. data/assets/css/just-the-docs-default.scss +8 -0
  83. data/assets/css/just-the-docs-head-nav.css +24 -0
  84. data/assets/css/just-the-docs-light.scss +3 -0
  85. data/assets/js/just-the-docs.js +616 -0
  86. data/assets/js/zzzz-search-data.json +74 -0
  87. data/bin/just-the-docs +16 -0
  88. data/favicon.ico +0 -0
  89. data/lib/tasks/search.rake +88 -0
  90. metadata +201 -0
@@ -0,0 +1,63 @@
1
+ // Typography
2
+ // stylelint-disable selector-no-type, selector-max-type, selector-max-specificity, selector-max-id
3
+
4
+ h1,
5
+ .text-alpha {
6
+ @include fs-8;
7
+
8
+ font-weight: 300;
9
+ }
10
+
11
+ h2,
12
+ .text-beta,
13
+ #toctitle {
14
+ @include fs-6;
15
+ }
16
+
17
+ h3,
18
+ .text-gamma {
19
+ @include fs-5;
20
+ }
21
+
22
+ h4,
23
+ .text-delta {
24
+ @include fs-2;
25
+
26
+ font-weight: 400;
27
+ text-transform: uppercase;
28
+ letter-spacing: 0.1em;
29
+ }
30
+
31
+ h4 code {
32
+ text-transform: none;
33
+ }
34
+
35
+ h5,
36
+ .text-epsilon {
37
+ @include fs-3;
38
+ }
39
+
40
+ h6,
41
+ .text-zeta {
42
+ @include fs-2;
43
+ }
44
+
45
+ .text-small {
46
+ @include fs-2;
47
+ }
48
+
49
+ .text-mono {
50
+ font-family: $mono-font-family !important;
51
+ }
52
+
53
+ .text-left {
54
+ text-align: left !important;
55
+ }
56
+
57
+ .text-center {
58
+ text-align: center !important;
59
+ }
60
+
61
+ .text-right {
62
+ text-align: right !important;
63
+ }
@@ -0,0 +1,237 @@
1
+ // Utility classes for colors
2
+
3
+ // Text colors
4
+
5
+ .text-grey-dk-000 {
6
+ color: $grey-dk-000 !important;
7
+ }
8
+
9
+ .text-grey-dk-100 {
10
+ color: $grey-dk-100 !important;
11
+ }
12
+
13
+ .text-grey-dk-200 {
14
+ color: $grey-dk-200 !important;
15
+ }
16
+
17
+ .text-grey-dk-250 {
18
+ color: $grey-dk-250 !important;
19
+ }
20
+
21
+ .text-grey-dk-300 {
22
+ color: $grey-dk-300 !important;
23
+ }
24
+
25
+ .text-grey-lt-000 {
26
+ color: $grey-lt-000 !important;
27
+ }
28
+
29
+ .text-grey-lt-100 {
30
+ color: $grey-lt-100 !important;
31
+ }
32
+
33
+ .text-grey-lt-200 {
34
+ color: $grey-lt-200 !important;
35
+ }
36
+
37
+ .text-grey-lt-300 {
38
+ color: $grey-lt-300 !important;
39
+ }
40
+
41
+ .text-blue-000 {
42
+ color: $blue-000 !important;
43
+ }
44
+
45
+ .text-blue-100 {
46
+ color: $blue-100 !important;
47
+ }
48
+
49
+ .text-blue-200 {
50
+ color: $blue-200 !important;
51
+ }
52
+
53
+ .text-blue-300 {
54
+ color: $blue-300 !important;
55
+ }
56
+
57
+ .text-green-000 {
58
+ color: $green-000 !important;
59
+ }
60
+
61
+ .text-green-100 {
62
+ color: $green-100 !important;
63
+ }
64
+
65
+ .text-green-200 {
66
+ color: $green-200 !important;
67
+ }
68
+
69
+ .text-green-300 {
70
+ color: $green-300 !important;
71
+ }
72
+
73
+ .text-purple-000 {
74
+ color: $purple-000 !important;
75
+ }
76
+
77
+ .text-purple-100 {
78
+ color: $purple-100 !important;
79
+ }
80
+
81
+ .text-purple-200 {
82
+ color: $purple-200 !important;
83
+ }
84
+
85
+ .text-purple-300 {
86
+ color: $purple-300 !important;
87
+ }
88
+
89
+ .text-yellow-000 {
90
+ color: $yellow-000 !important;
91
+ }
92
+
93
+ .text-yellow-100 {
94
+ color: $yellow-100 !important;
95
+ }
96
+
97
+ .text-yellow-200 {
98
+ color: $yellow-200 !important;
99
+ }
100
+
101
+ .text-yellow-300 {
102
+ color: $yellow-300 !important;
103
+ }
104
+
105
+ .text-red-000 {
106
+ color: $red-000 !important;
107
+ }
108
+
109
+ .text-red-100 {
110
+ color: $red-100 !important;
111
+ }
112
+
113
+ .text-red-200 {
114
+ color: $red-200 !important;
115
+ }
116
+
117
+ .text-red-300 {
118
+ color: $red-300 !important;
119
+ }
120
+
121
+ // Background colors
122
+
123
+ .bg-grey-dk-000 {
124
+ background-color: $grey-dk-000 !important;
125
+ }
126
+
127
+ .bg-grey-dk-100 {
128
+ background-color: $grey-dk-100 !important;
129
+ }
130
+
131
+ .bg-grey-dk-200 {
132
+ background-color: $grey-dk-200 !important;
133
+ }
134
+
135
+ .bg-grey-dk-250 {
136
+ background-color: $grey-dk-250 !important;
137
+ }
138
+
139
+ .bg-grey-dk-300 {
140
+ background-color: $grey-dk-300 !important;
141
+ }
142
+
143
+ .bg-grey-lt-000 {
144
+ background-color: $grey-lt-000 !important;
145
+ }
146
+
147
+ .bg-grey-lt-100 {
148
+ background-color: $grey-lt-100 !important;
149
+ }
150
+
151
+ .bg-grey-lt-200 {
152
+ background-color: $grey-lt-200 !important;
153
+ }
154
+
155
+ .bg-grey-lt-300 {
156
+ background-color: $grey-lt-300 !important;
157
+ }
158
+
159
+ .bg-blue-000 {
160
+ background-color: $blue-000 !important;
161
+ }
162
+
163
+ .bg-blue-100 {
164
+ background-color: $blue-100 !important;
165
+ }
166
+
167
+ .bg-blue-200 {
168
+ background-color: $blue-200 !important;
169
+ }
170
+
171
+ .bg-blue-300 {
172
+ background-color: $blue-300 !important;
173
+ }
174
+
175
+ .bg-green-000 {
176
+ background-color: $green-000 !important;
177
+ }
178
+
179
+ .bg-green-100 {
180
+ background-color: $green-100 !important;
181
+ }
182
+
183
+ .bg-green-200 {
184
+ background-color: $green-200 !important;
185
+ }
186
+
187
+ .bg-green-300 {
188
+ background-color: $green-300 !important;
189
+ }
190
+
191
+ .bg-purple-000 {
192
+ background-color: $purple-000 !important;
193
+ }
194
+
195
+ .bg-purple-100 {
196
+ background-color: $purple-100 !important;
197
+ }
198
+
199
+ .bg-purple-200 {
200
+ background-color: $purple-200 !important;
201
+ }
202
+
203
+ .bg-purple-300 {
204
+ background-color: $purple-300 !important;
205
+ }
206
+
207
+ .bg-yellow-000 {
208
+ background-color: $yellow-000 !important;
209
+ }
210
+
211
+ .bg-yellow-100 {
212
+ background-color: $yellow-100 !important;
213
+ }
214
+
215
+ .bg-yellow-200 {
216
+ background-color: $yellow-200 !important;
217
+ }
218
+
219
+ .bg-yellow-300 {
220
+ background-color: $yellow-300 !important;
221
+ }
222
+
223
+ .bg-red-000 {
224
+ background-color: $red-000 !important;
225
+ }
226
+
227
+ .bg-red-100 {
228
+ background-color: $red-100 !important;
229
+ }
230
+
231
+ .bg-red-200 {
232
+ background-color: $red-200 !important;
233
+ }
234
+
235
+ .bg-red-300 {
236
+ background-color: $red-300 !important;
237
+ }
@@ -0,0 +1,101 @@
1
+ // Utility classes for layout
2
+
3
+ // Display
4
+
5
+ .d-block {
6
+ display: block !important;
7
+ }
8
+
9
+ .d-flex {
10
+ display: flex !important;
11
+ }
12
+
13
+ .d-inline {
14
+ display: inline !important;
15
+ }
16
+
17
+ .d-inline-block {
18
+ display: inline-block !important;
19
+ }
20
+
21
+ .d-none {
22
+ display: none !important;
23
+ }
24
+
25
+ @each $media-query in map-keys($media-queries) {
26
+ @for $i from 1 through length($spacers) {
27
+ @include mq($media-query) {
28
+ $size: #{map-get($spacers, sp-#{$i - 1})};
29
+ $scale: #{$i - 1};
30
+
31
+ // .d-sm-block, .d-md-none, .d-lg-inline
32
+ .d-#{$media-query}-block {
33
+ display: block !important;
34
+ }
35
+ .d-#{$media-query}-flex {
36
+ display: flex !important;
37
+ }
38
+ .d-#{$media-query}-inline {
39
+ display: inline !important;
40
+ }
41
+ .d-#{$media-query}-inline-block {
42
+ display: inline-block !important;
43
+ }
44
+ .d-#{$media-query}-none {
45
+ display: none !important;
46
+ }
47
+ }
48
+ }
49
+ }
50
+
51
+ // Horizontal alignment
52
+
53
+ .float-left {
54
+ float: left !important;
55
+ }
56
+
57
+ .float-right {
58
+ float: right !important;
59
+ }
60
+
61
+ .flex-justify-start {
62
+ justify-content: flex-start !important;
63
+ }
64
+
65
+ .flex-justify-end {
66
+ justify-content: flex-end !important;
67
+ }
68
+
69
+ .flex-justify-between {
70
+ justify-content: space-between !important;
71
+ }
72
+
73
+ .flex-justify-around {
74
+ justify-content: space-around !important;
75
+ }
76
+
77
+ // Vertical alignment
78
+
79
+ .v-align-baseline {
80
+ vertical-align: baseline !important;
81
+ }
82
+
83
+ .v-align-bottom {
84
+ vertical-align: bottom !important;
85
+ }
86
+
87
+ .v-align-middle {
88
+ vertical-align: middle !important;
89
+ }
90
+
91
+ .v-align-text-bottom {
92
+ vertical-align: text-bottom !important;
93
+ }
94
+
95
+ .v-align-text-top {
96
+ vertical-align: text-top !important;
97
+ }
98
+
99
+ .v-align-top {
100
+ vertical-align: top !important;
101
+ }
@@ -0,0 +1,15 @@
1
+ // Utility classes for lists
2
+
3
+ // stylelint-disable selector-max-type
4
+
5
+ .list-style-none {
6
+ padding: 0 !important;
7
+ margin: 0 !important;
8
+ list-style: none !important;
9
+
10
+ li {
11
+ &::before {
12
+ display: none !important;
13
+ }
14
+ }
15
+ }
@@ -0,0 +1,162 @@
1
+ // Utility classes for margins and padding
2
+
3
+ // stylelint-disable block-opening-brace-space-after, block-opening-brace-space-before
4
+
5
+ // Margin spacer utilities
6
+
7
+ .mx-auto {
8
+ margin-right: auto !important;
9
+ margin-left: auto !important;
10
+ }
11
+
12
+ @for $i from 1 through length($spacers) {
13
+ $size: #{map-get($spacers, sp-#{$i - 1})};
14
+ $scale: #{$i - 1};
15
+
16
+ // .m-0, .m-1, .m-2...
17
+ .m-#{$scale} {
18
+ margin: #{$size} !important;
19
+ }
20
+ .mt-#{$scale} {
21
+ margin-top: #{$size} !important;
22
+ }
23
+ .mr-#{$scale} {
24
+ margin-right: #{$size} !important;
25
+ }
26
+ .mb-#{$scale} {
27
+ margin-bottom: #{$size} !important;
28
+ }
29
+ .ml-#{$scale} {
30
+ margin-left: #{$size} !important;
31
+ }
32
+
33
+ .mx-#{$scale} {
34
+ margin-right: #{$size} !important;
35
+ margin-left: #{$size} !important;
36
+ }
37
+
38
+ .my-#{$scale} {
39
+ margin-top: #{$size} !important;
40
+ margin-bottom: #{$size} !important;
41
+ }
42
+
43
+ .mxn-#{$scale} {
44
+ margin-right: -#{$size} !important;
45
+ margin-left: -#{$size} !important;
46
+ }
47
+ .mx-#{$scale}-auto {
48
+ margin-right: auto !important;
49
+ margin-left: auto !important;
50
+ }
51
+ }
52
+
53
+ @each $media-query in map-keys($media-queries) {
54
+ @for $i from 1 through length($spacers) {
55
+ @include mq($media-query) {
56
+ $size: #{map-get($spacers, sp-#{$i - 1})};
57
+ $scale: #{$i - 1};
58
+
59
+ // .m-sm-0, .m-md-1, .m-lg-2...
60
+ .m-#{$media-query}-#{$scale} {
61
+ margin: #{$size} !important;
62
+ }
63
+ .mt-#{$media-query}-#{$scale} {
64
+ margin-top: #{$size} !important;
65
+ }
66
+ .mr-#{$media-query}-#{$scale} {
67
+ margin-right: #{$size} !important;
68
+ }
69
+ .mb-#{$media-query}-#{$scale} {
70
+ margin-bottom: #{$size} !important;
71
+ }
72
+ .ml-#{$media-query}-#{$scale} {
73
+ margin-left: #{$size} !important;
74
+ }
75
+
76
+ .mx-#{$media-query}-#{$scale} {
77
+ margin-right: #{$size} !important;
78
+ margin-left: #{$size} !important;
79
+ }
80
+
81
+ .my-#{$media-query}-#{$scale} {
82
+ margin-top: #{$size} !important;
83
+ margin-bottom: #{$size} !important;
84
+ }
85
+
86
+ .mxn-#{$media-query}-#{$scale} {
87
+ margin-right: -#{$size} !important;
88
+ margin-left: -#{$size} !important;
89
+ }
90
+ }
91
+ }
92
+ }
93
+
94
+ // Padding spacer utilities
95
+
96
+ @for $i from 1 through length($spacers) {
97
+ $size: #{map-get($spacers, sp-#{$i - 1})};
98
+ $scale: #{$i - 1};
99
+
100
+ // .p-0, .p-1, .p-2...
101
+ .p-#{$scale} {
102
+ padding: #{$size} !important;
103
+ }
104
+ .pt-#{$scale} {
105
+ padding-top: #{$size} !important;
106
+ }
107
+ .pr-#{$scale} {
108
+ padding-right: #{$size} !important;
109
+ }
110
+ .pb-#{$scale} {
111
+ padding-bottom: #{$size} !important;
112
+ }
113
+ .pl-#{$scale} {
114
+ padding-left: #{$size} !important;
115
+ }
116
+
117
+ .px-#{$scale} {
118
+ padding-right: #{$size} !important;
119
+ padding-left: #{$size} !important;
120
+ }
121
+
122
+ .py-#{$scale} {
123
+ padding-top: #{$size} !important;
124
+ padding-bottom: #{$size} !important;
125
+ }
126
+ }
127
+
128
+ @each $media-query in map-keys($media-queries) {
129
+ @include mq($media-query) {
130
+ @for $i from 1 through length($spacers) {
131
+ $size: #{map-get($spacers, sp-#{$i - 1})};
132
+ $scale: #{$i - 1};
133
+
134
+ // .p-sm-0, .p-md-1, .p-lg-2...
135
+ .p-#{$media-query}-#{$scale} {
136
+ padding: #{$size} !important;
137
+ }
138
+ .pt-#{$media-query}-#{$scale} {
139
+ padding-top: #{$size} !important;
140
+ }
141
+ .pr-#{$media-query}-#{$scale} {
142
+ padding-right: #{$size} !important;
143
+ }
144
+ .pb-#{$media-query}-#{$scale} {
145
+ padding-bottom: #{$size} !important;
146
+ }
147
+ .pl-#{$media-query}-#{$scale} {
148
+ padding-left: #{$size} !important;
149
+ }
150
+
151
+ .px-#{$media-query}-#{$scale} {
152
+ padding-right: #{$size} !important;
153
+ padding-left: #{$size} !important;
154
+ }
155
+
156
+ .py-#{$media-query}-#{$scale} {
157
+ padding-top: #{$size} !important;
158
+ padding-bottom: #{$size} !important;
159
+ }
160
+ }
161
+ }
162
+ }
@@ -0,0 +1,85 @@
1
+ // Utility classes for typography
2
+
3
+ .fs-1 {
4
+ @include fs-1;
5
+ }
6
+
7
+ .fs-2 {
8
+ @include fs-2;
9
+ }
10
+
11
+ .fs-3 {
12
+ @include fs-3;
13
+ }
14
+
15
+ .fs-4 {
16
+ @include fs-4;
17
+ }
18
+
19
+ .fs-5 {
20
+ @include fs-5;
21
+ }
22
+
23
+ .fs-6 {
24
+ @include fs-6;
25
+ }
26
+
27
+ .fs-7 {
28
+ @include fs-7;
29
+ }
30
+
31
+ .fs-8 {
32
+ @include fs-8;
33
+ }
34
+
35
+ .fs-9 {
36
+ @include fs-9;
37
+ }
38
+
39
+ .fs-10 {
40
+ @include fs-10;
41
+ }
42
+
43
+ .fw-300 {
44
+ font-weight: 300 !important;
45
+ }
46
+
47
+ .fw-400 {
48
+ font-weight: 400 !important;
49
+ }
50
+
51
+ .fw-500 {
52
+ font-weight: 500 !important;
53
+ }
54
+
55
+ .fw-700 {
56
+ font-weight: 700 !important;
57
+ }
58
+
59
+ .lh-0 {
60
+ line-height: 0 !important;
61
+ }
62
+
63
+ .lh-default {
64
+ line-height: $body-line-height;
65
+ }
66
+
67
+ .lh-tight {
68
+ line-height: $body-heading-line-height;
69
+ }
70
+
71
+ .ls-5 {
72
+ letter-spacing: 0.05em !important;
73
+ }
74
+
75
+ .ls-10 {
76
+ letter-spacing: 0.1em !important;
77
+ }
78
+
79
+ .ls-0 {
80
+ letter-spacing: 0 !important;
81
+ }
82
+
83
+ .text-uppercase {
84
+ text-transform: uppercase !important;
85
+ }
@@ -0,0 +1,5 @@
1
+ @import "./colors";
2
+ @import "./layout";
3
+ @import "./typography";
4
+ @import "./lists";
5
+ @import "./spacing";
@@ -0,0 +1,3 @@
1
+ ---
2
+ ---
3
+ {% include css/just-the-docs.scss.liquid color_scheme="dark" %}
@@ -0,0 +1,8 @@
1
+ ---
2
+ ---
3
+ {% if site.color_scheme and site.color_scheme != "nil" %}
4
+ {% assign color_scheme = site.color_scheme %}
5
+ {% else %}
6
+ {% assign color_scheme = "light" %}
7
+ {% endif %}
8
+ {% include css/just-the-docs.scss.liquid color_scheme=color_scheme %}
@@ -0,0 +1,24 @@
1
+ ---
2
+ ---
3
+ {%- if site.color_scheme and site.color_scheme != "nil" -%}
4
+ {%- assign color_scheme = site.color_scheme -%}
5
+ {%- else -%}
6
+ {%- assign color_scheme = "light" -%}
7
+ {%- endif -%}
8
+
9
+ {%- capture newline %}
10
+ {% endcapture -%}
11
+
12
+ {%- capture scss -%}
13
+ {% include css/just-the-docs.scss.liquid color_scheme=color_scheme %}
14
+ .site-nav ul li a {
15
+ background-image: linear-gradient(
16
+ -90deg,
17
+ rgba($feedback-color, 1) 0%,
18
+ rgba($feedback-color, 0.8) 80%,
19
+ rgba($feedback-color, 0) 100%
20
+ );
21
+ }
22
+ {%- endcapture -%}
23
+
24
+ {{ scss | scssify | split: newline | slice: -3, 3 | join: newline }}
@@ -0,0 +1,3 @@
1
+ ---
2
+ ---
3
+ {% include css/just-the-docs.scss.liquid color_scheme="light" %}