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
File without changes
|
File without changes
|
data/_sass/home.scss
ADDED
data/assets/css/main-home.scss
CHANGED
@@ -3,26 +3,19 @@
|
|
3
3
|
//Bootstrap Overrides
|
4
4
|
@import "app/overrides";
|
5
5
|
|
6
|
-
|
7
6
|
//Boostrap Includes
|
8
7
|
@import 'bootstrap';
|
9
8
|
@import 'bootstrap/variables';
|
10
9
|
|
11
10
|
// Linaro Jekyll Theme Includes
|
12
|
-
@import "core/fonts";
|
13
11
|
|
14
|
-
@import
|
15
|
-
|
16
|
-
|
17
|
-
@import "core/nav";
|
18
|
-
@import "core/social-media-icons";
|
19
|
-
@import "core/animations";
|
20
|
-
@import "core/carousel-styles";
|
21
|
-
@import 'core/homepage';
|
12
|
+
@import 'core';
|
13
|
+
|
14
|
+
// Include the home sass partials
|
22
15
|
|
16
|
+
@import 'home';
|
23
17
|
|
24
18
|
// App Includes
|
25
19
|
// Page specific styling
|
26
20
|
// @import "app/home";
|
27
|
-
@import "app/twitter-feed";
|
28
21
|
@import "app/custom";
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jumbo-jekyll-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.2.
|
4
|
+
version: 1.4.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Kirkby
|
@@ -192,6 +192,20 @@ dependencies:
|
|
192
192
|
- - ">="
|
193
193
|
- !ruby/object:Gem::Version
|
194
194
|
version: '0'
|
195
|
+
- !ruby/object:Gem::Dependency
|
196
|
+
name: mini_magick
|
197
|
+
requirement: !ruby/object:Gem::Requirement
|
198
|
+
requirements:
|
199
|
+
- - ">="
|
200
|
+
- !ruby/object:Gem::Version
|
201
|
+
version: '0'
|
202
|
+
type: :runtime
|
203
|
+
prerelease: false
|
204
|
+
version_requirements: !ruby/object:Gem::Requirement
|
205
|
+
requirements:
|
206
|
+
- - ">="
|
207
|
+
- !ruby/object:Gem::Version
|
208
|
+
version: '0'
|
195
209
|
- !ruby/object:Gem::Dependency
|
196
210
|
name: jekyll-theme-assets
|
197
211
|
requirement: !ruby/object:Gem::Requirement
|
@@ -263,7 +277,7 @@ files:
|
|
263
277
|
- _data/news.yaml
|
264
278
|
- _data/settings.yml
|
265
279
|
- _data/sidebar-nav.yml
|
266
|
-
- _data/sticky-
|
280
|
+
- _data/sticky-tab-bar.yml
|
267
281
|
- _includes/breadcrumb.html
|
268
282
|
- _includes/css.html
|
269
283
|
- _includes/custom.html
|
@@ -277,6 +291,7 @@ files:
|
|
277
291
|
- _includes/image.html
|
278
292
|
- _includes/javascript.html
|
279
293
|
- _includes/jumbotron.html
|
294
|
+
- _includes/linaro-404.html
|
280
295
|
- _includes/linaro-svg.html
|
281
296
|
- _includes/media.html
|
282
297
|
- _includes/members.html
|
@@ -307,21 +322,16 @@ files:
|
|
307
322
|
- _layouts/post-index.html
|
308
323
|
- _layouts/post-no-sidebar.html
|
309
324
|
- _layouts/post.html
|
325
|
+
- _plugins/jekyll-minimagick.rb
|
326
|
+
- _plugins/jekyll-minimagick/version.rb
|
310
327
|
- _plugins/jekyll_get.rb
|
311
328
|
- _sass/_bootstrap-compass.scss
|
312
329
|
- _sass/_bootstrap-mincer.scss
|
313
330
|
- _sass/_bootstrap-sprockets.scss
|
314
331
|
- _sass/_bootstrap.scss
|
315
|
-
- _sass/app/about.scss
|
316
332
|
- _sass/app/blog.scss
|
317
333
|
- _sass/app/custom.scss
|
318
334
|
- _sass/app/overrides.scss
|
319
|
-
- _sass/app/planet.scss
|
320
|
-
- _sass/app/press.scss
|
321
|
-
- _sass/app/social.scss
|
322
|
-
- _sass/app/twitter-feed.scss
|
323
|
-
- _sass/app/work.scss
|
324
|
-
- _sass/app/youtube.scss
|
325
335
|
- _sass/blog.scss
|
326
336
|
- _sass/bootstrap/_alerts.scss
|
327
337
|
- _sass/bootstrap/_badges.scss
|
@@ -410,6 +420,7 @@ files:
|
|
410
420
|
- _sass/core/footer.scss
|
411
421
|
- _sass/core/forms.scss
|
412
422
|
- _sass/core/homepage.scss
|
423
|
+
- _sass/core/jumbotron.scss
|
413
424
|
- _sass/core/lightbox.scss
|
414
425
|
- _sass/core/nav.scss
|
415
426
|
- _sass/core/owl.carousel.min.scss
|
@@ -418,7 +429,10 @@ files:
|
|
418
429
|
- _sass/core/syntax.scss
|
419
430
|
- _sass/core/tables.scss
|
420
431
|
- _sass/core/theme.scss
|
432
|
+
- _sass/core/twitter-feed.scss
|
433
|
+
- _sass/core/youtube.scss
|
421
434
|
- _sass/custom.scss
|
435
|
+
- _sass/home.scss
|
422
436
|
- assets/css/main-404.scss
|
423
437
|
- assets/css/main-blog.scss
|
424
438
|
- assets/css/main-home.scss
|
@@ -464,7 +478,7 @@ files:
|
|
464
478
|
- assets/js/app/openhours-timer.js
|
465
479
|
- assets/js/app/rss.js
|
466
480
|
- assets/js/app/search-page.js
|
467
|
-
- assets/js/app/sticky-
|
481
|
+
- assets/js/app/sticky-tab-bar.js
|
468
482
|
- assets/js/app/tables.js
|
469
483
|
- assets/js/package-blog.js
|
470
484
|
- assets/js/package-developer-services.js
|
data/_data/sticky-nav.yml
DELETED
@@ -1,21 +0,0 @@
|
|
1
|
-
pages:
|
2
|
-
-
|
3
|
-
list:
|
4
|
-
-
|
5
|
-
title: "Container Left Sidebar"
|
6
|
-
url: /jekyll/layouts/container-left-sidebar/
|
7
|
-
-
|
8
|
-
title: "Container Right Sidebar"
|
9
|
-
url: "/jekyll/layouts/container-right-sidebar/"
|
10
|
-
-
|
11
|
-
title: "Container Breadcrumb Left Sidebar"
|
12
|
-
url: "/jekyll/layouts/container-breadcrumb-left-sidebar/"
|
13
|
-
-
|
14
|
-
title: "Container Breadcrumb Right Sidebar"
|
15
|
-
url: "/jekyll/layouts/container-breadcrumb-right-sidebar/"
|
16
|
-
|
17
|
-
urls: [
|
18
|
-
/jekyll/layouts/container-breadcrumb-left-sidebar/,
|
19
|
-
/jekyll/layouts/container-breadcrumb-right-sidebar/,
|
20
|
-
/jekyll/layouts/container-left-sidebar,
|
21
|
-
/jekyll/layouts/container-right-sidebar/]
|
data/_sass/app/about.scss
DELETED
@@ -1,47 +0,0 @@
|
|
1
|
-
|
2
|
-
//About Page
|
3
|
-
div.about-page-text > .col-md-4.did-you-know.no-padding {
|
4
|
-
padding: 14px;
|
5
|
-
padding-left: 10px;
|
6
|
-
font-size: 11px;
|
7
|
-
border-top: 1px solid #ccc;
|
8
|
-
border-bottom: 1px solid #ccc;
|
9
|
-
text-align: center;
|
10
|
-
}
|
11
|
-
|
12
|
-
div.about-page-text > .col-md-3.did-you-know.no-padding > h2 {
|
13
|
-
padding: -14px;
|
14
|
-
padding-left: 10px;
|
15
|
-
font-size: 14px;
|
16
|
-
}
|
17
|
-
|
18
|
-
div.about-page-text > .col-md-7.no-padding {
|
19
|
-
paddding-top:0;
|
20
|
-
}
|
21
|
-
|
22
|
-
div.about-page-text > .col-md-4.col-md-offset-1.did-you-know.no-padding > h2 {
|
23
|
-
font-size: 16px;
|
24
|
-
font-weight: bold;
|
25
|
-
}
|
26
|
-
|
27
|
-
div#about-page {
|
28
|
-
text-align: justify;
|
29
|
-
}
|
30
|
-
|
31
|
-
dt {
|
32
|
-
font-weight: bold;
|
33
|
-
font-size: 18px;
|
34
|
-
color: rgb(37,37,37);
|
35
|
-
}
|
36
|
-
|
37
|
-
//Smallest mobile view
|
38
|
-
@media(max-width:$screen-sm-min){
|
39
|
-
.linaro-profile-image {
|
40
|
-
float:none !important;
|
41
|
-
margin-bottom: 10px !important;
|
42
|
-
margin-top: 10px !important;
|
43
|
-
}
|
44
|
-
}
|
45
|
-
|
46
|
-
|
47
|
-
|
data/_sass/app/planet.scss
DELETED
data/_sass/app/press.scss
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
//Download Button
|
2
|
-
.linaro-download-button{
|
3
|
-
background-color: $brand-primary;
|
4
|
-
color: white;
|
5
|
-
letter-spacing: 0px;
|
6
|
-
font-size: 10px;
|
7
|
-
text-align: center;
|
8
|
-
box-shadow: 0px 3px 0px 0px #856893;
|
9
|
-
margin-bottom: 3px;
|
10
|
-
transition: 500ms background-color linear;
|
11
|
-
|
12
|
-
}
|
13
|
-
.linaro-download-button:hover{
|
14
|
-
background-color: #856893;
|
15
|
-
transition: 500ms background-color linear;
|
16
|
-
}
|
17
|
-
|
18
|
-
a.btn.linaro-download-button {
|
19
|
-
border-radius: 0px;
|
20
|
-
padding: 7px;
|
21
|
-
font-weight: bold;
|
22
|
-
font-size: 10px;
|
23
|
-
text-shadow: 0 1px rgba(0,0,0,.4);
|
24
|
-
}
|
data/_sass/app/social.scss
DELETED
@@ -1,29 +0,0 @@
|
|
1
|
-
// Social
|
2
|
-
.row.social-content-row {
|
3
|
-
padding-left: 30px;
|
4
|
-
padding-right: 30px;
|
5
|
-
}
|
6
|
-
|
7
|
-
.social-col{
|
8
|
-
padding-left:15px;
|
9
|
-
padding-right: 15px;
|
10
|
-
}
|
11
|
-
.col-xs-12.text-center.social-media-icon-col {
|
12
|
-
font-size: 45px;
|
13
|
-
padding: 25px;
|
14
|
-
border-bottom: 1px solid #eee;
|
15
|
-
margin-bottom: 35px;
|
16
|
-
}
|
17
|
-
.col-xs-12.text-center.social-media-icon-col > a > i:hover {
|
18
|
-
opacity: .8;
|
19
|
-
transition: all 1s ease;
|
20
|
-
}
|
21
|
-
.col-xs-12.text-center.social-media-icon-col > a > i.icon-facebook{
|
22
|
-
color: #3b5898;
|
23
|
-
}
|
24
|
-
.col-xs-12.text-center.social-media-icon-col > i.icon-twitter{
|
25
|
-
color: #1da1f2;
|
26
|
-
}
|
27
|
-
.col-xs-12.text-center.social-media-icon-col > a > i.icon-youtube{
|
28
|
-
color: #ff0001;
|
29
|
-
}
|
data/_sass/app/work.scss
DELETED
@@ -1,151 +0,0 @@
|
|
1
|
-
.work_featured_video {
|
2
|
-
margin-bottom: 20px;
|
3
|
-
}
|
4
|
-
.col-xs-12.work_footer {
|
5
|
-
padding: 0;
|
6
|
-
}
|
7
|
-
.col-sm-4.work_footer_col {
|
8
|
-
padding-left: 0;
|
9
|
-
}
|
10
|
-
|
11
|
-
|
12
|
-
// Padding fix for sub menu in work section
|
13
|
-
div#work_section {
|
14
|
-
padding-right: 0;
|
15
|
-
padding-left: 0;
|
16
|
-
}
|
17
|
-
|
18
|
-
.col-sm-4.work_footer_col li:first-child {
|
19
|
-
border-top: 0 !important;
|
20
|
-
}
|
21
|
-
.col-sm-4.work_footer_col li:first-child b {
|
22
|
-
color: #9758b7 !important;
|
23
|
-
}
|
24
|
-
.col-sm-4.work_footer_col li {
|
25
|
-
border-top: 1px solid #eee;
|
26
|
-
padding: 5px 0;
|
27
|
-
}
|
28
|
-
.col-sm-4.work_footer_col li a {
|
29
|
-
color: #9758b7;
|
30
|
-
transition: all 500ms ease;
|
31
|
-
}
|
32
|
-
.col-sm-4.work_footer_col li a:hover {
|
33
|
-
opacity: .6;
|
34
|
-
text-decoration: none;
|
35
|
-
}
|
36
|
-
|
37
|
-
.col-xs-12.group_icon_col {
|
38
|
-
margin-bottom: 25px;
|
39
|
-
border-bottom: 1px solid #eee;
|
40
|
-
}
|
41
|
-
.group_members_img {
|
42
|
-
width: auto;
|
43
|
-
max-height: 100px;
|
44
|
-
}
|
45
|
-
.group_content_section{
|
46
|
-
margin-bottom: 40px;
|
47
|
-
margin-top: 0;
|
48
|
-
}
|
49
|
-
|
50
|
-
#work_section hr, #main-container hr {
|
51
|
-
border-top: 1px solid #ccc;
|
52
|
-
}
|
53
|
-
|
54
|
-
#work_section ul.nav.nav-pills.nav-stacked > li.active > a{
|
55
|
-
background-color: #ebebeb;
|
56
|
-
font-weight: bold;
|
57
|
-
color: #9758b7;
|
58
|
-
}
|
59
|
-
|
60
|
-
#work_section li.project_element {
|
61
|
-
padding: 10px;
|
62
|
-
}
|
63
|
-
|
64
|
-
|
65
|
-
#work_section ul.nav.nav-pills.nav-stacked > li:hover > a{
|
66
|
-
background-color: transparent;
|
67
|
-
}
|
68
|
-
|
69
|
-
svg.mk-svg-icon.work {
|
70
|
-
height: 80%;
|
71
|
-
width: 80%;
|
72
|
-
margin-top: 5px;
|
73
|
-
fill: #9658b7;
|
74
|
-
opacity: 1;
|
75
|
-
|
76
|
-
transition: all 500ms ease;
|
77
|
-
}
|
78
|
-
|
79
|
-
.col-sm-6.col-md-3.text-center.work_icon_col {
|
80
|
-
padding: 70px;
|
81
|
-
}
|
82
|
-
.about-icon.work:hover svg.mk-svg-icon.work{
|
83
|
-
opacity: .8;
|
84
|
-
}
|
85
|
-
|
86
|
-
|
87
|
-
.about-icon.work:hover + a{
|
88
|
-
opacity: 1;
|
89
|
-
}
|
90
|
-
.about-icon.work{
|
91
|
-
border: 1px solid #9658b7;
|
92
|
-
transition: all 500ms ease;
|
93
|
-
}
|
94
|
-
|
95
|
-
.about-icon.work a {
|
96
|
-
text-decoration: none;
|
97
|
-
color: #9658b7;
|
98
|
-
opacity: .8;
|
99
|
-
|
100
|
-
transition: all 500ms ease;
|
101
|
-
}
|
102
|
-
|
103
|
-
div.work-icon-col{
|
104
|
-
padding: 20px;
|
105
|
-
}
|
106
|
-
|
107
|
-
a.btn.btn-lead-projects {
|
108
|
-
background-color: #a681b8;
|
109
|
-
color: white !important;
|
110
|
-
|
111
|
-
transition: all 500ms ease;
|
112
|
-
}
|
113
|
-
a.btn.btn-lead-projects:hover {
|
114
|
-
background-color: #9758b7;
|
115
|
-
color: white !important;
|
116
|
-
}
|
117
|
-
|
118
|
-
.col-xs-12.contact_form, .col-xs-12.group_playlist {
|
119
|
-
padding: 0;
|
120
|
-
}
|
121
|
-
|
122
|
-
.col-xs-12.group_member_images {
|
123
|
-
margin-bottom: 30px;
|
124
|
-
padding-top: 20px;
|
125
|
-
padding-left: 0;
|
126
|
-
padding-right: 0;
|
127
|
-
padding-bottom: 0;
|
128
|
-
border-top: 1px solid #eee;
|
129
|
-
}
|
130
|
-
|
131
|
-
.lead_projects i.glyphicon.glyphicon-lock {
|
132
|
-
margin-right: 17px;
|
133
|
-
display: block;
|
134
|
-
float: left;
|
135
|
-
line-height: 35px;
|
136
|
-
margin-top: auto;
|
137
|
-
}
|
138
|
-
|
139
|
-
div.group_member_images > h5 {
|
140
|
-
margin-bottom: 20px;
|
141
|
-
}
|
142
|
-
|
143
|
-
div.group_member_images > .col-md-2.col-sm-3.col-xs-4 {
|
144
|
-
min-height: 100px;
|
145
|
-
}
|
146
|
-
//Smallest mobile view
|
147
|
-
@media(max-width:$screen-xs-min){
|
148
|
-
.col-xs-6.col-md-3.text-center.work_icon_col {
|
149
|
-
margin-bottom: 35px;
|
150
|
-
}
|
151
|
-
}
|