jumbo-jekyll-theme 3.0.19 → 3.0.20
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 +4 -4
- data/_sass/core/blog.scss +0 -11
- data/_sass/core/nav.scss +9 -2
- data/_sass/core/theme.scss +32 -27
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4632767bfea21587a88228c97479ebdc081a935a9c9a51095fe8e3dbae0cb41c
|
|
4
|
+
data.tar.gz: f580b0fef3914ae7c4a42f87a0adf6f8a2df8434fa4369e8733dd0e12a5cc665
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8da26a899bdd0e4438c9ba9532c84a9dd3f9f6c3b19dea6d9662c053776e937fba19dc9b45d077fb0975f8ab4d64e87236a92ba830f34705fcc9c89ba31e503d
|
|
7
|
+
data.tar.gz: f60e5d191c251fe6a99907826afe636fcb72f9cfebe0000d9e4ae81db2b9250c2b0b23f641a0f70c1123919020a5187e1eb47829068af3d85741133fbe25a638
|
data/_sass/core/blog.scss
CHANGED
|
@@ -360,21 +360,12 @@ img.large-inline.right {
|
|
|
360
360
|
h1#featured-image-blog-title {
|
|
361
361
|
font-size: 26px;
|
|
362
362
|
}
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
363
|
}
|
|
367
|
-
|
|
368
|
-
|
|
369
364
|
@media (max-width: $screen-xs-min) {
|
|
370
|
-
|
|
371
|
-
|
|
372
365
|
article.post-content > .col-md-4 {
|
|
373
366
|
padding: 0px;
|
|
374
367
|
}
|
|
375
|
-
|
|
376
368
|
}
|
|
377
|
-
|
|
378
369
|
@media(max-width: $screen-md-min - 1){
|
|
379
370
|
/* Blog Sidebar */
|
|
380
371
|
.col-md-3.blog-sidebar {
|
|
@@ -382,12 +373,10 @@ img.large-inline.right {
|
|
|
382
373
|
padding-right: 0px;
|
|
383
374
|
padding-left: 0px;
|
|
384
375
|
}
|
|
385
|
-
|
|
386
376
|
.featured_blog_post img.img-responsive {
|
|
387
377
|
padding-right: 10px;
|
|
388
378
|
}
|
|
389
379
|
}
|
|
390
|
-
|
|
391
380
|
// Blog Side Panel Styles
|
|
392
381
|
.featured_post_post > .row {
|
|
393
382
|
padding: 5px;
|
data/_sass/core/nav.scss
CHANGED
|
@@ -422,7 +422,10 @@ nav > ul.navbar-right {
|
|
|
422
422
|
#tabbed-nav-bar.non-sticky-nav button.navbar-toggle {
|
|
423
423
|
margin-right: -5px;
|
|
424
424
|
}
|
|
425
|
-
|
|
425
|
+
#main-navigation .pull-left ul.dropdown-menu.sub-menu {
|
|
426
|
+
position: absolute;
|
|
427
|
+
width: 100px;
|
|
428
|
+
}
|
|
426
429
|
.sticky-nav {
|
|
427
430
|
position: fixed;
|
|
428
431
|
top: 0;
|
|
@@ -431,8 +434,12 @@ nav > ul.navbar-right {
|
|
|
431
434
|
right: 0;
|
|
432
435
|
transition: all 1s ease;
|
|
433
436
|
}
|
|
434
|
-
|
|
435
437
|
@media(max-width:$screen-sm-min - 1){
|
|
438
|
+
#main-navigation ul.dropdown-menu.sub-menu {
|
|
439
|
+
position: static;
|
|
440
|
+
width: 100%;
|
|
441
|
+
margin: 0px !important;
|
|
442
|
+
}
|
|
436
443
|
#tabbed-nav-bar .tabbed-nav-btn{
|
|
437
444
|
width:100%;
|
|
438
445
|
}
|
data/_sass/core/theme.scss
CHANGED
|
@@ -8,7 +8,6 @@ body {
|
|
|
8
8
|
font-family: $font-family-sans-serif;
|
|
9
9
|
-webkit-font-smoothing: antialiased;
|
|
10
10
|
}
|
|
11
|
-
|
|
12
11
|
/* ------------ Main Container Style margin accounts for Nav ----------- */
|
|
13
12
|
#wrapper.main{
|
|
14
13
|
overflow-x: hidden;
|
|
@@ -16,11 +15,23 @@ body {
|
|
|
16
15
|
#wrapper.home{
|
|
17
16
|
overflow-x: hidden;
|
|
18
17
|
}
|
|
19
|
-
|
|
20
18
|
// Iphone Bug Fix
|
|
21
|
-
html.ios7 body {
|
|
22
|
-
|
|
19
|
+
html.ios7 body {
|
|
20
|
+
height: 100%;
|
|
21
|
+
position: fixed;
|
|
22
|
+
width: 100%;
|
|
23
|
+
}
|
|
24
|
+
.ext-left {
|
|
25
|
+
float: left;
|
|
26
|
+
}
|
|
23
27
|
|
|
28
|
+
.ext-right {
|
|
29
|
+
height: auto;
|
|
30
|
+
vertical-align: middle;
|
|
31
|
+
display: table-cell;
|
|
32
|
+
padding-right: 10px;
|
|
33
|
+
padding-left: 10px;
|
|
34
|
+
}
|
|
24
35
|
// HTML Style
|
|
25
36
|
html {
|
|
26
37
|
height : 100%;
|
|
@@ -175,55 +186,49 @@ p {
|
|
|
175
186
|
word-wrap: break-word;
|
|
176
187
|
}
|
|
177
188
|
|
|
178
|
-
#
|
|
189
|
+
#wrapper p.justify {
|
|
179
190
|
font-size: 16px;
|
|
180
191
|
text-align: justify;
|
|
181
192
|
line-height: 1.66em;
|
|
182
193
|
}
|
|
183
194
|
|
|
184
|
-
#
|
|
195
|
+
#wrapper h2 {
|
|
185
196
|
font-size: 30px;
|
|
186
197
|
color: #3D383E;
|
|
198
|
+
font-weight: 200;
|
|
187
199
|
text-transform: none;
|
|
188
200
|
}
|
|
189
|
-
|
|
190
|
-
|
|
191
201
|
/* Padded Para */
|
|
192
202
|
.padded-para{
|
|
193
203
|
padding:20px;
|
|
194
204
|
}
|
|
195
|
-
|
|
196
205
|
/* Spaced Paragraph */
|
|
197
206
|
#spaced-para{
|
|
198
207
|
font-size: 18px;
|
|
199
208
|
line-height: 40px;
|
|
200
209
|
}
|
|
201
|
-
|
|
202
210
|
/* Justified Paragraph */
|
|
203
211
|
p .justified{
|
|
204
212
|
text-align: justify;
|
|
205
213
|
text-justify: inter-word;
|
|
206
214
|
}
|
|
207
|
-
|
|
208
215
|
/* Shape Divider - Home Page */
|
|
209
216
|
.row.shape-divider {
|
|
210
217
|
background-color: $brand-primary;
|
|
211
218
|
}
|
|
212
219
|
// Content Container - container used for actual content
|
|
213
220
|
// Not for breadcrumb / nav / footer
|
|
214
|
-
|
|
215
|
-
#content-container {
|
|
221
|
+
#wrapper {
|
|
216
222
|
background-color: $body-bg;
|
|
217
223
|
padding-top: 20px;
|
|
218
224
|
padding-bottom: 20px;
|
|
219
225
|
}
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
226
|
+
#wrapper ul { font-size:18px; }
|
|
227
|
+
#wrapper ol { font-size: 18px;}
|
|
228
|
+
// Padded row css
|
|
229
|
+
.padded-row {
|
|
230
|
+
padding: 100px 0;
|
|
231
|
+
}
|
|
227
232
|
//Homepage Sub Tag
|
|
228
233
|
p.sub-tag {
|
|
229
234
|
width: 65%;
|
|
@@ -418,7 +423,7 @@ button#c-submit-button {
|
|
|
418
423
|
font-size: 25px;
|
|
419
424
|
}
|
|
420
425
|
//Remove the padding from columns on mobile views
|
|
421
|
-
#
|
|
426
|
+
#wrapper .col-md-3, #wrapper .col-md-9 {
|
|
422
427
|
padding-left:0;
|
|
423
428
|
padding-right:0;
|
|
424
429
|
}
|
|
@@ -546,8 +551,8 @@ img.img-responsive.right-aligned-image {
|
|
|
546
551
|
}
|
|
547
552
|
|
|
548
553
|
/* Wordpress Styles */
|
|
549
|
-
#
|
|
550
|
-
#
|
|
554
|
+
#wrapper blockquote, #wrapper code, #wrapper dl, #wrapper fieldset,
|
|
555
|
+
#wrapper p, #wrapper pre, #wrapper table{
|
|
551
556
|
margin-bottom: 25px;
|
|
552
557
|
}
|
|
553
558
|
|
|
@@ -562,12 +567,12 @@ ul#tab-row {
|
|
|
562
567
|
margin-bottom: 20px;
|
|
563
568
|
}
|
|
564
569
|
|
|
565
|
-
#
|
|
570
|
+
#wrapper a:hover {
|
|
566
571
|
text-decoration: none;
|
|
567
572
|
color: darken($brand-primary, 20%);
|
|
568
573
|
}
|
|
569
574
|
|
|
570
|
-
#
|
|
575
|
+
#wrapper ul {
|
|
571
576
|
color: #252525;
|
|
572
577
|
font-size: 16px;
|
|
573
578
|
}
|
|
@@ -596,12 +601,12 @@ blockquote:before {
|
|
|
596
601
|
}
|
|
597
602
|
|
|
598
603
|
|
|
599
|
-
#
|
|
604
|
+
#wrapper h1 {
|
|
600
605
|
font-size: 36px;
|
|
601
606
|
margin-top: 0;
|
|
602
607
|
}
|
|
603
608
|
|
|
604
|
-
#
|
|
609
|
+
#wrapper h1, #wrapper h2, #wrapper h3, #wrapper h4, #wrapper h5 {
|
|
605
610
|
color: #393836;
|
|
606
611
|
}
|
|
607
612
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jumbo-jekyll-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.20
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kyle Kirkby
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-11-
|
|
11
|
+
date: 2018-11-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|