jekyll-theme-jam 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +10 -0
- data/LICENSE.md +10 -0
- data/README.md +63 -0
- data/_includes/disqus_comments.html +14 -0
- data/_includes/figure +12 -0
- data/_includes/footer.html +17 -0
- data/_includes/google-analytics.html +7 -0
- data/_includes/google-tag-manager-noscript.html +3 -0
- data/_includes/google-tag-manager.html +6 -0
- data/_includes/head.html +13 -0
- data/_includes/netlify-form.html +18 -0
- data/_includes/read_time.html +16 -0
- data/_layouts/archive.html +15 -0
- data/_layouts/default.html +12 -0
- data/_layouts/front.html +11 -0
- data/_layouts/home.html +25 -0
- data/_layouts/page.html +14 -0
- data/_layouts/post.html +30 -0
- data/_sass/_cms.scss +80 -0
- data/_sass/_theme.scss +78 -0
- data/_sass/_variables.scss +149 -0
- data/_sass/scss/_aspect-ratios.scss +142 -0
- data/_sass/scss/_background-position.scss +133 -0
- data/_sass/scss/_background-size.scss +41 -0
- data/_sass/scss/_border-colors.scss +93 -0
- data/_sass/scss/_border-radius.scss +134 -0
- data/_sass/scss/_border-style.scss +55 -0
- data/_sass/scss/_border-widths.scss +81 -0
- data/_sass/scss/_borders.scss +65 -0
- data/_sass/scss/_box-shadow.scss +48 -0
- data/_sass/scss/_box-sizing.scss +49 -0
- data/_sass/scss/_clears.scss +47 -0
- data/_sass/scss/_coordinates.scss +153 -0
- data/_sass/scss/_debug-children.scss +21 -0
- data/_sass/scss/_debug-grid.scss +33 -0
- data/_sass/scss/_debug.scss +127 -0
- data/_sass/scss/_debug_children.scss +18 -0
- data/_sass/scss/_display.scss +111 -0
- data/_sass/scss/_flexbox.scss +257 -0
- data/_sass/scss/_floats.scss +56 -0
- data/_sass/scss/_font-family.scss +99 -0
- data/_sass/scss/_font-style.scss +36 -0
- data/_sass/scss/_font-weight.scss +87 -0
- data/_sass/scss/_forms.scss +23 -0
- data/_sass/scss/_gradients.scss +29 -0
- data/_sass/scss/_heights.scss +131 -0
- data/_sass/scss/_hovers.scss +166 -0
- data/_sass/scss/_images.scss +18 -0
- data/_sass/scss/_letter-spacing.scss +40 -0
- data/_sass/scss/_line-height.scss +41 -0
- data/_sass/scss/_links.scss +34 -0
- data/_sass/scss/_lists.scss +15 -0
- data/_sass/scss/_max-widths.scss +105 -0
- data/_sass/scss/_module-template.scss +29 -0
- data/_sass/scss/_negative-margins.scss +205 -0
- data/_sass/scss/_nested.scss +63 -0
- data/_sass/scss/_normalize.scss +454 -0
- data/_sass/scss/_opacity.scss +27 -0
- data/_sass/scss/_outlines.scss +39 -0
- data/_sass/scss/_overflow.scss +82 -0
- data/_sass/scss/_position.scss +44 -0
- data/_sass/scss/_rotations.scss +50 -0
- data/_sass/scss/_skins-pseudo.scss +243 -0
- data/_sass/scss/_skins.scss +143 -0
- data/_sass/scss/_spacing.scss +947 -0
- data/_sass/scss/_styles.scss +15 -0
- data/_sass/scss/_tables.scss +42 -0
- data/_sass/scss/_text-align.scss +49 -0
- data/_sass/scss/_text-decoration.scss +42 -0
- data/_sass/scss/_text-transform.scss +53 -0
- data/_sass/scss/_type-scale.scss +102 -0
- data/_sass/scss/_typography.scss +129 -0
- data/_sass/scss/_utilities.scss +57 -0
- data/_sass/scss/_vertical-align.scss +43 -0
- data/_sass/scss/_visibility.scss +58 -0
- data/_sass/scss/_white-space.scss +41 -0
- data/_sass/scss/_widths.scss +150 -0
- data/_sass/scss/_word-break.scss +43 -0
- data/_sass/scss/_z-index.scss +60 -0
- data/assets/css/jam.scss +5 -0
- metadata +209 -0
@@ -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
|
+
|
data/assets/css/jam.scss
ADDED
metadata
ADDED
@@ -0,0 +1,209 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jekyll-theme-jam
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- desired persona
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-06-14 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: jekyll
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.8'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.8'
|
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.5'
|
48
|
+
type: :runtime
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '2.5'
|
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.10.0
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: 0.10.0
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: bundler
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '1.12'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '1.12'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: rake
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '10.0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '10.0'
|
97
|
+
description:
|
98
|
+
email:
|
99
|
+
- hello@desiredpersona.com
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- CHANGELOG.md
|
105
|
+
- LICENSE.md
|
106
|
+
- README.md
|
107
|
+
- _includes/disqus_comments.html
|
108
|
+
- _includes/figure
|
109
|
+
- _includes/footer.html
|
110
|
+
- _includes/google-analytics.html
|
111
|
+
- _includes/google-tag-manager-noscript.html
|
112
|
+
- _includes/google-tag-manager.html
|
113
|
+
- _includes/head.html
|
114
|
+
- _includes/netlify-form.html
|
115
|
+
- _includes/read_time.html
|
116
|
+
- _layouts/archive.html
|
117
|
+
- _layouts/default.html
|
118
|
+
- _layouts/front.html
|
119
|
+
- _layouts/home.html
|
120
|
+
- _layouts/page.html
|
121
|
+
- _layouts/post.html
|
122
|
+
- _sass/_cms.scss
|
123
|
+
- _sass/_theme.scss
|
124
|
+
- _sass/_variables.scss
|
125
|
+
- _sass/scss/_aspect-ratios.scss
|
126
|
+
- _sass/scss/_background-position.scss
|
127
|
+
- _sass/scss/_background-size.scss
|
128
|
+
- _sass/scss/_border-colors.scss
|
129
|
+
- _sass/scss/_border-radius.scss
|
130
|
+
- _sass/scss/_border-style.scss
|
131
|
+
- _sass/scss/_border-widths.scss
|
132
|
+
- _sass/scss/_borders.scss
|
133
|
+
- _sass/scss/_box-shadow.scss
|
134
|
+
- _sass/scss/_box-sizing.scss
|
135
|
+
- _sass/scss/_clears.scss
|
136
|
+
- _sass/scss/_coordinates.scss
|
137
|
+
- _sass/scss/_debug-children.scss
|
138
|
+
- _sass/scss/_debug-grid.scss
|
139
|
+
- _sass/scss/_debug.scss
|
140
|
+
- _sass/scss/_debug_children.scss
|
141
|
+
- _sass/scss/_display.scss
|
142
|
+
- _sass/scss/_flexbox.scss
|
143
|
+
- _sass/scss/_floats.scss
|
144
|
+
- _sass/scss/_font-family.scss
|
145
|
+
- _sass/scss/_font-style.scss
|
146
|
+
- _sass/scss/_font-weight.scss
|
147
|
+
- _sass/scss/_forms.scss
|
148
|
+
- _sass/scss/_gradients.scss
|
149
|
+
- _sass/scss/_heights.scss
|
150
|
+
- _sass/scss/_hovers.scss
|
151
|
+
- _sass/scss/_images.scss
|
152
|
+
- _sass/scss/_letter-spacing.scss
|
153
|
+
- _sass/scss/_line-height.scss
|
154
|
+
- _sass/scss/_links.scss
|
155
|
+
- _sass/scss/_lists.scss
|
156
|
+
- _sass/scss/_max-widths.scss
|
157
|
+
- _sass/scss/_module-template.scss
|
158
|
+
- _sass/scss/_negative-margins.scss
|
159
|
+
- _sass/scss/_nested.scss
|
160
|
+
- _sass/scss/_normalize.scss
|
161
|
+
- _sass/scss/_opacity.scss
|
162
|
+
- _sass/scss/_outlines.scss
|
163
|
+
- _sass/scss/_overflow.scss
|
164
|
+
- _sass/scss/_position.scss
|
165
|
+
- _sass/scss/_rotations.scss
|
166
|
+
- _sass/scss/_skins-pseudo.scss
|
167
|
+
- _sass/scss/_skins.scss
|
168
|
+
- _sass/scss/_spacing.scss
|
169
|
+
- _sass/scss/_styles.scss
|
170
|
+
- _sass/scss/_tables.scss
|
171
|
+
- _sass/scss/_text-align.scss
|
172
|
+
- _sass/scss/_text-decoration.scss
|
173
|
+
- _sass/scss/_text-transform.scss
|
174
|
+
- _sass/scss/_type-scale.scss
|
175
|
+
- _sass/scss/_typography.scss
|
176
|
+
- _sass/scss/_utilities.scss
|
177
|
+
- _sass/scss/_vertical-align.scss
|
178
|
+
- _sass/scss/_visibility.scss
|
179
|
+
- _sass/scss/_white-space.scss
|
180
|
+
- _sass/scss/_widths.scss
|
181
|
+
- _sass/scss/_word-break.scss
|
182
|
+
- _sass/scss/_z-index.scss
|
183
|
+
- assets/css/jam.scss
|
184
|
+
homepage: https://desiredpersona.com/open-source/
|
185
|
+
licenses:
|
186
|
+
- MIT
|
187
|
+
metadata:
|
188
|
+
plugin_type: theme
|
189
|
+
post_install_message:
|
190
|
+
rdoc_options: []
|
191
|
+
require_paths:
|
192
|
+
- lib
|
193
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
194
|
+
requirements:
|
195
|
+
- - ">="
|
196
|
+
- !ruby/object:Gem::Version
|
197
|
+
version: '0'
|
198
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
199
|
+
requirements:
|
200
|
+
- - ">="
|
201
|
+
- !ruby/object:Gem::Version
|
202
|
+
version: '0'
|
203
|
+
requirements: []
|
204
|
+
rubyforge_project:
|
205
|
+
rubygems_version: 2.7.6
|
206
|
+
signing_key:
|
207
|
+
specification_version: 4
|
208
|
+
summary: JAM. A minimal Jekyll theme for writers.
|
209
|
+
test_files: []
|