ark-jekyll-theme 0.0.1 → 0.0.2

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 (79) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.md +10 -0
  3. data/README.md +60 -0
  4. data/_includes/disqus_comments.html +40 -0
  5. data/_includes/figure +12 -0
  6. data/_includes/footer.html +16 -0
  7. data/_includes/head.html +18 -0
  8. data/_includes/read_time.html +16 -0
  9. data/_layouts/archive-minimal.html +15 -0
  10. data/_layouts/archive.html +24 -0
  11. data/_layouts/default.html +10 -0
  12. data/_layouts/front.html +9 -0
  13. data/_layouts/home-minimal.html +17 -0
  14. data/_layouts/home.html +26 -0
  15. data/_layouts/page.html +14 -0
  16. data/_layouts/post.html +31 -0
  17. data/_sass/_cms.scss +79 -0
  18. data/_sass/_theme.scss +78 -0
  19. data/_sass/_variables.scss +149 -0
  20. data/_sass/scss/_aspect-ratios.scss +142 -0
  21. data/_sass/scss/_background-position.scss +133 -0
  22. data/_sass/scss/_background-size.scss +41 -0
  23. data/_sass/scss/_border-colors.scss +93 -0
  24. data/_sass/scss/_border-radius.scss +134 -0
  25. data/_sass/scss/_border-style.scss +55 -0
  26. data/_sass/scss/_border-widths.scss +81 -0
  27. data/_sass/scss/_borders.scss +65 -0
  28. data/_sass/scss/_box-shadow.scss +48 -0
  29. data/_sass/scss/_box-sizing.scss +49 -0
  30. data/_sass/scss/_clears.scss +47 -0
  31. data/_sass/scss/_coordinates.scss +153 -0
  32. data/_sass/scss/_debug-children.scss +21 -0
  33. data/_sass/scss/_debug-grid.scss +33 -0
  34. data/_sass/scss/_debug.scss +127 -0
  35. data/_sass/scss/_debug_children.scss +18 -0
  36. data/_sass/scss/_display.scss +111 -0
  37. data/_sass/scss/_flexbox.scss +257 -0
  38. data/_sass/scss/_floats.scss +56 -0
  39. data/_sass/scss/_font-family.scss +99 -0
  40. data/_sass/scss/_font-style.scss +36 -0
  41. data/_sass/scss/_font-weight.scss +87 -0
  42. data/_sass/scss/_forms.scss +23 -0
  43. data/_sass/scss/_gradients.scss +29 -0
  44. data/_sass/scss/_heights.scss +131 -0
  45. data/_sass/scss/_hovers.scss +166 -0
  46. data/_sass/scss/_images.scss +18 -0
  47. data/_sass/scss/_letter-spacing.scss +40 -0
  48. data/_sass/scss/_line-height.scss +41 -0
  49. data/_sass/scss/_links.scss +34 -0
  50. data/_sass/scss/_lists.scss +15 -0
  51. data/_sass/scss/_max-widths.scss +105 -0
  52. data/_sass/scss/_module-template.scss +29 -0
  53. data/_sass/scss/_negative-margins.scss +205 -0
  54. data/_sass/scss/_nested.scss +63 -0
  55. data/_sass/scss/_normalize.scss +454 -0
  56. data/_sass/scss/_opacity.scss +27 -0
  57. data/_sass/scss/_outlines.scss +39 -0
  58. data/_sass/scss/_overflow.scss +82 -0
  59. data/_sass/scss/_position.scss +44 -0
  60. data/_sass/scss/_rotations.scss +50 -0
  61. data/_sass/scss/_skins-pseudo.scss +243 -0
  62. data/_sass/scss/_skins.scss +143 -0
  63. data/_sass/scss/_spacing.scss +947 -0
  64. data/_sass/scss/_styles.scss +15 -0
  65. data/_sass/scss/_tables.scss +42 -0
  66. data/_sass/scss/_text-align.scss +49 -0
  67. data/_sass/scss/_text-decoration.scss +42 -0
  68. data/_sass/scss/_text-transform.scss +53 -0
  69. data/_sass/scss/_type-scale.scss +102 -0
  70. data/_sass/scss/_typography.scss +129 -0
  71. data/_sass/scss/_utilities.scss +57 -0
  72. data/_sass/scss/_vertical-align.scss +43 -0
  73. data/_sass/scss/_visibility.scss +58 -0
  74. data/_sass/scss/_white-space.scss +41 -0
  75. data/_sass/scss/_widths.scss +150 -0
  76. data/_sass/scss/_word-break.scss +43 -0
  77. data/_sass/scss/_z-index.scss +60 -0
  78. data/assets/css/ark.scss +5 -0
  79. metadata +137 -3
@@ -0,0 +1,43 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ VERTICAL ALIGN
11
+
12
+ Media Query Extensions:
13
+ -ns = not-small
14
+ -m = medium
15
+ -l = large
16
+
17
+ */
18
+
19
+ .v-base { vertical-align: baseline; }
20
+ .v-mid { vertical-align: middle; }
21
+ .v-top { vertical-align: top; }
22
+ .v-btm { vertical-align: bottom; }
23
+
24
+ @media #{$breakpoint-not-small} {
25
+ .v-base-ns { vertical-align: baseline; }
26
+ .v-mid-ns { vertical-align: middle; }
27
+ .v-top-ns { vertical-align: top; }
28
+ .v-btm-ns { vertical-align: bottom; }
29
+ }
30
+
31
+ @media #{$breakpoint-medium} {
32
+ .v-base-m { vertical-align: baseline; }
33
+ .v-mid-m { vertical-align: middle; }
34
+ .v-top-m { vertical-align: top; }
35
+ .v-btm-m { vertical-align: bottom; }
36
+ }
37
+
38
+ @media #{$breakpoint-large} {
39
+ .v-base-l { vertical-align: baseline; }
40
+ .v-mid-l { vertical-align: middle; }
41
+ .v-top-l { vertical-align: top; }
42
+ .v-btm-l { vertical-align: bottom; }
43
+ }
@@ -0,0 +1,58 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ VISIBILITY
11
+
12
+ Media Query Extensions:
13
+ -ns = not-small
14
+ -m = medium
15
+ -l = large
16
+
17
+ */
18
+
19
+
20
+ /*
21
+ Text that is hidden but accessible
22
+ Ref: http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
23
+ */
24
+
25
+ .clip {
26
+ position: fixed !important;
27
+ _position: absolute !important;
28
+ clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
29
+ clip: rect(1px, 1px, 1px, 1px);
30
+ }
31
+
32
+ @media #{$breakpoint-not-small} {
33
+ .clip-ns {
34
+ position: fixed !important;
35
+ _position: absolute !important;
36
+ clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
37
+ clip: rect(1px, 1px, 1px, 1px);
38
+ }
39
+ }
40
+
41
+ @media #{$breakpoint-medium} {
42
+ .clip-m {
43
+ position: fixed !important;
44
+ _position: absolute !important;
45
+ clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
46
+ clip: rect(1px, 1px, 1px, 1px);
47
+ }
48
+ }
49
+
50
+ @media #{$breakpoint-large} {
51
+ .clip-l {
52
+ position: fixed !important;
53
+ _position: absolute !important;
54
+ clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
55
+ clip: rect(1px, 1px, 1px, 1px);
56
+ }
57
+ }
58
+
@@ -0,0 +1,41 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ WHITE SPACE
11
+
12
+ Media Query Extensions:
13
+ -ns = not-small
14
+ -m = medium
15
+ -l = large
16
+
17
+ */
18
+
19
+
20
+ .ws-normal { white-space: normal; }
21
+ .nowrap { white-space: nowrap; }
22
+ .pre { white-space: pre; }
23
+
24
+ @media #{$breakpoint-not-small} {
25
+ .ws-normal-ns { white-space: normal; }
26
+ .nowrap-ns { white-space: nowrap; }
27
+ .pre-ns { white-space: pre; }
28
+ }
29
+
30
+ @media #{$breakpoint-medium} {
31
+ .ws-normal-m { white-space: normal; }
32
+ .nowrap-m { white-space: nowrap; }
33
+ .pre-m { white-space: pre; }
34
+ }
35
+
36
+ @media #{$breakpoint-large} {
37
+ .ws-normal-l { white-space: normal; }
38
+ .nowrap-l { white-space: nowrap; }
39
+ .pre-l { white-space: pre; }
40
+ }
41
+
@@ -0,0 +1,150 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ WIDTHS
11
+ Docs: http://tachyons.io/docs/layout/widths/
12
+
13
+ Base:
14
+ w = width
15
+
16
+ Modifiers
17
+ 1 = 1st step in width scale
18
+ 2 = 2nd step in width scale
19
+ 3 = 3rd step in width scale
20
+ 4 = 4th step in width scale
21
+ 5 = 5th step in width scale
22
+
23
+ -10 = literal value 10%
24
+ -20 = literal value 20%
25
+ -25 = literal value 25%
26
+ -30 = literal value 30%
27
+ -33 = literal value 33%
28
+ -34 = literal value 34%
29
+ -40 = literal value 40%
30
+ -50 = literal value 50%
31
+ -60 = literal value 60%
32
+ -70 = literal value 70%
33
+ -75 = literal value 75%
34
+ -80 = literal value 80%
35
+ -90 = literal value 90%
36
+ -100 = literal value 100%
37
+
38
+ -third = 100% / 3 (Not supported in opera mini or IE8)
39
+ -two-thirds = 100% / 1.5 (Not supported in opera mini or IE8)
40
+ -auto = string value auto
41
+
42
+
43
+ Media Query Extensions:
44
+ -ns = not-small
45
+ -m = medium
46
+ -l = large
47
+
48
+ */
49
+
50
+ /* Width Scale */
51
+
52
+ .w1 { width: $width-1; }
53
+ .w2 { width: $width-2; }
54
+ .w3 { width: $width-3; }
55
+ .w4 { width: $width-4; }
56
+ .w5 { width: $width-5; }
57
+
58
+ .w-10 { width: 10%; }
59
+ .w-20 { width: 20%; }
60
+ .w-25 { width: 25%; }
61
+ .w-30 { width: 30%; }
62
+ .w-33 { width: 33%; }
63
+ .w-34 { width: 34%; }
64
+ .w-40 { width: 40%; }
65
+ .w-50 { width: 50%; }
66
+ .w-60 { width: 60%; }
67
+ .w-70 { width: 70%; }
68
+ .w-75 { width: 75%; }
69
+ .w-80 { width: 80%; }
70
+ .w-90 { width: 90%; }
71
+ .w-100 { width: 100%; }
72
+
73
+ .w-third { width: (100% / 3); }
74
+ .w-two-thirds { width: (100% / 1.5); }
75
+ .w-auto { width: auto; }
76
+
77
+ @media #{$breakpoint-not-small} {
78
+ .w1-ns { width: $width-1; }
79
+ .w2-ns { width: $width-2; }
80
+ .w3-ns { width: $width-3; }
81
+ .w4-ns { width: $width-4; }
82
+ .w5-ns { width: $width-5; }
83
+ .w-10-ns { width: 10%; }
84
+ .w-20-ns { width: 20%; }
85
+ .w-25-ns { width: 25%; }
86
+ .w-30-ns { width: 30%; }
87
+ .w-33-ns { width: 33%; }
88
+ .w-34-ns { width: 34%; }
89
+ .w-40-ns { width: 40%; }
90
+ .w-50-ns { width: 50%; }
91
+ .w-60-ns { width: 60%; }
92
+ .w-70-ns { width: 70%; }
93
+ .w-75-ns { width: 75%; }
94
+ .w-80-ns { width: 80%; }
95
+ .w-90-ns { width: 90%; }
96
+ .w-100-ns { width: 100%; }
97
+ .w-third-ns { width: (100% / 3); }
98
+ .w-two-thirds-ns { width: (100% / 1.5); }
99
+ .w-auto-ns { width: auto; }
100
+ }
101
+
102
+ @media #{$breakpoint-medium} {
103
+ .w1-m { width: $width-1; }
104
+ .w2-m { width: $width-2; }
105
+ .w3-m { width: $width-3; }
106
+ .w4-m { width: $width-4; }
107
+ .w5-m { width: $width-5; }
108
+ .w-10-m { width: 10%; }
109
+ .w-20-m { width: 20%; }
110
+ .w-25-m { width: 25%; }
111
+ .w-30-m { width: 30%; }
112
+ .w-33-m { width: 33%; }
113
+ .w-34-m { width: 34%; }
114
+ .w-40-m { width: 40%; }
115
+ .w-50-m { width: 50%; }
116
+ .w-60-m { width: 60%; }
117
+ .w-70-m { width: 70%; }
118
+ .w-75-m { width: 75%; }
119
+ .w-80-m { width: 80%; }
120
+ .w-90-m { width: 90%; }
121
+ .w-100-m { width: 100%; }
122
+ .w-third-m { width: (100% / 3); }
123
+ .w-two-thirds-m { width: (100% / 1.5); }
124
+ .w-auto-m { width: auto; }
125
+ }
126
+
127
+ @media #{$breakpoint-large} {
128
+ .w1-l { width: $width-1; }
129
+ .w2-l { width: $width-2; }
130
+ .w3-l { width: $width-3; }
131
+ .w4-l { width: $width-4; }
132
+ .w5-l { width: $width-5; }
133
+ .w-10-l { width: 10%; }
134
+ .w-20-l { width: 20%; }
135
+ .w-25-l { width: 25%; }
136
+ .w-30-l { width: 30%; }
137
+ .w-33-l { width: 33%; }
138
+ .w-34-l { width: 34%; }
139
+ .w-40-l { width: 40%; }
140
+ .w-50-l { width: 50%; }
141
+ .w-60-l { width: 60%; }
142
+ .w-70-l { width: 70%; }
143
+ .w-75-l { width: 75%; }
144
+ .w-80-l { width: 80%; }
145
+ .w-90-l { width: 90%; }
146
+ .w-100-l { width: 100%; }
147
+ .w-third-l { width: (100% / 3); }
148
+ .w-two-thirds-l { width: (100% / 1.5); }
149
+ .w-auto-l { width: auto; }
150
+ }
@@ -0,0 +1,43 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ WORD BREAK
11
+
12
+ Base:
13
+ word = word-break
14
+
15
+ Media Query Extensions:
16
+ -ns = not-small
17
+ -m = medium
18
+ -l = large
19
+
20
+ */
21
+
22
+ .word-normal { word-break: normal; }
23
+ .word-wrap { word-break: break-all; }
24
+ .word-nowrap { word-break: keep-all; }
25
+
26
+ @media #{$breakpoint-not-small} {
27
+ .word-normal-ns { word-break: normal; }
28
+ .word-wrap-ns { word-break: break-all; }
29
+ .word-nowrap-ns { word-break: keep-all; }
30
+ }
31
+
32
+ @media #{$breakpoint-medium} {
33
+ .word-normal-m { word-break: normal; }
34
+ .word-wrap-m { word-break: break-all; }
35
+ .word-nowrap-m { word-break: keep-all; }
36
+ }
37
+
38
+ @media #{$breakpoint-large} {
39
+ .word-normal-l { word-break: normal; }
40
+ .word-wrap-l { word-break: break-all; }
41
+ .word-nowrap-l { word-break: keep-all; }
42
+ }
43
+
@@ -0,0 +1,60 @@
1
+
2
+ // Converted Variables
3
+
4
+
5
+ // Custom Media Query Variables
6
+
7
+
8
+ /*
9
+
10
+ Z-INDEX
11
+
12
+ Base
13
+ z = z-index
14
+
15
+ Modifiers
16
+ -0 = literal value 0
17
+ -1 = literal value 1
18
+ -2 = literal value 2
19
+ -3 = literal value 3
20
+ -4 = literal value 4
21
+ -5 = literal value 5
22
+ -999 = literal value 999
23
+ -9999 = literal value 9999
24
+
25
+ -max = largest accepted z-index value as integer
26
+
27
+ -inherit = string value inherit
28
+ -initial = string value initial
29
+ -unset = string value unset
30
+
31
+ MDN: https://developer.mozilla.org/en/docs/Web/CSS/z-index
32
+ Spec: http://www.w3.org/TR/CSS2/zindex.html
33
+ Articles:
34
+ https://philipwalton.com/articles/what-no-one-told-you-about-z-index/
35
+
36
+ Tips on extending:
37
+ There might be a time worth using negative z-index values.
38
+ Or if you are using tachyons with another project, you might need to
39
+ adjust these values to suit your needs.
40
+
41
+ */
42
+
43
+ .z-0 { z-index: 0; }
44
+ .z-1 { z-index: 1; }
45
+ .z-2 { z-index: 2; }
46
+ .z-3 { z-index: 3; }
47
+ .z-4 { z-index: 4; }
48
+ .z-5 { z-index: 5; }
49
+
50
+ .z-999 { z-index: 999; }
51
+ .z-9999 { z-index: 9999; }
52
+
53
+ .z-max {
54
+ z-index: 2147483647;
55
+ }
56
+
57
+ .z-inherit { z-index: inherit; }
58
+ .z-initial { z-index: initial; }
59
+ .z-unset { z-index: unset; }
60
+
@@ -0,0 +1,5 @@
1
+ ---
2
+ ---
3
+ @charset "UTF-8";
4
+
5
+ @import "_theme";
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ark-jekyll-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - desired persona
@@ -24,6 +24,62 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '3.7'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-sitemap
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.2'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.2'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-seo-tag
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.4'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.4'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-feed
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.9.3
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.9.3
69
+ - !ruby/object:Gem::Dependency
70
+ name: jekyll-data
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.0'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.0'
27
83
  - !ruby/object:Gem::Dependency
