jumbo-jekyll-theme 1.4.2.0 → 1.4.2.1
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/_data/nav.yml +1 -1
- data/_data/sticky-tab-bar.yml +21 -0
- data/_includes/jumbotron.html +3 -3
- data/_includes/linaro-404.html +13 -0
- data/_includes/post-sidebar.html +75 -47
- data/_includes/shape.html +3 -3
- data/_includes/sticky-tab-bar.html +24 -24
- data/_layouts/post-featured-image.html +13 -12
- data/_plugins/jekyll-minimagick.rb +77 -0
- data/_plugins/jekyll-minimagick/version.rb +5 -0
- data/_sass/app/custom.scss +1 -670
- data/_sass/blog.scss +2 -1
- data/_sass/core.scss +1 -1
- data/_sass/core/blog.scss +71 -3
- data/_sass/core/carousel.scss +137 -1
- data/_sass/core/footer.scss +5 -0
- data/_sass/core/homepage.scss +22 -11
- data/_sass/core/jumbotron.scss +10 -0
- data/_sass/core/nav.scss +55 -1
- data/_sass/core/tables.scss +21 -0
- data/_sass/core/theme.scss +98 -9
- data/_sass/{app → core}/twitter-feed.scss +0 -0
- data/_sass/{app → core}/youtube.scss +0 -0
- data/_sass/home.scss +6 -0
- data/assets/css/main-home.scss +4 -11
- data/assets/js/app/{sticky-navbar.js → sticky-tab-bar.js} +0 -0
- metadata +24 -10
- data/_data/sticky-nav.yml +0 -21
- data/_sass/app/about.scss +0 -47
- data/_sass/app/planet.scss +0 -10
- data/_sass/app/press.scss +0 -24
- data/_sass/app/social.scss +0 -29
- data/_sass/app/work.scss +0 -151
data/_sass/blog.scss
CHANGED
data/_sass/core.scss
CHANGED
data/_sass/core/blog.scss
CHANGED
@@ -223,8 +223,17 @@ a.featured_blog_post_text:hover{
|
|
223
223
|
|
224
224
|
|
225
225
|
|
226
|
+
/* Article Post Content Style */
|
227
|
+
article.post-content {
|
228
|
+
overflow: auto;
|
229
|
+
}
|
226
230
|
|
227
|
-
|
231
|
+
article.post-content > .col-md-8 {
|
232
|
+
padding: 0;
|
233
|
+
}
|
234
|
+
article.post-content > .col-md-4 {
|
235
|
+
padding: 15px;
|
236
|
+
}
|
228
237
|
|
229
238
|
// Tag Cloud Style
|
230
239
|
div.tag_cloud {
|
@@ -319,7 +328,6 @@ img.large-inline.right {
|
|
319
328
|
border-right: 20px solid #eee;
|
320
329
|
}
|
321
330
|
}
|
322
|
-
|
323
331
|
//Responsive CSS for Blog
|
324
332
|
@media(max-width:$screen-sm-min){
|
325
333
|
|
@@ -345,4 +353,64 @@ img.large-inline.right {
|
|
345
353
|
font-size: 17px;
|
346
354
|
}
|
347
355
|
|
348
|
-
}
|
356
|
+
}
|
357
|
+
|
358
|
+
|
359
|
+
@media (max-width: $screen-xs-min) {
|
360
|
+
|
361
|
+
|
362
|
+
article.post-content > .col-md-4 {
|
363
|
+
padding: 0px;
|
364
|
+
}
|
365
|
+
|
366
|
+
}
|
367
|
+
|
368
|
+
|
369
|
+
|
370
|
+
// Blog Side Panel Styles
|
371
|
+
.featured_post_post > .row {
|
372
|
+
padding: 5px;
|
373
|
+
border-bottom: 1px solid #eee;
|
374
|
+
}
|
375
|
+
.featured_post_post > .row > div > img{
|
376
|
+
margin-top:10px;
|
377
|
+
margin-left:10px;
|
378
|
+
|
379
|
+
transition: all 200ms linear;
|
380
|
+
}
|
381
|
+
|
382
|
+
.featured_blog_post > .row {
|
383
|
+
padding: 5px;
|
384
|
+
border-bottom: 1px solid #eee;
|
385
|
+
|
386
|
+
transition: all 200ms linear;
|
387
|
+
}
|
388
|
+
.featured_blog_post > .row > div > img{
|
389
|
+
margin-top:10px;
|
390
|
+
margin-left:10px;
|
391
|
+
}
|
392
|
+
|
393
|
+
.blog-row .panel, .blog-post-content .panel {
|
394
|
+
border: 0 !important;
|
395
|
+
}
|
396
|
+
|
397
|
+
.blog-row .panel-body, .panel-body {
|
398
|
+
border:1px solid #eee;
|
399
|
+
padding-bottom:0;
|
400
|
+
padding-top: 0;
|
401
|
+
}
|
402
|
+
|
403
|
+
.blog-row .col-md-9.col-sm-9.col-xs-9 , .blog-post-content .col-md-9.col-sm-9.col-xs-9 {
|
404
|
+
padding-left:20px;
|
405
|
+
padding-top:10px;
|
406
|
+
}
|
407
|
+
|
408
|
+
//Hover Style
|
409
|
+
.featured_blog_post>.row:hover {
|
410
|
+
background-color: #fdfdfd;
|
411
|
+
}
|
412
|
+
|
413
|
+
.featured_blog_post small em {
|
414
|
+
color:black;
|
415
|
+
}
|
416
|
+
|
data/_sass/core/carousel.scss
CHANGED
@@ -9,6 +9,123 @@
|
|
9
9
|
overflow: auto;
|
10
10
|
}
|
11
11
|
|
12
|
+
/* Carousel Right Caption */
|
13
|
+
.carousel-caption.right-caption {
|
14
|
+
top: 0;
|
15
|
+
margin-top: 47px;
|
16
|
+
right:0;
|
17
|
+
left:0;
|
18
|
+
}
|
19
|
+
/* CUSTOMIZE THE CAROUSEL
|
20
|
+
-------------------------------------------------- */
|
21
|
+
|
22
|
+
/* Carousel base class */
|
23
|
+
.carousel {
|
24
|
+
height: 500px;
|
25
|
+
margin-bottom: 5px;
|
26
|
+
}
|
27
|
+
/* Since positioning the image, we need to help out the caption */
|
28
|
+
.carousel-caption {
|
29
|
+
z-index: 10;
|
30
|
+
}
|
31
|
+
|
32
|
+
/* Declare heights because of positioning of img element */
|
33
|
+
.carousel .item {
|
34
|
+
height: 500px;
|
35
|
+
background-color: #777;
|
36
|
+
}
|
37
|
+
.carousel-inner > .item > img {
|
38
|
+
position: absolute;
|
39
|
+
top: 0;
|
40
|
+
left: 0;
|
41
|
+
min-width: 100%;
|
42
|
+
height: 500px;
|
43
|
+
}
|
44
|
+
|
45
|
+
|
46
|
+
p.linaro-home-block-text {
|
47
|
+
color: #fff;
|
48
|
+
}
|
49
|
+
|
50
|
+
a.carousel-control{
|
51
|
+
border-radius: 50px;
|
52
|
+
border: solid 1px white;
|
53
|
+
height: 50px;
|
54
|
+
width: 50px;
|
55
|
+
vertical-align: middle;
|
56
|
+
margin-top: auto;
|
57
|
+
margin-bottom: auto;
|
58
|
+
}
|
59
|
+
|
60
|
+
a.carousel-control span.glyphicon-menu-left {
|
61
|
+
top: 12px;
|
62
|
+
left: -5px;
|
63
|
+
}
|
64
|
+
a.carousel-control span.glyphicon-menu-right {
|
65
|
+
top: 12px;
|
66
|
+
right: 2px;
|
67
|
+
}
|
68
|
+
|
69
|
+
|
70
|
+
.row.activity-holder.center-block {
|
71
|
+
height: auto;
|
72
|
+
}
|
73
|
+
|
74
|
+
.activity-holder .activity-block {
|
75
|
+
border: #fff 3px solid;
|
76
|
+
background: transparent !important;
|
77
|
+
}
|
78
|
+
.activity-block {
|
79
|
+
margin-top: 0px !important;
|
80
|
+
background: transparent !important;
|
81
|
+
}
|
82
|
+
|
83
|
+
.activity-holder p {
|
84
|
+
height:99px;
|
85
|
+
}
|
86
|
+
|
87
|
+
.activity-holder .activity-block {
|
88
|
+
border:0 !important;
|
89
|
+
background: transparent;
|
90
|
+
}
|
91
|
+
.activity-block {
|
92
|
+
border: 0 !important;
|
93
|
+
background: transparent;
|
94
|
+
margin-top: 70px;
|
95
|
+
}
|
96
|
+
|
97
|
+
.activity-holder p {
|
98
|
+
height: auto;
|
99
|
+
}
|
100
|
+
|
101
|
+
.carousel-inner > .item > div.slider-img {
|
102
|
+
position: absolute;
|
103
|
+
top: 0;
|
104
|
+
left: 0;
|
105
|
+
min-width: 100%;
|
106
|
+
height: 500px;
|
107
|
+
}
|
108
|
+
|
109
|
+
//Caption divs for home page content on slider
|
110
|
+
.carousel-caption.top-caption {
|
111
|
+
top: 0;
|
112
|
+
margin-top: 47px;
|
113
|
+
}
|
114
|
+
|
115
|
+
.carousel-caption.right-caption {
|
116
|
+
top: 0;
|
117
|
+
margin-top: 47px;
|
118
|
+
right:-100px;
|
119
|
+
}
|
120
|
+
|
121
|
+
|
122
|
+
/* Left and Right Carousel Control Styles*/
|
123
|
+
a.left.carousel-control {
|
124
|
+
display: none;
|
125
|
+
}
|
126
|
+
a.right.carousel-control{
|
127
|
+
display: none;
|
128
|
+
}
|
12
129
|
|
13
130
|
/* Responsive CSS for Homepage */
|
14
131
|
|
@@ -172,4 +289,23 @@
|
|
172
289
|
background-color: #545454 !important;
|
173
290
|
}
|
174
291
|
|
175
|
-
|
292
|
+
.carousel-inner > .item > div.slider-img {
|
293
|
+
position: absolute;
|
294
|
+
top: 0;
|
295
|
+
left: 0;
|
296
|
+
min-width: 100%;
|
297
|
+
height: 500px;
|
298
|
+
}
|
299
|
+
|
300
|
+
/* Caption divs for home page content on slider */
|
301
|
+
.carousel-caption.top-caption {
|
302
|
+
top: 0;
|
303
|
+
margin-top: 47px;
|
304
|
+
}
|
305
|
+
|
306
|
+
.carousel-caption.right-caption {
|
307
|
+
top: 0;
|
308
|
+
margin-top: 47px;
|
309
|
+
right:-100px;
|
310
|
+
}
|
311
|
+
|
data/_sass/core/footer.scss
CHANGED
@@ -110,6 +110,7 @@ div.row.footer-strip > div > div.pull-right > ul a:hover{
|
|
110
110
|
|
111
111
|
.company-footer-bottom {
|
112
112
|
padding-left: 0px;
|
113
|
+
font-size: 13px;
|
113
114
|
}
|
114
115
|
.company-footer-bottom .container {
|
115
116
|
padding-left: 0px;
|
@@ -138,3 +139,7 @@ a.btn.btn-social-icon:hover i {
|
|
138
139
|
.company-footer-bottom, .company-footer-bottom a{
|
139
140
|
color: $footer-text-color;
|
140
141
|
}
|
142
|
+
|
143
|
+
.row.footer-strip {
|
144
|
+
border-top-color: $footer-text-color;
|
145
|
+
}
|
data/_sass/core/homepage.scss
CHANGED
@@ -33,17 +33,6 @@
|
|
33
33
|
}
|
34
34
|
}
|
35
35
|
|
36
|
-
/* Home Page Shape Divider */
|
37
|
-
.homepage-shape {
|
38
|
-
margin-bottom: -6px;
|
39
|
-
}
|
40
|
-
|
41
|
-
/* Home Page Jumbotron Div */
|
42
|
-
div#homepage-jumbotron {
|
43
|
-
margin-top: $navbar-height + 10;
|
44
|
-
text-align: center;
|
45
|
-
}
|
46
|
-
|
47
36
|
/* Home Page Header */
|
48
37
|
#homepage-header {
|
49
38
|
background: $jumbotron-bottom-color; /* Old browsers */
|
@@ -76,4 +65,26 @@ div#homepage-jumbotron {
|
|
76
65
|
// Style for Homepage
|
77
66
|
div#wrapper.home-container {
|
78
67
|
margin-top: 0;
|
68
|
+
}
|
69
|
+
|
70
|
+
/* Home Block Slider Style */
|
71
|
+
|
72
|
+
@media only screen and (min-width: $screen-xs-min) and (max-width: $screen-sm-min) {
|
73
|
+
#home-block-sliders .owl-theme .owl-nav.disabled+.owl-dots {
|
74
|
+
margin-top: 10px;
|
75
|
+
position: relative;
|
76
|
+
top: -60px;
|
77
|
+
}
|
78
|
+
}
|
79
|
+
|
80
|
+
#home-block-sliders .owl-theme .owl-nav.disabled+.owl-dots {
|
81
|
+
margin-top: 10px;
|
82
|
+
position: relative;
|
83
|
+
top: -60px;
|
84
|
+
}
|
85
|
+
|
86
|
+
@media(min-width:$screen-sm-min){
|
87
|
+
.row.activity-holder.center-block {
|
88
|
+
height: auto;
|
89
|
+
}
|
79
90
|
}
|
data/_sass/core/nav.scss
CHANGED
@@ -239,6 +239,41 @@ ul#navbar-buttons > li > ul.dropdown-menu {
|
|
239
239
|
color: black;
|
240
240
|
}
|
241
241
|
|
242
|
+
ul#tabbed_nav > li.active > a:after {
|
243
|
+
height: 1px;
|
244
|
+
background-color: #fff;
|
245
|
+
}
|
246
|
+
|
247
|
+
ul#tabbed_nav > li.active > a {
|
248
|
+
border-bottom: none;
|
249
|
+
}
|
250
|
+
|
251
|
+
ul#tabbed_nav > li > a {
|
252
|
+
border-bottom: 1px solid #eee;
|
253
|
+
border-right: 1px solid #eee;
|
254
|
+
font-size: 13px;
|
255
|
+
}
|
256
|
+
|
257
|
+
|
258
|
+
div#tabbed_nav_content {
|
259
|
+
margin-top:0;
|
260
|
+
padding: 10px;
|
261
|
+
border-right: 1px solid #eee;
|
262
|
+
border-left: 1px solid #eee;
|
263
|
+
border-bottom:1px solid #eee;
|
264
|
+
margin-bottom: 20px;
|
265
|
+
}
|
266
|
+
|
267
|
+
div#tabbed_nav_content > div.tab-pane {
|
268
|
+
margin-top:0;
|
269
|
+
padding: 10px
|
270
|
+
}
|
271
|
+
|
272
|
+
ul#tabbed_nav {
|
273
|
+
border: 1px solid #eee;
|
274
|
+
margin-bottom:0 !important;
|
275
|
+
}
|
276
|
+
|
242
277
|
// Navbar Brand
|
243
278
|
.navbar-brand {
|
244
279
|
@media (min-width: $screen-md-min){
|
@@ -501,7 +536,7 @@ button#closeForm {
|
|
501
536
|
|
502
537
|
// Style for stacked nav
|
503
538
|
li.side-nav-button {
|
504
|
-
border-top: 1px
|
539
|
+
border-top: 1px sstackedolid $gray-lighter;
|
505
540
|
border-right: 0px;
|
506
541
|
border-left: 0px;
|
507
542
|
margin-bottom: -3px;
|
@@ -527,7 +562,26 @@ li.side-nav-button:first-child {
|
|
527
562
|
border-top: 2px solid $brand-primary;
|
528
563
|
}
|
529
564
|
|
565
|
+
/* Bold the first li in nav-stacked */
|
566
|
+
ul.nav.nav-pills.nav-stacked li:first-child {
|
567
|
+
font-weight: bold;
|
568
|
+
}
|
569
|
+
|
570
|
+
li.side-nav-button:hover > a {
|
571
|
+
color: $brand-primary;
|
572
|
+
}
|
530
573
|
|
574
|
+
/* Stacked Nav Icon Div */
|
575
|
+
.ext-left{
|
576
|
+
float:left;
|
577
|
+
}
|
578
|
+
.ext-right {
|
579
|
+
height: auto;
|
580
|
+
vertical-align: middle;
|
581
|
+
display: table-cell;
|
582
|
+
padding-right: 10px;
|
583
|
+
padding-left: 10px;
|
584
|
+
}
|
531
585
|
|
532
586
|
#navbar-buttons .dropdown-menu>li>a {
|
533
587
|
color: #444444;
|
data/_sass/core/tables.scss
CHANGED
@@ -29,6 +29,27 @@
|
|
29
29
|
|
30
30
|
}
|
31
31
|
|
32
|
+
|
33
|
+
/* Table Wrapper */
|
34
|
+
.table-wrapper{
|
35
|
+
overflow-x: scroll;
|
36
|
+
}
|
37
|
+
|
38
|
+
.table-wrapper::-webkit-scrollbar {
|
39
|
+
width: 12px;
|
40
|
+
background-color: #000;
|
41
|
+
}
|
42
|
+
|
43
|
+
.table-wrapper::-webkit-scrollbar-track {
|
44
|
+
background-color: $brand-primary;
|
45
|
+
}
|
46
|
+
|
47
|
+
.table-wrapper::-webkit-scrollbar-thumb {
|
48
|
+
background-color: #fff;
|
49
|
+
-webkit-box-shadow: inset 0 0 1px #000;
|
50
|
+
border: 1px solid $brand-primary;
|
51
|
+
}
|
52
|
+
|
32
53
|
table {
|
33
54
|
border-bottom: 0;
|
34
55
|
}
|
data/_sass/core/theme.scss
CHANGED
@@ -89,14 +89,27 @@ hr {
|
|
89
89
|
|
90
90
|
/*-------------Paragraphs --------------------*/
|
91
91
|
p {
|
92
|
-
font-size:
|
92
|
+
font-size: 16px;
|
93
93
|
font-weight:300;
|
94
|
-
color: #
|
94
|
+
color: #252525;
|
95
95
|
line-height: 1.66em;
|
96
96
|
word-wrap: break-word;
|
97
|
-
font-size: 20px;
|
98
97
|
}
|
99
98
|
|
99
|
+
#content-container p.justify {
|
100
|
+
font-size: 16px;
|
101
|
+
text-align: justify;
|
102
|
+
line-height: 1.66em;
|
103
|
+
}
|
104
|
+
|
105
|
+
#content-container h2 {
|
106
|
+
font-size: 30px;
|
107
|
+
color: #3D383E;
|
108
|
+
font-weight: 200;
|
109
|
+
text-transform: none;
|
110
|
+
}
|
111
|
+
|
112
|
+
|
100
113
|
/* Padded Para */
|
101
114
|
.padded-para{
|
102
115
|
padding:20px;
|
@@ -129,12 +142,6 @@ p .justified{
|
|
129
142
|
padding-bottom: 20px;
|
130
143
|
}
|
131
144
|
|
132
|
-
//Content Container block elemcents
|
133
|
-
#content-container p {
|
134
|
-
font-size: 20px;
|
135
|
-
color: black;
|
136
|
-
line-height: 1.66em;
|
137
|
-
}
|
138
145
|
|
139
146
|
#content-container ul { font-size:18px; }
|
140
147
|
#content-container ol { font-size: 18px;}
|
@@ -416,3 +423,85 @@ button#mc-embedded-subscribe:hover{
|
|
416
423
|
color: white;
|
417
424
|
transition: all 200ms ease;
|
418
425
|
}
|
426
|
+
|
427
|
+
/* Repsonsive Media Embed */
|
428
|
+
.embed-responsive-16by9 {
|
429
|
+
padding-bottom: 56.25%;
|
430
|
+
margin-bottom: 25px;
|
431
|
+
}
|
432
|
+
|
433
|
+
/* Right Aligned Image*/
|
434
|
+
img.img-responsive.right-aligned-image {
|
435
|
+
float: right;
|
436
|
+
width: 30%;
|
437
|
+
margin: 30px;
|
438
|
+
}
|
439
|
+
|
440
|
+
@media(max-width:$screen-xs-min){
|
441
|
+
|
442
|
+
/* Mobile Screens - Right Aligned Images */
|
443
|
+
img.img-responsive.right-aligned-image.lazyloaded {
|
444
|
+
float: none;
|
445
|
+
width: 100%;
|
446
|
+
margin-left: auto;
|
447
|
+
margin-right: auto;
|
448
|
+
margin-top: -9px;
|
449
|
+
margin-bottom: -15px;
|
450
|
+
}
|
451
|
+
|
452
|
+
}
|
453
|
+
|
454
|
+
/* Wordpress Styles */
|
455
|
+
#content-container blockquote, #content-container code, #content-container dl, #content-container fieldset,
|
456
|
+
#content-container p, #content-container pre, #content-container table, #content-container ul {
|
457
|
+
margin-bottom: 25px;
|
458
|
+
}
|
459
|
+
|
460
|
+
#content-container a:hover {
|
461
|
+
text-decoration: none;
|
462
|
+
color: darken($brand-primary, 20%);
|
463
|
+
}
|
464
|
+
|
465
|
+
#content-container ul {
|
466
|
+
color: #252525 !important;
|
467
|
+
font-size: 16px !important;
|
468
|
+
}
|
469
|
+
|
470
|
+
/* Blockquote Styles*/
|
471
|
+
blockquote{
|
472
|
+
background-color: #f6f6f6;
|
473
|
+
}
|
474
|
+
|
475
|
+
blockquote:before {
|
476
|
+
position: relative;
|
477
|
+
background-image:url('data:image/svg+xml; utf8, <svg class="mk-svg-icon" xmlns="http://www.w3.org/2000/svg" fill="#ddd" viewBox="0 0 1664 1792"><path d="M768 960v384q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-704q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5h64q26 0 45 19t19 45v128q0 26-19 45t-45 19h-64q-106 0-181 75t-75 181v32q0 40 28 68t68 28h224q80 0 136 56t56 136zm896 0v384q0 80-56 136t-136 56h-384q-80 0-136-56t-56-136v-704q0-104 40.5-198.5t109.5-163.5 163.5-109.5 198.5-40.5h64q26 0 45 19t19 45v128q0 26-19 45t-45 19h-64q-106 0-181 75t-75 181v32q0 40 28 68t68 28h224q80 0 136 56t56 136z"></path></svg>');
|
478
|
+
content: "";
|
479
|
+
display: block;
|
480
|
+
left: 0px;
|
481
|
+
top: 0px;
|
482
|
+
width: 32px;
|
483
|
+
height: 35px;
|
484
|
+
}
|
485
|
+
|
486
|
+
/* VCenter Img*/
|
487
|
+
.vcenter-img {
|
488
|
+
display: inline-block;
|
489
|
+
vertical-align: middle;
|
490
|
+
height: 110px;
|
491
|
+
}
|
492
|
+
|
493
|
+
|
494
|
+
#content-container h1 {
|
495
|
+
color: #393836 !important;
|
496
|
+
font-size: 36px !important;
|
497
|
+
margin-top: 0;
|
498
|
+
}
|
499
|
+
|
500
|
+
#content-container h1, #content-container h2, #content-container h3, #content-container h4, #content-container h5 {
|
501
|
+
color: #393836 !important;
|
502
|
+
}
|
503
|
+
|
504
|
+
ul {
|
505
|
+
font-size: 16px;
|
506
|
+
}
|
507
|
+
|