jekyll-theme-basically-basic 1.1.1 → 1.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/_layouts/default.html +1 -1
- data/_sass/basically-basic.scss +1 -1
- data/_sass/basically-basic/_print.scss +252 -226
- data/assets/javascripts/main.js +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: aab05a3b7ac77e8676eb524193bb7531c0ac1edf
|
4
|
+
data.tar.gz: 298b2507438991664883519f69b3cc0132021d0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ec78fc185399cf8fab1458d8a42afcc288d46a8a3af41564dcb04b9458ab4893431bcc7d9556786733767bb107e7642d7fa732d91fb2e21d8bbf98037cc9f6b
|
7
|
+
data.tar.gz: 698295660adfc3290808a0d02b79e170992ac237bcad1ccbf222b6f464e3df2ee5808a4213cae368fe48e553d42eba666015425339090c745bdaf36deaaa141b
|
data/CHANGELOG.md
CHANGED
@@ -5,10 +5,15 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
7
7
|
|
8
|
+
## [1.1.2] - 2017-09-14
|
9
|
+
|
10
|
+
### Fixed
|
11
|
+
- `/_sass/_print.scss` to reduce blank pages when printing in Chrome. [#29](https://github.com/mmistakes/jekyll-theme-basically-basic/issues/29)
|
12
|
+
|
8
13
|
## [1.1.1] - 2017-09-06
|
9
14
|
### Changed
|
10
15
|
- Change `gems` key in `_config.yml` to `plugins`. [#23](https://github.com/mmistakes/jekyll-theme-basically-basic/pull/23)
|
11
|
-
- Liquid syntax error: "Expected id but found end_of_string_in `cv.skills.`" in `/cv/skills.html` include.
|
16
|
+
- Fixed Liquid syntax error: "Expected id but found end_of_string_in `cv.skills.`" in `/cv/skills.html` include.
|
12
17
|
|
13
18
|
## [1.1.0] - 2017-03-30
|
14
19
|
### Added
|
data/_layouts/default.html
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
<!DOCTYPE html>
|
2
2
|
<!--
|
3
|
-
Basically Basic Jekyll Theme 1.1.
|
3
|
+
Basically Basic Jekyll Theme 1.1.2
|
4
4
|
Copyright 2017 Michael Rose - mademistakes.com | @mmistakes
|
5
5
|
Free for personal and commercial use under the MIT license
|
6
6
|
https://github.com/mmistakes/jekyll-basically-theme/blob/master/LICENSE.md
|
data/_sass/basically-basic.scss
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Basically Basic Jekyll Theme 1.1.
|
2
|
+
* Basically Basic Jekyll Theme 1.1.2
|
3
3
|
* Copyright 2017 Michael Rose - mademistakes | @mmistakes
|
4
4
|
* Free for personal and commercial use under the MIT license
|
5
5
|
* https://github.com/mmistakes/jekyll-theme-basically-basic/blob/master/LICENSE.md
|
@@ -1,226 +1,252 @@
|
|
1
|
-
/* ==========================================================================
|
2
|
-
PRINT STYLES
|
3
|
-
========================================================================== */
|
4
|
-
|
5
|
-
@media print {
|
6
|
-
|
7
|
-
[hidden] {
|
8
|
-
display: none;
|
9
|
-
}
|
10
|
-
|
11
|
-
* {
|
12
|
-
-moz-box-sizing: border-box;
|
13
|
-
-webkit-box-sizing: border-box;
|
14
|
-
box-sizing: border-box;
|
15
|
-
}
|
16
|
-
|
17
|
-
html {
|
18
|
-
margin: 0;
|
19
|
-
padding: 0;
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
.
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
}
|
1
|
+
/* ==========================================================================
|
2
|
+
PRINT STYLES
|
3
|
+
========================================================================== */
|
4
|
+
|
5
|
+
@media print {
|
6
|
+
|
7
|
+
[hidden] {
|
8
|
+
display: none;
|
9
|
+
}
|
10
|
+
|
11
|
+
* {
|
12
|
+
-moz-box-sizing: border-box;
|
13
|
+
-webkit-box-sizing: border-box;
|
14
|
+
box-sizing: border-box;
|
15
|
+
}
|
16
|
+
|
17
|
+
html {
|
18
|
+
margin: 0;
|
19
|
+
padding: 0;
|
20
|
+
height: auto;
|
21
|
+
min-height: auto !important;
|
22
|
+
font-size: 16px;
|
23
|
+
}
|
24
|
+
|
25
|
+
body {
|
26
|
+
margin: 0;
|
27
|
+
height: auto;
|
28
|
+
background: #fff !important;
|
29
|
+
color: #000 !important;
|
30
|
+
font-size: 1rem;
|
31
|
+
line-height: 1.5;
|
32
|
+
-moz-osx-font-smoothing: grayscale;
|
33
|
+
-webkit-font-smoothing: antialiased;
|
34
|
+
text-rendering: optimizeLegibility;
|
35
|
+
}
|
36
|
+
|
37
|
+
h1,
|
38
|
+
h2,
|
39
|
+
h3,
|
40
|
+
h4,
|
41
|
+
h5,
|
42
|
+
h6 {
|
43
|
+
margin-top: 0;
|
44
|
+
margin-bottom: 0.75rem;
|
45
|
+
color: #000;
|
46
|
+
line-height: 1.2;
|
47
|
+
}
|
48
|
+
|
49
|
+
h1 {
|
50
|
+
font-size: 2.5rem;
|
51
|
+
}
|
52
|
+
|
53
|
+
h2 {
|
54
|
+
font-size: 2rem;
|
55
|
+
}
|
56
|
+
|
57
|
+
h3 {
|
58
|
+
font-size: 1.75rem;
|
59
|
+
}
|
60
|
+
|
61
|
+
h4 {
|
62
|
+
font-size: 1.5rem;
|
63
|
+
}
|
64
|
+
|
65
|
+
h5 {
|
66
|
+
font-size: 1.25rem;
|
67
|
+
}
|
68
|
+
|
69
|
+
h6 {
|
70
|
+
font-size: 1rem;
|
71
|
+
}
|
72
|
+
|
73
|
+
a {
|
74
|
+
background: none;
|
75
|
+
color: #000;
|
76
|
+
text-decoration: underline;
|
77
|
+
word-wrap: break-word;
|
78
|
+
}
|
79
|
+
|
80
|
+
table {
|
81
|
+
border-collapse: collapse;
|
82
|
+
}
|
83
|
+
|
84
|
+
thead {
|
85
|
+
display: table-header-group;
|
86
|
+
}
|
87
|
+
|
88
|
+
table,
|
89
|
+
th,
|
90
|
+
td {
|
91
|
+
border-bottom: 1px solid #000;
|
92
|
+
}
|
93
|
+
|
94
|
+
td,
|
95
|
+
th {
|
96
|
+
padding: 8px 16px;
|
97
|
+
}
|
98
|
+
|
99
|
+
img {
|
100
|
+
display: block;
|
101
|
+
max-width: 100% !important;
|
102
|
+
border: 0;
|
103
|
+
vertical-align: middle;
|
104
|
+
}
|
105
|
+
|
106
|
+
hr {
|
107
|
+
height: 0;
|
108
|
+
margin: 2.25rem 0;
|
109
|
+
padding: 0;
|
110
|
+
border: 0;
|
111
|
+
border-bottom: 2px solid #bbb;
|
112
|
+
}
|
113
|
+
|
114
|
+
dt {
|
115
|
+
font-weight: bold;
|
116
|
+
}
|
117
|
+
|
118
|
+
dd {
|
119
|
+
margin: 0;
|
120
|
+
margin-bottom: 0.75rem;
|
121
|
+
}
|
122
|
+
|
123
|
+
abbr[title],
|
124
|
+
acronym[title] {
|
125
|
+
border: 0;
|
126
|
+
text-decoration: none;
|
127
|
+
}
|
128
|
+
|
129
|
+
table,
|
130
|
+
blockquote,
|
131
|
+
pre,
|
132
|
+
code,
|
133
|
+
figure,
|
134
|
+
li,
|
135
|
+
hr,
|
136
|
+
ul,
|
137
|
+
ol,
|
138
|
+
a,
|
139
|
+
tr {
|
140
|
+
page-break-inside: avoid;
|
141
|
+
}
|
142
|
+
|
143
|
+
h2,
|
144
|
+
h3,
|
145
|
+
h4,
|
146
|
+
p,
|
147
|
+
a {
|
148
|
+
orphans: 3;
|
149
|
+
widows: 3;
|
150
|
+
}
|
151
|
+
|
152
|
+
h1,
|
153
|
+
h2,
|
154
|
+
h3,
|
155
|
+
h4,
|
156
|
+
h5,
|
157
|
+
h6 {
|
158
|
+
page-break-after: avoid;
|
159
|
+
page-break-inside: avoid;
|
160
|
+
}
|
161
|
+
|
162
|
+
h1 + p,
|
163
|
+
h2 + p,
|
164
|
+
h3 + p {
|
165
|
+
page-break-before: avoid;
|
166
|
+
}
|
167
|
+
|
168
|
+
img {
|
169
|
+
page-break-after: auto;
|
170
|
+
page-break-before: auto;
|
171
|
+
page-break-inside: avoid;
|
172
|
+
}
|
173
|
+
|
174
|
+
pre {
|
175
|
+
white-space: pre-wrap !important;
|
176
|
+
word-wrap: break-word;
|
177
|
+
}
|
178
|
+
|
179
|
+
a[href^='http://']::after,
|
180
|
+
a[href^='https://']::after,
|
181
|
+
a[href^='ftp://']::after {
|
182
|
+
font-size: 80%;
|
183
|
+
content: ' (' attr(href) ')';
|
184
|
+
}
|
185
|
+
|
186
|
+
abbr[title]::after,
|
187
|
+
acronym[title]::after {
|
188
|
+
content: ' (' attr(title) ')';
|
189
|
+
}
|
190
|
+
|
191
|
+
.wrapper {
|
192
|
+
min-height: auto !important;
|
193
|
+
}
|
194
|
+
|
195
|
+
#main {
|
196
|
+
max-width: 100%;
|
197
|
+
}
|
198
|
+
|
199
|
+
.inner {
|
200
|
+
margin: 0;
|
201
|
+
padding: 0;
|
202
|
+
width: 100%;
|
203
|
+
max-width: 100%;
|
204
|
+
}
|
205
|
+
|
206
|
+
.intro-actions .btn {
|
207
|
+
color: #fff;
|
208
|
+
background: #000;
|
209
|
+
}
|
210
|
+
|
211
|
+
.page-break,
|
212
|
+
.page-break-before {
|
213
|
+
page-break-before: always;
|
214
|
+
}
|
215
|
+
|
216
|
+
.page-break-after {
|
217
|
+
page-break-after: always;
|
218
|
+
}
|
219
|
+
|
220
|
+
.no-print {
|
221
|
+
display: none;
|
222
|
+
}
|
223
|
+
|
224
|
+
a.no-reformat::after {
|
225
|
+
content: '';
|
226
|
+
}
|
227
|
+
|
228
|
+
abbr[title].no-reformat::after,
|
229
|
+
acronym[title].no-reformat::after {
|
230
|
+
content: '';
|
231
|
+
}
|
232
|
+
|
233
|
+
.btn {
|
234
|
+
background: none;
|
235
|
+
color: #000;
|
236
|
+
}
|
237
|
+
|
238
|
+
/*
|
239
|
+
Hide the following elements on print
|
240
|
+
========================================================================== */
|
241
|
+
|
242
|
+
.skip-links,
|
243
|
+
.sidebar-toggle-wrapper,
|
244
|
+
.sidebar,
|
245
|
+
.title-area,
|
246
|
+
.pager,
|
247
|
+
.site-footer,
|
248
|
+
.adsbygoogle {
|
249
|
+
display: none !important;
|
250
|
+
height: 1px;
|
251
|
+
}
|
252
|
+
}
|
data/assets/javascripts/main.js
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
---
|
3
3
|
|
4
4
|
/*!
|
5
|
-
* Basically Basic Jekyll Theme 1.1.
|
5
|
+
* Basically Basic Jekyll Theme 1.1.2
|
6
6
|
* Copyright 2017 Michael Rose - mademistakes | @mmistakes
|
7
7
|
* Free for personal and commercial use under the MIT license
|
8
8
|
* https://github.com/mmistakes/jekyll-basically-theme/blob/master/LICENSE.md
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-basically-basic
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Rose
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-09-
|
11
|
+
date: 2017-09-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|