28
84
  name: bundler
29
85
  requirement: !ruby/object:Gem::Requirement
@@ -58,11 +114,89 @@ email:
58
114
  executables: []
59
115
  extensions: []
60
116
  extra_rdoc_files: []
61
- files: []
117
+ files:
118
+ - LICENSE.md
119
+ - README.md
120
+ - _includes/disqus_comments.html
121
+ - _includes/figure
122
+ - _includes/footer.html
123
+ - _includes/head.html
124
+ - _includes/read_time.html
125
+ - _layouts/archive-minimal.html
126
+ - _layouts/archive.html
127
+ - _layouts/default.html
128
+ - _layouts/front.html
129
+ - _layouts/home-minimal.html
130
+ - _layouts/home.html
131
+ - _layouts/page.html
132
+ - _layouts/post.html
133
+ - _sass/_cms.scss
134
+ - _sass/_theme.scss
135
+ - _sass/_variables.scss
136
+ - _sass/scss/_aspect-ratios.scss
137
+ - _sass/scss/_background-position.scss
138
+ - _sass/scss/_background-size.scss
139
+ - _sass/scss/_border-colors.scss
140
+ - _sass/scss/_border-radius.scss
141
+ - _sass/scss/_border-style.scss
142
+ - _sass/scss/_border-widths.scss
143
+ - _sass/scss/_borders.scss
144
+ - _sass/scss/_box-shadow.scss
145
+ - _sass/scss/_box-sizing.scss
146
+ - _sass/scss/_clears.scss
147
+ - _sass/scss/_coordinates.scss
148
+ - _sass/scss/_debug-children.scss
149
+ - _sass/scss/_debug-grid.scss
150
+ - _sass/scss/_debug.scss
151
+ - _sass/scss/_debug_children.scss
152
+ - _sass/scss/_display.scss
153
+ - _sass/scss/_flexbox.scss
154
+ - _sass/scss/_floats.scss
155
+ - _sass/scss/_font-family.scss
156
+ - _sass/scss/_font-style.scss
157
+ - _sass/scss/_font-weight.scss
158
+ - _sass/scss/_forms.scss
159
+ - _sass/scss/_gradients.scss
160
+ - _sass/scss/_heights.scss
161
+ - _sass/scss/_hovers.scss
162
+ - _sass/scss/_images.scss
163
+ - _sass/scss/_letter-spacing.scss
164
+ - _sass/scss/_line-height.scss
165
+ - _sass/scss/_links.scss
166
+ - _sass/scss/_lists.scss
167
+ - _sass/scss/_max-widths.scss
168
+ - _sass/scss/_module-template.scss
169
+ - _sass/scss/_negative-margins.scss
170
+ - _sass/scss/_nested.scss
171
+ - _sass/scss/_normalize.scss
172
+ - _sass/scss/_opacity.scss
173
+ - _sass/scss/_outlines.scss
174
+ - _sass/scss/_overflow.scss
175
+ - _sass/scss/_position.scss
176
+ - _sass/scss/_rotations.scss
177
+ - _sass/scss/_skins-pseudo.scss
178
+ - _sass/scss/_skins.scss
179
+ - _sass/scss/_spacing.scss
180
+ - _sass/scss/_styles.scss
181
+ - _sass/scss/_tables.scss
182
+ - _sass/scss/_text-align.scss
183
+ - _sass/scss/_text-decoration.scss
184
+ - _sass/scss/_text-transform.scss
185
+ - _sass/scss/_type-scale.scss
186
+ - _sass/scss/_typography.scss
187
+ - _sass/scss/_utilities.scss
188
+ - _sass/scss/_vertical-align.scss
189
+ - _sass/scss/_visibility.scss
190
+ - _sass/scss/_white-space.scss
191
+ - _sass/scss/_widths.scss
192
+ - _sass/scss/_word-break.scss
193
+ - _sass/scss/_z-index.scss
194
+ - assets/css/ark.scss
62
195
  homepage: https://desiredpersona.com/open-source/
63
196
  licenses:
64
197
  - MIT
65
- metadata: {}
198
+ metadata:
199
+ plugin_type: theme
66
200
  post_install_message:
67
201
  rdoc_options: []
68
202
  require_paths: