jekyll-theme-one 0.1.3 → 0.1.4
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 +1 -1
- data/_includes/head.html +3 -4
- data/_layouts/default.html +2 -50
- data/_sass/jekyll-theme-one.scss +4 -15
- data/_sass/modules/_global.scss +72 -50
- data/_sass/modules/_reset.scss +589 -0
- data/_sass/variables/_base.scss +19 -0
- metadata +5 -16
- data/_includes/footer.html +0 -5
- data/_includes/header.html +0 -4
- data/_layouts/page.html +0 -5
- data/_layouts/post.html +0 -5
- data/_sass/functions/_color-map.scss +0 -7
- data/_sass/modules/_bottombar.scss +0 -14
- data/_sass/modules/_content.scss +0 -94
- data/_sass/modules/_grid.scss +0 -34
- data/_sass/modules/_hero.scss +0 -7
- data/_sass/modules/_highlight.scss +0 -213
- data/_sass/modules/_normalize.scss +0 -447
- data/_sass/modules/_topbar.scss +0 -29
- data/_sass/variables/_colors.scss +0 -14
@@ -0,0 +1,19 @@
|
|
1
|
+
// Base
|
2
|
+
|
3
|
+
// Font Sizes
|
4
|
+
$body-font-size: 16px !default;
|
5
|
+
|
6
|
+
// Container width
|
7
|
+
$container-width: 64em;
|
8
|
+
|
9
|
+
// Large breakpoint
|
10
|
+
$breakpoint-lg: 52em;
|
11
|
+
|
12
|
+
// Spacing unit
|
13
|
+
$spacer: 8px !default;
|
14
|
+
|
15
|
+
// Spacing scale
|
16
|
+
$spacer-1: $spacer !default; // 8px
|
17
|
+
$spacer-2: ($spacer * 2) !default; // 16px
|
18
|
+
$spacer-3: ($spacer * 4) !default; // 32px
|
19
|
+
$spacer-4: ($spacer * 8) !default; // 64px
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-one
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Melgoza
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-11-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -61,24 +61,13 @@ extra_rdoc_files: []
|
|
61
61
|
files:
|
62
62
|
- LICENSE.txt
|
63
63
|
- README.md
|
64
|
-
- _includes/footer.html
|
65
64
|
- _includes/head.html
|
66
|
-
- _includes/header.html
|
67
65
|
- _layouts/default.html
|
68
|
-
- _layouts/page.html
|
69
|
-
- _layouts/post.html
|
70
|
-
- _sass/functions/_color-map.scss
|
71
66
|
- _sass/jekyll-theme-one.scss
|
72
67
|
- _sass/mixins/_links.scss
|
73
|
-
- _sass/modules/_bottombar.scss
|
74
|
-
- _sass/modules/_content.scss
|
75
68
|
- _sass/modules/_global.scss
|
76
|
-
- _sass/modules/
|
77
|
-
- _sass/
|
78
|
-
- _sass/modules/_highlight.scss
|
79
|
-
- _sass/modules/_normalize.scss
|
80
|
-
- _sass/modules/_topbar.scss
|
81
|
-
- _sass/variables/_colors.scss
|
69
|
+
- _sass/modules/_reset.scss
|
70
|
+
- _sass/variables/_base.scss
|
82
71
|
- assets/css/style.scss
|
83
72
|
homepage: https://github.com/jasonmelgoza/one
|
84
73
|
licenses:
|
@@ -100,7 +89,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
100
89
|
version: '0'
|
101
90
|
requirements: []
|
102
91
|
rubyforge_project:
|
103
|
-
rubygems_version: 2.
|
92
|
+
rubygems_version: 2.7.6
|
104
93
|
signing_key:
|
105
94
|
specification_version: 4
|
106
95
|
summary: A clean and simple Jekyll theme
|
data/_includes/footer.html
DELETED
data/_includes/header.html
DELETED
data/_layouts/page.html
DELETED
data/_layouts/post.html
DELETED
data/_sass/modules/_content.scss
DELETED
@@ -1,94 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// CONTENT
|
3
|
-
//
|
4
|
-
|
5
|
-
.content {
|
6
|
-
padding: 100px 25px;
|
7
|
-
&.is-full {
|
8
|
-
max-width: 100%;
|
9
|
-
min-height: 100vh;
|
10
|
-
}
|
11
|
-
&.is-center {
|
12
|
-
display: flex;
|
13
|
-
|
14
|
-
justify-content: center;
|
15
|
-
align-items: center;
|
16
|
-
}
|
17
|
-
&.is-dark {
|
18
|
-
color: white;
|
19
|
-
background-color: color(secondary);
|
20
|
-
}
|
21
|
-
&.is-light {
|
22
|
-
color: color(secondary);
|
23
|
-
background-color: var(--bg);
|
24
|
-
}
|
25
|
-
|
26
|
-
// Content section title
|
27
|
-
.content-title {
|
28
|
-
margin-bottom: 40px;
|
29
|
-
text-align: center;
|
30
|
-
@media (min-width: 880px) {
|
31
|
-
margin-bottom: 65px;
|
32
|
-
}
|
33
|
-
h2 {
|
34
|
-
margin-top: 0;
|
35
|
-
font-size: 49px;
|
36
|
-
font-weight: 700;
|
37
|
-
line-height: 59px;
|
38
|
-
letter-spacing: -.016em;
|
39
|
-
}
|
40
|
-
}
|
41
|
-
|
42
|
-
// Content typography
|
43
|
-
p {
|
44
|
-
line-height: 1.5;
|
45
|
-
}
|
46
|
-
|
47
|
-
h1, h2, h3 {
|
48
|
-
margin-top: 24px;
|
49
|
-
margin-bottom: 16px;
|
50
|
-
line-height: 1.25;
|
51
|
-
}
|
52
|
-
|
53
|
-
h1 {
|
54
|
-
font-size: 3rem;
|
55
|
-
font-weight: 700;
|
56
|
-
letter-spacing: -.016em;
|
57
|
-
}
|
58
|
-
|
59
|
-
h2 {
|
60
|
-
font-size: 2rem;
|
61
|
-
font-weight: 600;
|
62
|
-
}
|
63
|
-
|
64
|
-
h3 {
|
65
|
-
font-size: 1.5rem;
|
66
|
-
font-weight: 600;
|
67
|
-
}
|
68
|
-
|
69
|
-
a {
|
70
|
-
color: color(primary);
|
71
|
-
}
|
72
|
-
|
73
|
-
ul {
|
74
|
-
padding-left: 0;
|
75
|
-
line-height: 1.5;
|
76
|
-
list-style-type: none;
|
77
|
-
li {
|
78
|
-
&:before {
|
79
|
-
margin-right: .3rem;
|
80
|
-
content: '-';
|
81
|
-
}
|
82
|
-
}
|
83
|
-
}
|
84
|
-
|
85
|
-
p, blockquote, ul, ol, dl, table, pre {
|
86
|
-
margin-top: 0;
|
87
|
-
margin-bottom: 16px;
|
88
|
-
}
|
89
|
-
|
90
|
-
// Content utilities
|
91
|
-
.measure {
|
92
|
-
max-width: 34em;
|
93
|
-
}
|
94
|
-
}
|
data/_sass/modules/_grid.scss
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// GRID
|
3
|
-
//
|
4
|
-
|
5
|
-
.grid {
|
6
|
-
display: grid;
|
7
|
-
grid: 1fr / auto-flow 1fr;
|
8
|
-
|
9
|
-
@media screen and (max-width: 768px) {
|
10
|
-
display: block;
|
11
|
-
}
|
12
|
-
.grid-cell {
|
13
|
-
height: 50vh;
|
14
|
-
background-color: color(secondary, dark);
|
15
|
-
&:nth-child(2n) {
|
16
|
-
background-color: color(secondary, light);
|
17
|
-
}
|
18
|
-
}
|
19
|
-
}
|
20
|
-
|
21
|
-
.card-grid {
|
22
|
-
display: grid;
|
23
|
-
width: 100%;
|
24
|
-
max-width: var(--width-md);
|
25
|
-
padding: 0 20px;
|
26
|
-
margin: 0 auto;
|
27
|
-
|
28
|
-
grid: auto/1fr;
|
29
|
-
grid-gap: 20px 0;
|
30
|
-
@media (min-width: 880px) {
|
31
|
-
grid: auto/auto-flow 1fr;
|
32
|
-
grid-gap: 0 12px;
|
33
|
-
}
|
34
|
-
}
|
data/_sass/modules/_hero.scss
DELETED
@@ -1,213 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// HIGHLIGHT
|
3
|
-
//
|
4
|
-
|
5
|
-
.highlight table td { padding: 5px; }
|
6
|
-
.highlight table pre { margin: 0; }
|
7
|
-
.highlight .cm {
|
8
|
-
color: #999988;
|
9
|
-
font-style: italic;
|
10
|
-
}
|
11
|
-
.highlight .cp {
|
12
|
-
color: #999999;
|
13
|
-
font-weight: bold;
|
14
|
-
}
|
15
|
-
.highlight .c1 {
|
16
|
-
color: #999988;
|
17
|
-
font-style: italic;
|
18
|
-
}
|
19
|
-
.highlight .cs {
|
20
|
-
color: #999999;
|
21
|
-
font-weight: bold;
|
22
|
-
font-style: italic;
|
23
|
-
}
|
24
|
-
.highlight .c, .highlight .cd {
|
25
|
-
color: #999988;
|
26
|
-
font-style: italic;
|
27
|
-
}
|
28
|
-
.highlight .err {
|
29
|
-
color: #a61717;
|
30
|
-
background-color: #e3d2d2;
|
31
|
-
}
|
32
|
-
.highlight .gd {
|
33
|
-
color: #000000;
|
34
|
-
background-color: #ffdddd;
|
35
|
-
}
|
36
|
-
.highlight .ge {
|
37
|
-
color: #000000;
|
38
|
-
font-style: italic;
|
39
|
-
}
|
40
|
-
.highlight .gr {
|
41
|
-
color: #aa0000;
|
42
|
-
}
|
43
|
-
.highlight .gh {
|
44
|
-
color: #999999;
|
45
|
-
}
|
46
|
-
.highlight .gi {
|
47
|
-
color: #000000;
|
48
|
-
background-color: #ddffdd;
|
49
|
-
}
|
50
|
-
.highlight .go {
|
51
|
-
color: #888888;
|
52
|
-
}
|
53
|
-
.highlight .gp {
|
54
|
-
color: #555555;
|
55
|
-
}
|
56
|
-
.highlight .gs {
|
57
|
-
font-weight: bold;
|
58
|
-
}
|
59
|
-
.highlight .gu {
|
60
|
-
color: #aaaaaa;
|
61
|
-
}
|
62
|
-
.highlight .gt {
|
63
|
-
color: #aa0000;
|
64
|
-
}
|
65
|
-
.highlight .kc {
|
66
|
-
color: #000000;
|
67
|
-
font-weight: bold;
|
68
|
-
}
|
69
|
-
.highlight .kd {
|
70
|
-
color: #000000;
|
71
|
-
font-weight: bold;
|
72
|
-
}
|
73
|
-
.highlight .kn {
|
74
|
-
color: #000000;
|
75
|
-
font-weight: bold;
|
76
|
-
}
|
77
|
-
.highlight .kp {
|
78
|
-
color: #000000;
|
79
|
-
font-weight: bold;
|
80
|
-
}
|
81
|
-
.highlight .kr {
|
82
|
-
color: #000000;
|
83
|
-
font-weight: bold;
|
84
|
-
}
|
85
|
-
.highlight .kt {
|
86
|
-
color: #445588;
|
87
|
-
font-weight: bold;
|
88
|
-
}
|
89
|
-
.highlight .k, .highlight .kv {
|
90
|
-
color: #000000;
|
91
|
-
font-weight: bold;
|
92
|
-
}
|
93
|
-
.highlight .mf {
|
94
|
-
color: #009999;
|
95
|
-
}
|
96
|
-
.highlight .mh {
|
97
|
-
color: #009999;
|
98
|
-
}
|
99
|
-
.highlight .il {
|
100
|
-
color: #009999;
|
101
|
-
}
|
102
|
-
.highlight .mi {
|
103
|
-
color: #009999;
|
104
|
-
}
|
105
|
-
.highlight .mo {
|
106
|
-
color: #009999;
|
107
|
-
}
|
108
|
-
.highlight .m, .highlight .mb, .highlight .mx {
|
109
|
-
color: #009999;
|
110
|
-
}
|
111
|
-
.highlight .sb {
|
112
|
-
color: #d14;
|
113
|
-
}
|
114
|
-
.highlight .sc {
|
115
|
-
color: #d14;
|
116
|
-
}
|
117
|
-
.highlight .sd {
|
118
|
-
color: #d14;
|
119
|
-
}
|
120
|
-
.highlight .s2 {
|
121
|
-
color: #d14;
|
122
|
-
}
|
123
|
-
.highlight .se {
|
124
|
-
color: #d14;
|
125
|
-
}
|
126
|
-
.highlight .sh {
|
127
|
-
color: #d14;
|
128
|
-
}
|
129
|
-
.highlight .si {
|
130
|
-
color: #d14;
|
131
|
-
}
|
132
|
-
.highlight .sx {
|
133
|
-
color: #d14;
|
134
|
-
}
|
135
|
-
.highlight .sr {
|
136
|
-
color: #009926;
|
137
|
-
}
|
138
|
-
.highlight .s1 {
|
139
|
-
color: #d14;
|
140
|
-
}
|
141
|
-
.highlight .ss {
|
142
|
-
color: #990073;
|
143
|
-
}
|
144
|
-
.highlight .s {
|
145
|
-
color: #d14;
|
146
|
-
}
|
147
|
-
.highlight .na {
|
148
|
-
color: #008080;
|
149
|
-
}
|
150
|
-
.highlight .bp {
|
151
|
-
color: #999999;
|
152
|
-
}
|
153
|
-
.highlight .nb {
|
154
|
-
color: #0086B3;
|
155
|
-
}
|
156
|
-
.highlight .nc {
|
157
|
-
color: #445588;
|
158
|
-
font-weight: bold;
|
159
|
-
}
|
160
|
-
.highlight .no {
|
161
|
-
color: #008080;
|
162
|
-
}
|
163
|
-
.highlight .nd {
|
164
|
-
color: #3c5d5d;
|
165
|
-
font-weight: bold;
|
166
|
-
}
|
167
|
-
.highlight .ni {
|
168
|
-
color: #800080;
|
169
|
-
}
|
170
|
-
.highlight .ne {
|
171
|
-
color: #990000;
|
172
|
-
font-weight: bold;
|
173
|
-
}
|
174
|
-
.highlight .nf {
|
175
|
-
color: #990000;
|
176
|
-
font-weight: bold;
|
177
|
-
}
|
178
|
-
.highlight .nl {
|
179
|
-
color: #990000;
|
180
|
-
font-weight: bold;
|
181
|
-
}
|
182
|
-
.highlight .nn {
|
183
|
-
color: #555555;
|
184
|
-
}
|
185
|
-
.highlight .nt {
|
186
|
-
color: #000080;
|
187
|
-
}
|
188
|
-
.highlight .vc {
|
189
|
-
color: #008080;
|
190
|
-
}
|
191
|
-
.highlight .vg {
|
192
|
-
color: #008080;
|
193
|
-
}
|
194
|
-
.highlight .vi {
|
195
|
-
color: #008080;
|
196
|
-
}
|
197
|
-
.highlight .nv {
|
198
|
-
color: #008080;
|
199
|
-
}
|
200
|
-
.highlight .ow {
|
201
|
-
color: #000000;
|
202
|
-
font-weight: bold;
|
203
|
-
}
|
204
|
-
.highlight .o {
|
205
|
-
color: #000000;
|
206
|
-
font-weight: bold;
|
207
|
-
}
|
208
|
-
.highlight .w {
|
209
|
-
color: #bbbbbb;
|
210
|
-
}
|
211
|
-
.highlight {
|
212
|
-
background-color: #f8f8f8;
|
213
|
-
}
|