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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 72c7ec38c98bdf27990c7f85f2b6253acb88db8a
4
- data.tar.gz: a2c577987fc1ace38282adbc7ce2cf56d0e6b03d
3
+ metadata.gz: aab05a3b7ac77e8676eb524193bb7531c0ac1edf
4
+ data.tar.gz: 298b2507438991664883519f69b3cc0132021d0f
5
5
  SHA512:
6
- metadata.gz: 097d7d4989d385ec38583f2dbe7dc3cd31023505c4f4c1bfc7eb5b798db8be0188ee28a8818d890bbaf98eda1ec44b132ff9f0388b74081eaca48cb2e40eeaf0
7
- data.tar.gz: c4d91e56e0fc7776d42e2c9c817fc8bd17da2760cffddb10b8c39840c1fd171040ddddddab732e49b37a4b91804c9aab11d5bb968df9c142969fcd079cb1283b
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
@@ -1,6 +1,6 @@
1
1
  <!DOCTYPE html>
2
2
  <!--
3
- Basically Basic Jekyll Theme 1.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
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * Basically Basic Jekyll Theme 1.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
- font-size: 16px;
21
- }
22
-
23
- body {
24
- margin: 0 auto;
25
- background: #fff !important;
26
- color: #000 !important;
27
- font-size: 1rem;
28
- -moz-osx-font-smoothing: grayscale;
29
- -webkit-font-smoothing: antialiased;
30
- line-height: 1.5;
31
- text-rendering: optimizeLegibility;
32
- }
33
-
34
- h1,
35
- h2,
36
- h3,
37
- h4,
38
- h5,
39
- h6 {
40
- margin-top: 0;
41
- margin-bottom: 0.75rem;
42
- color: #000;
43
- line-height: 1.2;
44
- }
45
-
46
- h1 {
47
- font-size: 2.5rem;
48
- }
49
-
50
- h2 {
51
- font-size: 2rem;
52
- }
53
-
54
- h3 {
55
- font-size: 1.75rem;
56
- }
57
-
58
- h4 {
59
- font-size: 1.5rem;
60
- }
61
-
62
- h5 {
63
- font-size: 1.25rem;
64
- }
65
-
66
- h6 {
67
- font-size: 1rem;
68
- }
69
-
70
- a {
71
- background: none;
72
- color: #000;
73
- text-decoration: underline;
74
- word-wrap: break-word;
75
- }
76
-
77
- table {
78
- border-collapse: collapse;
79
- }
80
-
81
- thead {
82
- display: table-header-group;
83
- }
84
-
85
- table,
86
- th,
87
- td {
88
- border-bottom: 1px solid #000;
89
- }
90
-
91
- td,
92
- th {
93
- padding: 8px 16px;
94
- }
95
-
96
- img {
97
- display: block;
98
- max-width: 100% !important;
99
- border: 0;
100
- vertical-align: middle;
101
- }
102
-
103
- hr {
104
- height: 0;
105
- margin: 2.25rem 0;
106
- padding: 0;
107
- border: 0;
108
- border-bottom: 2px solid #bbb;
109
- }
110
-
111
- dt {
112
- font-weight: bold;
113
- }
114
-
115
- dd {
116
- margin: 0;
117
- margin-bottom: 0.75rem;
118
- }
119
-
120
- abbr[title],
121
- acronym[title] {
122
- border: 0;
123
- text-decoration: none;
124
- }
125
-
126
- table,
127
- blockquote,
128
- pre,
129
- code,
130
- figure,
131
- li,
132
- hr,
133
- ul,
134
- ol,
135
- a,
136
- tr {
137
- page-break-inside: avoid;
138
- }
139
-
140
- h2,
141
- h3,
142
- h4,
143
- p,
144
- a {
145
- orphans: 3;
146
- widows: 3;
147
- }
148
-
149
- h1,
150
- h2,
151
- h3,
152
- h4,
153
- h5,
154
- h6 {
155
- page-break-after: avoid;
156
- page-break-inside: avoid;
157
- }
158
-
159
- h1 + p,
160
- h2 + p,
161
- h3 + p {
162
- page-break-before: avoid;
163
- }
164
-
165
- img {
166
- page-break-after: auto;
167
- page-break-before: auto;
168
- page-break-inside: avoid;
169
- }
170
-
171
- pre {
172
- white-space: pre-wrap !important;
173
- word-wrap: break-word;
174
- }
175
-
176
- a[href^='http://']::after,
177
- a[href^='https://']::after,
178
- a[href^='ftp://']::after {
179
- font-size: 80%;
180
- content: ' (' attr(href) ')';
181
- }
182
-
183
- abbr[title]::after,
184
- acronym[title]::after {
185
- content: ' (' attr(title) ')';
186
- }
187
-
188
- .page-break,
189
- .page-break-before {
190
- page-break-before: always;
191
- }
192
-
193
- .page-break-after {
194
- page-break-after: always;
195
- }
196
-
197
- .no-print {
198
- display: none;
199
- }
200
-
201
- a.no-reformat::after {
202
- content: '';
203
- }
204
-
205
- abbr[title].no-reformat::after,
206
- acronym[title].no-reformat::after {
207
- content: '';
208
- }
209
-
210
- .btn {
211
- background: none;
212
- color: #000;
213
- }
214
-
215
- /*
216
- Hide the following elements on print
217
- ========================================================================== */
218
-
219
- .sidebar-toggle-wrapper,
220
- .title-area,
221
- .pager,
222
- .site-footer,
223
- .adsbygoogle {
224
- display: none !important;
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
+ }
@@ -2,7 +2,7 @@
2
2
  ---
3
3
 
4
4
  /*!
5
- * Basically Basic Jekyll Theme 1.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.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-06 00:00:00.000000000 Z
11
+ date: 2017-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll