jumbo-jekyll-theme 3.0.42 → 3.0.43
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE.txt +21 -0
- data/README.md +26 -0
- data/_config.yml +190 -0
- data/_data/authors.yml +7 -0
- data/_data/footer.yml +57 -0
- data/_data/nav.yml +75 -0
- data/_data/news.yaml +230 -0
- data/_data/settings.yml +93 -0
- data/_data/sidebar-nav.yml +23 -0
- data/_data/sticky-tab-bar.yml +29 -0
- data/_includes/author-pagination.html +36 -0
- data/_includes/authors-posts.html +49 -0
- data/_includes/breadcrumb.html +95 -0
- data/_includes/carousel-header.html +15 -0
- data/_includes/css.html +11 -0
- data/_includes/custom.html +1 -0
- data/_includes/display-blog-posts.html +67 -0
- data/_includes/disqus-comments.html +8 -0
- data/_includes/footer.html +68 -0
- data/_includes/github-edit.html +60 -0
- data/_includes/google-analytics-script.html +9 -0
- data/_includes/gtm-noscript.html +5 -0
- data/_includes/gtm-script.html +7 -0
- data/_includes/head.html +44 -0
- data/_includes/hero-banner.html +21 -0
- data/_includes/image.html +6 -0
- data/_includes/javascript.html +9 -0
- data/_includes/jumbotron.html +71 -0
- data/_includes/linaro-404.html +10 -0
- data/_includes/linaro-svg.html +1 -0
- data/_includes/media.html +11 -0
- data/_includes/members.html +63 -0
- data/_includes/nav.html +132 -0
- data/_includes/newsletter-script.html +30 -0
- data/_includes/owl-carousel-homepage.html +103 -0
- data/_includes/pagination-authors.html +36 -0
- data/_includes/pagination-news.html +36 -0
- data/_includes/pagination.html +36 -0
- data/_includes/post-sidebar.html +90 -0
- data/_includes/post-tags.html +9 -0
- data/_includes/read_time.html +2 -0
- data/_includes/responsive-image.html +6 -0
- data/_includes/schema.html +50 -0
- data/_includes/sidebar.html +55 -0
- data/_includes/sticky-tab-bar.html +61 -0
- data/_includes/thumb.html +2 -0
- data/_includes/thumbnail_image.html +10 -0
- data/_includes/universal-nav.html +28 -0
- data/_includes/youtube.html +7 -0
- data/_layouts/author-layout.html +13 -0
- data/_layouts/author.html +7 -0
- data/_layouts/container-breadcrumb-tabs.html +10 -0
- data/_layouts/container-breadcrumb.html +19 -0
- data/_layouts/container.html +8 -0
- data/_layouts/default.html +27 -0
- data/_layouts/error.html +23 -0
- data/_layouts/jumbotron-container.html +19 -0
- data/_layouts/jumbotron.html +12 -0
- data/_layouts/post-index.html +18 -0
- data/_layouts/post-old.html +70 -0
- data/_layouts/post.html +145 -0
- data/_layouts/redirect.html +11 -0
- data/_sass/_bootstrap-compass.scss +9 -0
- data/_sass/_bootstrap-mincer.scss +19 -0
- data/_sass/_bootstrap-sprockets.scss +9 -0
- data/_sass/_bootstrap.scss +56 -0
- data/_sass/app/blog.scss +59 -0
- data/_sass/app/contact.scss +3 -0
- data/_sass/app/custom.scss +1 -0
- data/_sass/app/overrides.scss +37 -0
- data/_sass/app/search.scss +1 -0
- data/_sass/blog.scss +9 -0
- data/_sass/bootstrap/_alerts.scss +73 -0
- data/_sass/bootstrap/_badges.scss +68 -0
- data/_sass/bootstrap/_breadcrumbs.scss +28 -0
- data/_sass/bootstrap/_button-groups.scss +244 -0
- data/_sass/bootstrap/_buttons.scss +168 -0
- data/_sass/bootstrap/_carousel.scss +270 -0
- data/_sass/bootstrap/_close.scss +36 -0
- data/_sass/bootstrap/_code.scss +69 -0
- data/_sass/bootstrap/_component-animations.scss +37 -0
- data/_sass/bootstrap/_dropdowns.scss +216 -0
- data/_sass/bootstrap/_forms.scss +617 -0
- data/_sass/bootstrap/_glyphicons.scss +307 -0
- data/_sass/bootstrap/_grid.scss +84 -0
- data/_sass/bootstrap/_input-groups.scss +171 -0
- data/_sass/bootstrap/_jumbotron.scss +54 -0
- data/_sass/bootstrap/_labels.scss +66 -0
- data/_sass/bootstrap/_list-group.scss +130 -0
- data/_sass/bootstrap/_media.scss +66 -0
- data/_sass/bootstrap/_mixins.scss +40 -0
- data/_sass/bootstrap/_modals.scss +150 -0
- data/_sass/bootstrap/_navbar.scss +662 -0
- data/_sass/bootstrap/_navs.scss +242 -0
- data/_sass/bootstrap/_normalize.scss +424 -0
- data/_sass/bootstrap/_pager.scss +54 -0
- data/_sass/bootstrap/_pagination.scss +89 -0
- data/_sass/bootstrap/_panels.scss +271 -0
- data/_sass/bootstrap/_popovers.scss +131 -0
- data/_sass/bootstrap/_print.scss +101 -0
- data/_sass/bootstrap/_progress-bars.scss +87 -0
- data/_sass/bootstrap/_responsive-embed.scss +35 -0
- data/_sass/bootstrap/_responsive-utilities.scss +179 -0
- data/_sass/bootstrap/_scaffolding.scss +161 -0
- data/_sass/bootstrap/_tables.scss +234 -0
- data/_sass/bootstrap/_theme.scss +291 -0
- data/_sass/bootstrap/_thumbnails.scss +38 -0
- data/_sass/bootstrap/_tooltip.scss +101 -0
- data/_sass/bootstrap/_type.scss +298 -0
- data/_sass/bootstrap/_utilities.scss +55 -0
- data/_sass/bootstrap/_variables.scss +932 -0
- data/_sass/bootstrap/_wells.scss +29 -0
- data/_sass/bootstrap/mixins/_alerts.scss +14 -0
- data/_sass/bootstrap/mixins/_background-variant.scss +12 -0
- data/_sass/bootstrap/mixins/_border-radius.scss +18 -0
- data/_sass/bootstrap/mixins/_buttons.scss +65 -0
- data/_sass/bootstrap/mixins/_center-block.scss +7 -0
- data/_sass/bootstrap/mixins/_clearfix.scss +22 -0
- data/_sass/bootstrap/mixins/_forms.scss +88 -0
- data/_sass/bootstrap/mixins/_gradients.scss +58 -0
- data/_sass/bootstrap/mixins/_grid-framework.scss +81 -0
- data/_sass/bootstrap/mixins/_grid.scss +122 -0
- data/_sass/bootstrap/mixins/_hide-text.scss +21 -0
- data/_sass/bootstrap/mixins/_image.scss +33 -0
- data/_sass/bootstrap/mixins/_labels.scss +12 -0
- data/_sass/bootstrap/mixins/_list-group.scss +32 -0
- data/_sass/bootstrap/mixins/_nav-divider.scss +10 -0
- data/_sass/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/_sass/bootstrap/mixins/_opacity.scss +8 -0
- data/_sass/bootstrap/mixins/_pagination.scss +24 -0
- data/_sass/bootstrap/mixins/_panels.scss +24 -0
- data/_sass/bootstrap/mixins/_progress-bar.scss +10 -0
- data/_sass/bootstrap/mixins/_reset-filter.scss +8 -0
- data/_sass/bootstrap/mixins/_reset-text.scss +18 -0
- data/_sass/bootstrap/mixins/_resize.scss +6 -0
- data/_sass/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/_sass/bootstrap/mixins/_size.scss +10 -0
- data/_sass/bootstrap/mixins/_tab-focus.scss +9 -0
- data/_sass/bootstrap/mixins/_table-row.scss +28 -0
- data/_sass/bootstrap/mixins/_text-emphasis.scss +12 -0
- data/_sass/bootstrap/mixins/_text-overflow.scss +8 -0
- data/_sass/bootstrap/mixins/_vendor-prefixes.scss +222 -0
- data/_sass/core.scss +18 -0
- data/_sass/core/animations.scss +125 -0
- data/_sass/core/blog.scss +438 -0
- data/_sass/core/breadcrumb.scss +98 -0
- data/_sass/core/carousel-header.scss +91 -0
- data/_sass/core/carousel-styles.scss +4 -0
- data/_sass/core/carousel.scss +312 -0
- data/_sass/core/cookieconsent.scss +39 -0
- data/_sass/core/critical.scss +0 -0
- data/_sass/core/custom.scss +3 -0
- data/_sass/core/error.scss +186 -0
- data/_sass/core/fa.scss +2336 -0
- data/_sass/core/featherlight.scss +158 -0
- data/_sass/core/flipclock.scss +434 -0
- data/_sass/core/fly.scss +10 -0
- data/_sass/core/font-awesome.min.scss +4 -0
- data/_sass/core/fonts.scss +3 -0
- data/_sass/core/footer.scss +146 -0
- data/_sass/core/forms.scss +3 -0
- data/_sass/core/homepage.scss +19 -0
- data/_sass/core/jumbotron.scss +116 -0
- data/_sass/core/lightbox.scss +212 -0
- data/_sass/core/nav.scss +958 -0
- data/_sass/core/owl.carousel.min.scss +6 -0
- data/_sass/core/owl.theme.default.min.scss +6 -0
- data/_sass/core/social-media-icons.scss +67 -0
- data/_sass/core/syntax.scss +65 -0
- data/_sass/core/tables.scss +145 -0
- data/_sass/core/theme.scss +714 -0
- data/_sass/core/universal-nav.scss +161 -0
- data/_sass/core/youtube-lazy.scss +51 -0
- data/_sass/core/youtube.scss +65 -0
- data/_sass/home.scss +2 -0
- data/assets/css/main-blog.scss +19 -0
- data/assets/css/main-error.scss +14 -0
- data/assets/css/main-search.scss +13 -0
- data/assets/css/main.scss +12 -0
- data/assets/fonts/fontawesome-webfont.eot +0 -0
- data/assets/fonts/fontawesome-webfont.svg +2671 -0
- data/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/assets/fonts/fontawesome-webfont.woff +0 -0
- data/assets/fonts/fontawesome-webfont.woff2 +0 -0
- data/assets/fonts/fontello.eot +0 -0
- data/assets/fonts/fontello.svg +44 -0
- data/assets/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/assets/fonts/glyphicons-halflings-regular.woff +0 -0
- data/assets/fonts/glyphicons-halflings-regular.woff2 +0 -0
- data/assets/fonts/lato-regular/LICENSE.txt +93 -0
- data/assets/fonts/lato-regular/Lato-regular.eot +0 -0
- data/assets/fonts/lato-regular/Lato-regular.svg +435 -0
- data/assets/fonts/lato-regular/Lato-regular.ttf +0 -0
- data/assets/fonts/lato-regular/Lato-regular.woff +0 -0
- data/assets/fonts/lato-regular/Lato-regular.woff2 +0 -0
- data/assets/images/Linaro-Logo.svg +1 -0
- data/assets/images/Linaro-Logo_light.png +0 -0
- data/assets/images/Linaro-Logo_standard.svg +1 -0
- data/assets/images/Linaro-Sprinkle.png +0 -0
- data/assets/images/avatar-placeholder.png +0 -0
- data/assets/images/breadcrumb-image.jpg +0 -0
- data/assets/images/close.png +0 -0
- data/assets/images/content/background-image1.jpg +0 -0
- data/assets/images/content/background-image2.png +0 -0
- data/assets/images/content/background-image3.jpg +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/favicon.png +0 -0
- data/assets/images/loading.gif +0 -0
- data/assets/images/next.png +0 -0
- data/assets/images/owl.video.play.png +0 -0
- data/assets/images/placeholder.png +0 -0
- data/assets/images/prev.png +0 -0
- data/assets/images/social-media-image.png +0 -0
- data/assets/js/app/blog-comments.js +50 -0
- data/assets/js/app/custom.js +0 -0
- data/assets/js/app/facebook.js +8 -0
- data/assets/js/app/fly.js +45 -0
- data/assets/js/app/home.js +46 -0
- data/assets/js/app/main.js +163 -0
- data/assets/js/app/scroll-to-anchors.js +10 -0
- data/assets/js/app/search.js +29 -0
- data/assets/js/app/sticky-tab-bar.js +71 -0
- data/assets/js/app/tables.js +35 -0
- data/assets/js/app/youtube-lazy.js +25 -0
- data/assets/js/package-blog.js +13 -0
- data/assets/js/package-extended.js +14 -0
- data/assets/js/package-home.js +12 -0
- data/assets/js/package-main.js +13 -0
- data/assets/js/package-search.js +8 -0
- data/assets/js/vendor/bootstrap.js +2377 -0
- data/assets/js/vendor/cognito.js +11 -0
- data/assets/js/vendor/cookieconsent.js +1495 -0
- data/assets/js/vendor/disqus-loader.js +87 -0
- data/assets/js/vendor/featherlight.js +641 -0
- data/assets/js/vendor/jquery.js +10364 -0
- data/assets/js/vendor/jquery.rss.js +333 -0
- data/assets/js/vendor/jquery.validate.js +1601 -0
- data/assets/js/vendor/lazysizes.js +698 -0
- data/assets/js/vendor/loadCSS.js +35 -0
- data/assets/js/vendor/ls.unveilhooks.js +145 -0
- data/assets/js/vendor/owl.carousel.js +3475 -0
- data/assets/js/vendor/picturefill.js +1471 -0
- data/assets/js/vendor/shuffle.js +2004 -0
- data/robots.txt +9 -0
- metadata +246 -2
data/_sass/core.scss
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
// Core Jumbo Jekyll Theme Sass includes.
|
2
|
+
@import "core/fonts";
|
3
|
+
@import "core/nav";
|
4
|
+
@import "core/theme";
|
5
|
+
@import "core/cookieconsent";
|
6
|
+
@import "core/footer";
|
7
|
+
@import "core/social-media-icons";
|
8
|
+
@import "core/breadcrumb";
|
9
|
+
@import "core/tables";
|
10
|
+
@import "core/forms";
|
11
|
+
@import "core/fa";
|
12
|
+
@import "core/fly";
|
13
|
+
@import "core/jumbotron";
|
14
|
+
@import "core/featherlight";
|
15
|
+
@import "core/animations";
|
16
|
+
@import "core/carousel-styles";
|
17
|
+
@import "core/owl.carousel.min";
|
18
|
+
@import "core/owl.theme.default.min";
|
@@ -0,0 +1,125 @@
|
|
1
|
+
|
2
|
+
// fade-in animation - fades in on page load.
|
3
|
+
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
|
4
|
+
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
|
5
|
+
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
|
6
|
+
@-webkit-keyframes rotate {
|
7
|
+
from
|
8
|
+
{
|
9
|
+
-webkit-transform: rotate(0deg);
|
10
|
+
}
|
11
|
+
to
|
12
|
+
{
|
13
|
+
-webkit-transform: rotate(360deg);
|
14
|
+
}
|
15
|
+
}
|
16
|
+
@-moz-keyframes rotate {
|
17
|
+
from
|
18
|
+
{
|
19
|
+
-webkit-transform: rotate(0deg);
|
20
|
+
}
|
21
|
+
to
|
22
|
+
{
|
23
|
+
-webkit-transform: rotate(360deg);
|
24
|
+
}
|
25
|
+
}
|
26
|
+
@keyframes rotate {
|
27
|
+
from
|
28
|
+
{
|
29
|
+
-webkit-transform: rotate(0deg);
|
30
|
+
}
|
31
|
+
to
|
32
|
+
{
|
33
|
+
-webkit-transform: rotate(360deg);
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
.fade-in-one{
|
38
|
+
opacity:0; /* make things invisible upon start */
|
39
|
+
-webkit-animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
|
40
|
+
-moz-animation:fadeIn ease-in 1;
|
41
|
+
animation:fadeIn ease-in 1;
|
42
|
+
|
43
|
+
-webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
|
44
|
+
-moz-animation-fill-mode:forwards;
|
45
|
+
animation-fill-mode:forwards;
|
46
|
+
|
47
|
+
-webkit-animation-duration:0.5s;
|
48
|
+
-moz-animation-duration:0.5s;
|
49
|
+
animation-duration:0.5s;
|
50
|
+
|
51
|
+
-webkit-animation-delay: 1s;
|
52
|
+
-moz-animation-delay: 1s;
|
53
|
+
animation-delay: 1s;
|
54
|
+
}
|
55
|
+
.fade-in-two{
|
56
|
+
opacity:0; /* make things invisible upon start */
|
57
|
+
-webkit-animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
|
58
|
+
-moz-animation:fadeIn ease-in 1;
|
59
|
+
animation:fadeIn ease-in 1;
|
60
|
+
|
61
|
+
-webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
|
62
|
+
-moz-animation-fill-mode:forwards;
|
63
|
+
animation-fill-mode:forwards;
|
64
|
+
|
65
|
+
-webkit-animation-duration:0.5s;
|
66
|
+
-moz-animation-duration:0.5s;
|
67
|
+
animation-duration:0.5s;
|
68
|
+
|
69
|
+
-webkit-animation-delay: 1.5s;
|
70
|
+
-moz-animation-delay: 1.5s;
|
71
|
+
animation-delay: 1.5s;
|
72
|
+
}
|
73
|
+
.fade-in-three{
|
74
|
+
opacity:0; /* make things invisible upon start */
|
75
|
+
-webkit-animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
|
76
|
+
-moz-animation:fadeIn ease-in 1;
|
77
|
+
animation:fadeIn ease-in 1;
|
78
|
+
|
79
|
+
-webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
|
80
|
+
-moz-animation-fill-mode:forwards;
|
81
|
+
animation-fill-mode:forwards;
|
82
|
+
|
83
|
+
-webkit-animation-duration:0.5s;
|
84
|
+
-moz-animation-duration:0.5s;
|
85
|
+
animation-duration:0.5s;
|
86
|
+
|
87
|
+
-webkit-animation-delay: 2s;
|
88
|
+
-moz-animation-delay: 2s;
|
89
|
+
animation-delay: 2s;
|
90
|
+
}
|
91
|
+
.fade-in-four{
|
92
|
+
opacity:0; /* make things invisible upon start */
|
93
|
+
-webkit-animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
|
94
|
+
-moz-animation:fadeIn ease-in 1;
|
95
|
+
animation:fadeIn ease-in 1;
|
96
|
+
|
97
|
+
-webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
|
98
|
+
-moz-animation-fill-mode:forwards;
|
99
|
+
animation-fill-mode:forwards;
|
100
|
+
|
101
|
+
-webkit-animation-duration:0.5s;
|
102
|
+
-moz-animation-duration:0.5s;
|
103
|
+
animation-duration:0.5s;
|
104
|
+
|
105
|
+
-webkit-animation-delay: 2.5s;
|
106
|
+
-moz-animation-delay: 2.5s;
|
107
|
+
animation-delay: 2.5s;
|
108
|
+
}
|
109
|
+
|
110
|
+
|
111
|
+
.rotate-img
|
112
|
+
{
|
113
|
+
-webkit-animation-name: rotate;
|
114
|
+
-moz-animation-name: rotate;
|
115
|
+
animation-name: rotate;
|
116
|
+
-webkit-animation-duration: 30s;
|
117
|
+
-moz-animation-duration: 30s;
|
118
|
+
animation-duration: 30s;
|
119
|
+
-webkit-animation-iteration-count: infinite;
|
120
|
+
-moz-animation-iteration-count: infinite;
|
121
|
+
animation-iteration-count: infinite;
|
122
|
+
-webkit-animation-timing-function: linear;
|
123
|
+
-moz-animation-timing-function: linear;
|
124
|
+
animation-timing-function: linear;
|
125
|
+
}
|
@@ -0,0 +1,438 @@
|
|
1
|
+
|
2
|
+
/* Pagination Style */
|
3
|
+
div#pagination_panel > ul > li.active > a{
|
4
|
+
color: $navbar-inverse-bg;
|
5
|
+
}
|
6
|
+
|
7
|
+
/* Make sure the comments sections is beneath content. */
|
8
|
+
section#comments-section {
|
9
|
+
clear: both;
|
10
|
+
}
|
11
|
+
#content-container p.post_excerpt {
|
12
|
+
font-size: 15px;
|
13
|
+
margin-top: 10px;
|
14
|
+
}
|
15
|
+
|
16
|
+
/* Make sure div extends with content */
|
17
|
+
article.post-content {
|
18
|
+
overflow: auto;
|
19
|
+
}
|
20
|
+
|
21
|
+
.row.blog_post picture {
|
22
|
+
top: -20px;
|
23
|
+
position: relative;
|
24
|
+
}
|
25
|
+
#content-container .blog_post h3 {
|
26
|
+
margin-top: 0px;
|
27
|
+
}
|
28
|
+
#content-container .row.blog_post picture {
|
29
|
+
top:0px;
|
30
|
+
}
|
31
|
+
|
32
|
+
#content-container .blog_post img.img-responsive.center-block {
|
33
|
+
padding:0px;
|
34
|
+
}
|
35
|
+
|
36
|
+
/* Blog Side Bar Panel Title */
|
37
|
+
#wrapper h3.panel-title {
|
38
|
+
color: $blog-panel-title-colour;
|
39
|
+
}
|
40
|
+
|
41
|
+
/* Post Info - post.html layout */
|
42
|
+
.post-info {
|
43
|
+
margin-bottom: 20px;
|
44
|
+
}
|
45
|
+
|
46
|
+
/* Blog Author Image */
|
47
|
+
img.blog-author-image {
|
48
|
+
transition: all 100ms linear;
|
49
|
+
}
|
50
|
+
|
51
|
+
/* Change the author image border on hover */
|
52
|
+
a:hover > img.blog-author-image {
|
53
|
+
border-color: #d4d4d4;
|
54
|
+
}
|
55
|
+
|
56
|
+
/* Blog Author Text */
|
57
|
+
#wrapper small.blog-author.text-center > a > em {
|
58
|
+
color:white;
|
59
|
+
transition: all 500ms linear;
|
60
|
+
}
|
61
|
+
#wrapper small.blog-author.text-center > a:hover > em {
|
62
|
+
color:#a681b8;
|
63
|
+
}
|
64
|
+
/* Blog Post Images - Responsive by default */
|
65
|
+
article.post-content img {
|
66
|
+
width: 100%;
|
67
|
+
height: auto;
|
68
|
+
}
|
69
|
+
|
70
|
+
/* Blog Image thumbnail size */
|
71
|
+
img.img-thumbnail {
|
72
|
+
width: 100px;
|
73
|
+
}
|
74
|
+
|
75
|
+
/* Blog Side Panel Styles*/
|
76
|
+
.blog-panel{
|
77
|
+
margin-top:30px;
|
78
|
+
}
|
79
|
+
.blog-panel .panel-primary .panel-heading{
|
80
|
+
margin-left: 5px;
|
81
|
+
}
|
82
|
+
.img-blog{
|
83
|
+
height:600px;
|
84
|
+
}
|
85
|
+
.blog-featured-img-container{
|
86
|
+
position: relative;
|
87
|
+
}
|
88
|
+
#jumbotron-content{
|
89
|
+
color: $featured-image-text-color;
|
90
|
+
margin-left: auto;
|
91
|
+
margin-bottom: 82px;
|
92
|
+
margin-right: auto;
|
93
|
+
z-index: 1;
|
94
|
+
height: 300px;
|
95
|
+
text-align: center;
|
96
|
+
line-height: 50px;
|
97
|
+
position: relative;
|
98
|
+
vertical-align: middle;
|
99
|
+
}
|
100
|
+
.blog-title {
|
101
|
+
width: 50%;
|
102
|
+
margin-right: auto;
|
103
|
+
margin-left: auto;
|
104
|
+
font-size: 56px;
|
105
|
+
}
|
106
|
+
.panel-primary {
|
107
|
+
border: 1px solid #7b7b7b;
|
108
|
+
}
|
109
|
+
.panel-heading {
|
110
|
+
background-color: $brand-primary;
|
111
|
+
color: #fff;
|
112
|
+
}
|
113
|
+
|
114
|
+
.blog-author-image{
|
115
|
+
height: 83px;
|
116
|
+
width: 83px;
|
117
|
+
border-radius: 83px;
|
118
|
+
border: 4px solid white;
|
119
|
+
background-size: cover;
|
120
|
+
background-repeat: no-repeat;
|
121
|
+
}
|
122
|
+
.full-page-image-text{
|
123
|
+
top:300px;
|
124
|
+
position:relative;
|
125
|
+
margin-left: auto;
|
126
|
+
margin-right: auto;
|
127
|
+
z-index: 1;
|
128
|
+
line-height:50px;
|
129
|
+
vertical-align:middle;
|
130
|
+
}
|
131
|
+
.no-padding {
|
132
|
+
padding: 0 !important;
|
133
|
+
margin: 0 !important;
|
134
|
+
}
|
135
|
+
.blog-icons{
|
136
|
+
border: 1px solid $gray-light;
|
137
|
+
border-radius: 45px;
|
138
|
+
width: 34px;
|
139
|
+
padding: 5px;
|
140
|
+
float: left;
|
141
|
+
display: block;
|
142
|
+
margin: 5px;
|
143
|
+
opacity: .8;
|
144
|
+
color: $gray-light;
|
145
|
+
-webkit-transition: all 1s ease;
|
146
|
+
transition: all 1s ease;
|
147
|
+
}
|
148
|
+
.blog-icons:hover{
|
149
|
+
color: $brand-primary;
|
150
|
+
border: 1px solid $brand-primary;
|
151
|
+
background-color: black;
|
152
|
+
opacity: 1;
|
153
|
+
transition: all 1s ease;
|
154
|
+
}
|
155
|
+
.blog-icons:active, .blog-icons:focus{
|
156
|
+
border: 1px solid $gray-light;
|
157
|
+
border-radius: 45px;
|
158
|
+
width: 45px;
|
159
|
+
margin: 4px;
|
160
|
+
opacity: .8;
|
161
|
+
color: $gray-light;
|
162
|
+
}
|
163
|
+
.blog-read-more-btn{
|
164
|
+
background-color: white;
|
165
|
+
border: 2px solid $gray-base;
|
166
|
+
border-radius: 0px;
|
167
|
+
color: $gray-base;
|
168
|
+
transition: all 1s ease;
|
169
|
+
padding: 6px;
|
170
|
+
}
|
171
|
+
.blog-read-more-btn:hover{
|
172
|
+
background-color: $brand-primary;
|
173
|
+
color: white;
|
174
|
+
transition: all 1s ease;
|
175
|
+
}
|
176
|
+
.blog-read-more-btn:active, .blog-read-more-btn:focus{
|
177
|
+
background-color: $brand-primary;
|
178
|
+
color: white;
|
179
|
+
transition: all 1s ease;
|
180
|
+
}
|
181
|
+
a.featured_blog_post_text {
|
182
|
+
font-size: 13px;
|
183
|
+
line-height: 18px;
|
184
|
+
color: $gray-base;
|
185
|
+
transition: all 1s ease;
|
186
|
+
}
|
187
|
+
a.featured_blog_post_text:hover{
|
188
|
+
font-size: 13px;
|
189
|
+
line-height: 18px;
|
190
|
+
color: $brand-primary;
|
191
|
+
transition: all 1s ease;
|
192
|
+
}
|
193
|
+
.blog_post{
|
194
|
+
border-bottom: 1px solid $gray-lighter;
|
195
|
+
padding-bottom: 10px;
|
196
|
+
padding-top: 10px;
|
197
|
+
}
|
198
|
+
|
199
|
+
.featured_blog_post {
|
200
|
+
height: auto;
|
201
|
+
margin: -1px;
|
202
|
+
border-bottom: 1px solid $gray-lighter;
|
203
|
+
padding: 12px;
|
204
|
+
}
|
205
|
+
.blog-well {
|
206
|
+
background: $gray-darker;
|
207
|
+
}
|
208
|
+
.btn-blog{
|
209
|
+
border: 2px solid $gray-lighter;
|
210
|
+
color: $gray-base;
|
211
|
+
padding: 6px;
|
212
|
+
}
|
213
|
+
.btn-blog:hover{
|
214
|
+
color: $brand-primary;
|
215
|
+
}
|
216
|
+
.blog-img {
|
217
|
+
margin-top:25px;
|
218
|
+
}
|
219
|
+
#blog-background-image{
|
220
|
+
background-size: cover;
|
221
|
+
height:800px;
|
222
|
+
}
|
223
|
+
.post-content ol, .post-content ul {
|
224
|
+
line-height: 1.6em;
|
225
|
+
font-size: 16px;
|
226
|
+
}
|
227
|
+
.post_tag {
|
228
|
+
background-color: $gray-lighter;
|
229
|
+
margin: 2px;
|
230
|
+
color: #464646;
|
231
|
+
}
|
232
|
+
//Pagination centered style
|
233
|
+
.pagination-centered {
|
234
|
+
text-align: center;
|
235
|
+
}
|
236
|
+
/* Article Post Content Style */
|
237
|
+
article.post-content {
|
238
|
+
overflow: auto;
|
239
|
+
}
|
240
|
+
article.post-content > .col-md-8 {
|
241
|
+
padding: 0;
|
242
|
+
}
|
243
|
+
article.post-content > .col-md-4 {
|
244
|
+
padding: 15px;
|
245
|
+
}
|
246
|
+
// Tag Cloud Style
|
247
|
+
div.tag_cloud {
|
248
|
+
margin-bottom: 20px;
|
249
|
+
margin-top: 20px;
|
250
|
+
}
|
251
|
+
div.previous_post{
|
252
|
+
display:none;
|
253
|
+
}
|
254
|
+
div.next_post{
|
255
|
+
display:none;
|
256
|
+
}
|
257
|
+
a.previous_post_anchor {
|
258
|
+
position: fixed;
|
259
|
+
top: 50%;
|
260
|
+
right:0;
|
261
|
+
z-index: 99999;
|
262
|
+
}
|
263
|
+
a.next_post_anchor {
|
264
|
+
position: fixed;
|
265
|
+
top: 50%;
|
266
|
+
left:0;
|
267
|
+
z-index: 99999;
|
268
|
+
}
|
269
|
+
//Small Inline Blog Images
|
270
|
+
#wrapper img.small-inline {
|
271
|
+
width: 100px;
|
272
|
+
height: auto;
|
273
|
+
display: inline-block;
|
274
|
+
float: left;
|
275
|
+
margin-right: 30px;
|
276
|
+
margin-top: 5px;
|
277
|
+
margin-bottom: 30px;
|
278
|
+
}
|
279
|
+
// Medium Inline Blog Images
|
280
|
+
img.medium-inline {
|
281
|
+
width: 200px !important;
|
282
|
+
height: auto !important;
|
283
|
+
display: inline-block;
|
284
|
+
float: left;
|
285
|
+
margin-right: 30px;
|
286
|
+
margin-top: 5px;
|
287
|
+
margin-bottom: 30px;
|
288
|
+
}
|
289
|
+
//Large Inline Blog Images
|
290
|
+
img.large-inline {
|
291
|
+
width: 300px !important;
|
292
|
+
height: auto !important;
|
293
|
+
display: inline-block;
|
294
|
+
float: left;
|
295
|
+
margin-right: 30px;
|
296
|
+
margin-top: 5px;
|
297
|
+
margin-bottom: 30px;
|
298
|
+
}
|
299
|
+
img.medium-inline.right {
|
300
|
+
float: right;
|
301
|
+
}
|
302
|
+
img.small-inline.right {
|
303
|
+
float: right;
|
304
|
+
}
|
305
|
+
|
306
|
+
img.large-inline.right {
|
307
|
+
float: right;
|
308
|
+
}
|
309
|
+
|
310
|
+
// Previous and Next Post Style
|
311
|
+
@media(min-width:$screen-sm-min){
|
312
|
+
#jumbotron small {
|
313
|
+
font-size:15px;
|
314
|
+
}
|
315
|
+
|
316
|
+
article{
|
317
|
+
padding-right: 20px;
|
318
|
+
}
|
319
|
+
|
320
|
+
div.previous_post{
|
321
|
+
display:block;
|
322
|
+
width: 0;
|
323
|
+
height: 0;
|
324
|
+
border-top: 20px solid transparent;
|
325
|
+
border-bottom: 20px solid transparent;
|
326
|
+
border-left: 20px solid #eee;
|
327
|
+
}
|
328
|
+
div.next_post{
|
329
|
+
display:block;
|
330
|
+
width: 0;
|
331
|
+
height: 0;
|
332
|
+
border-top: 20px solid transparent;
|
333
|
+
border-bottom: 20px solid transparent;
|
334
|
+
border-right: 20px solid #eee;
|
335
|
+
}
|
336
|
+
}
|
337
|
+
//Responsive CSS for Blog
|
338
|
+
@media(max-width:$screen-sm-min){
|
339
|
+
.blog-title{
|
340
|
+
width:95%;
|
341
|
+
font-size: 34px;
|
342
|
+
}
|
343
|
+
.blog-author-image {
|
344
|
+
height: 100px;
|
345
|
+
width: 100px;
|
346
|
+
}
|
347
|
+
em.post_date {
|
348
|
+
font-size: 13px;
|
349
|
+
}
|
350
|
+
p.post_excerpt {
|
351
|
+
font-size: 11px;
|
352
|
+
}
|
353
|
+
|
354
|
+
h3.post_title {
|
355
|
+
font-size: 17px;
|
356
|
+
}
|
357
|
+
|
358
|
+
h1#featured-image-blog-title {
|
359
|
+
font-size: 26px;
|
360
|
+
}
|
361
|
+
}
|
362
|
+
@media (max-width: $screen-xs-min) {
|
363
|
+
article.post-content > .col-md-4 {
|
364
|
+
padding: 0px;
|
365
|
+
}
|
366
|
+
}
|
367
|
+
@media(max-width: $screen-md-min - 1){
|
368
|
+
/* Blog Sidebar */
|
369
|
+
.col-md-3.blog-sidebar {
|
370
|
+
margin-top: 15px;
|
371
|
+
padding-right: 0px;
|
372
|
+
padding-left: 0px;
|
373
|
+
}
|
374
|
+
.featured_blog_post img.img-responsive {
|
375
|
+
padding-right: 10px;
|
376
|
+
}
|
377
|
+
}
|
378
|
+
// Blog Side Panel Styles
|
379
|
+
.featured_post_post > .row {
|
380
|
+
padding: 5px;
|
381
|
+
border-bottom: 1px solid #eee;
|
382
|
+
}
|
383
|
+
.featured_post_post > .row > div > img{
|
384
|
+
margin-top:10px;
|
385
|
+
margin-left:10px;
|
386
|
+
|
387
|
+
transition: all 200ms linear;
|
388
|
+
}
|
389
|
+
|
390
|
+
.featured_blog_post > .row {
|
391
|
+
padding: 5px;
|
392
|
+
border-bottom: 1px solid #eee;
|
393
|
+
|
394
|
+
transition: all 200ms linear;
|
395
|
+
}
|
396
|
+
.featured_blog_post > .row > div > img{
|
397
|
+
margin-top:10px;
|
398
|
+
margin-left:10px;
|
399
|
+
}
|
400
|
+
|
401
|
+
.blog-row .panel, .blog-post-content .panel {
|
402
|
+
border: 0 !important;
|
403
|
+
}
|
404
|
+
|
405
|
+
.blog-row .panel-body, .panel-body {
|
406
|
+
border:1px solid #eee;
|
407
|
+
padding-bottom:0;
|
408
|
+
padding-top: 0;
|
409
|
+
}
|
410
|
+
|
411
|
+
.blog-row .col-md-9.col-sm-9.col-xs-9 , .blog-post-content .col-md-9.col-sm-9.col-xs-9 {
|
412
|
+
padding-left:20px;
|
413
|
+
padding-top:10px;
|
414
|
+
}
|
415
|
+
|
416
|
+
//Hover Style
|
417
|
+
.featured_blog_post>.row:hover {
|
418
|
+
background-color: #fdfdfd;
|
419
|
+
}
|
420
|
+
|
421
|
+
.featured_blog_post small em {
|
422
|
+
color:black;
|
423
|
+
}
|
424
|
+
#jumbotron a:hover{
|
425
|
+
text-decoration: none;
|
426
|
+
}
|
427
|
+
#jumbotron a:hover img{
|
428
|
+
border-color:$brand-primary;
|
429
|
+
}
|
430
|
+
span.reading-time {
|
431
|
+
padding: 5px;
|
432
|
+
background-color: white;
|
433
|
+
color: black;
|
434
|
+
font-size: 10px;
|
435
|
+
opacity: .8;
|
436
|
+
height: 20px;
|
437
|
+
line-height: 10px;
|
438
|
+
}
|