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
@@ -0,0 +1,98 @@
|
|
1
|
+
/* -------------------------- Breadcrumb Style -------------------------- */
|
2
|
+
/* Bread Crumb Paragraphs */
|
3
|
+
|
4
|
+
//Mobile Style for Breadcrumb
|
5
|
+
|
6
|
+
@media(max-width:$screen-sm-min){
|
7
|
+
.breadcrumb-container h1, .breadcrumb-container h2, .breadcrumb-container h3 {
|
8
|
+
margin-top: 0;
|
9
|
+
margin-bottom: 0;
|
10
|
+
}
|
11
|
+
|
12
|
+
.breadcrumb{
|
13
|
+
margin-bottom: 0;
|
14
|
+
}
|
15
|
+
|
16
|
+
.breadcrumb-container{
|
17
|
+
padding-top: 5px;
|
18
|
+
padding-bottom: 5px;
|
19
|
+
}
|
20
|
+
.breadcrumb-inner-container h1, .breadcrumb-inner-container h2, .breadcrumb-inner-container h3 {
|
21
|
+
letter-spacing: 0;
|
22
|
+
font-size: 22px;
|
23
|
+
color: #fff;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
/* Bread Crumb Headings */
|
28
|
+
|
29
|
+
.breadcrumb-inner-container h1, .breadcrumb-inner-container h2, .breadcrumb-inner-container h3 {
|
30
|
+
letter-spacing: 0;
|
31
|
+
font-size: 34px;
|
32
|
+
color: #fff;
|
33
|
+
}
|
34
|
+
|
35
|
+
/* Bread Crumb Ordered List Style */
|
36
|
+
|
37
|
+
// Active Colour
|
38
|
+
ol.breadcrumb > li.active {
|
39
|
+
color: $navbar-text-color;
|
40
|
+
|
41
|
+
}
|
42
|
+
ol.breadcrumb li {
|
43
|
+
font-size: 14px;
|
44
|
+
}
|
45
|
+
|
46
|
+
ol.breadcrumb > li + li:before {
|
47
|
+
content: "\00bb\00a0";
|
48
|
+
}
|
49
|
+
|
50
|
+
ol.breadcrumb {
|
51
|
+
background: transparent;
|
52
|
+
border: 0;
|
53
|
+
border-radius: 0;
|
54
|
+
display: block;
|
55
|
+
padding: 0;
|
56
|
+
margin-bottom: 0;
|
57
|
+
}
|
58
|
+
ol.breadcrumb li a {
|
59
|
+
color: #fff;
|
60
|
+
}
|
61
|
+
|
62
|
+
ol.breadcrumb span {
|
63
|
+
font-size: 12px;
|
64
|
+
letter-spacing: 1px;
|
65
|
+
text-transform: none;
|
66
|
+
text-decoration: none;
|
67
|
+
color: $breadcrumb-span-color;
|
68
|
+
opacity: .5;
|
69
|
+
}
|
70
|
+
|
71
|
+
ol.breadcrumb li.active span {
|
72
|
+
opacity: 1;
|
73
|
+
}
|
74
|
+
ol.breadcrumb li span:hover {
|
75
|
+
opacity: 1;
|
76
|
+
}
|
77
|
+
|
78
|
+
|
79
|
+
/* Bread Crumb Container */
|
80
|
+
|
81
|
+
.breadcrumb-container{
|
82
|
+
background-color: $breadcrumb-background-color;
|
83
|
+
padding-top: 10px;
|
84
|
+
padding-bottom: 10px;
|
85
|
+
}
|
86
|
+
|
87
|
+
.breadcrumb-container > p {
|
88
|
+
color: #fff;
|
89
|
+
}
|
90
|
+
|
91
|
+
.breadcrumb-inner-container h1, .breadcrumb-inner-container h2, .breadcrumb-inner-container h3{
|
92
|
+
color: $breadcrumb-title-color;
|
93
|
+
}
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
@@ -0,0 +1,91 @@
|
|
1
|
+
// Full Width Slider
|
2
|
+
.carousel-fade .carousel-inner .item {
|
3
|
+
opacity: 0;
|
4
|
+
transition-property: opacity;
|
5
|
+
}
|
6
|
+
.carousel-fade .carousel-inner .active {
|
7
|
+
opacity: 1;
|
8
|
+
}
|
9
|
+
.carousel-fade .carousel-inner .active.left,
|
10
|
+
.carousel-fade .carousel-inner .active.right {
|
11
|
+
left: 0;
|
12
|
+
opacity: 0;
|
13
|
+
z-index: 1;
|
14
|
+
}
|
15
|
+
.carousel-fade .carousel-inner .next.left,
|
16
|
+
.carousel-fade .carousel-inner .prev.right {
|
17
|
+
opacity: 1;
|
18
|
+
}
|
19
|
+
.carousel-fade .carousel-control {
|
20
|
+
z-index: 2;
|
21
|
+
}
|
22
|
+
@media all and (transform-3d),
|
23
|
+
(-webkit-transform-3d) {
|
24
|
+
.carousel-fade .carousel-inner > .item.next,
|
25
|
+
.carousel-fade .carousel-inner > .item.active.right {
|
26
|
+
opacity: 0;
|
27
|
+
}
|
28
|
+
.carousel-fade .carousel-inner > .item.prev,
|
29
|
+
.carousel-fade .carousel-inner > .item.active.left {
|
30
|
+
opacity: 0;
|
31
|
+
}
|
32
|
+
.carousel-fade .carousel-inner > .item.next.left,
|
33
|
+
.carousel-fade .carousel-inner > .item.prev.right,
|
34
|
+
.carousel-fade .carousel-inner > .item.active {
|
35
|
+
opacity: 1;
|
36
|
+
}
|
37
|
+
}
|
38
|
+
.item:nth-child(1) {
|
39
|
+
-webkit-background-size: cover;
|
40
|
+
-moz-background-size: cover;
|
41
|
+
-o-background-size: cover;
|
42
|
+
background-size: cover;
|
43
|
+
}
|
44
|
+
.item:nth-child(2) {
|
45
|
+
-webkit-background-size: cover;
|
46
|
+
-moz-background-size: cover;
|
47
|
+
-o-background-size: cover;
|
48
|
+
background-size: cover;
|
49
|
+
}
|
50
|
+
.item:nth-child(3) {
|
51
|
+
-webkit-background-size: cover;
|
52
|
+
-moz-background-size: cover;
|
53
|
+
-o-background-size: cover;
|
54
|
+
background-size: cover;
|
55
|
+
}
|
56
|
+
.carousel .item {
|
57
|
+
position: fixed;
|
58
|
+
z-index: 99999;
|
59
|
+
width: 100%;
|
60
|
+
height: $jumbotron-height + 100px;
|
61
|
+
margin-top: $navbar-height;
|
62
|
+
}
|
63
|
+
.carousel.slide.carousel-fade {
|
64
|
+
position: absolute;
|
65
|
+
top: 0px;
|
66
|
+
z-index: -1;
|
67
|
+
}
|
68
|
+
nav#universal-nav {
|
69
|
+
z-index: 2;
|
70
|
+
position: static;
|
71
|
+
}
|
72
|
+
nav#main-navigation {
|
73
|
+
z-index: 999999;
|
74
|
+
}
|
75
|
+
#content-container {
|
76
|
+
z-index: 1;
|
77
|
+
background-color: $body-bg;
|
78
|
+
position: relative;
|
79
|
+
}
|
80
|
+
div#jumbotron {
|
81
|
+
text-align: center;
|
82
|
+
height: $jumbotron-height;
|
83
|
+
z-index: 0;
|
84
|
+
position: relative;
|
85
|
+
background: none;
|
86
|
+
}
|
87
|
+
@media (max-width: $screen-sm-min){
|
88
|
+
#jumbotron {
|
89
|
+
font-size: 32px;
|
90
|
+
}
|
91
|
+
}
|
@@ -0,0 +1,312 @@
|
|
1
|
+
|
2
|
+
.homepage-image-owl{
|
3
|
+
height: auto;
|
4
|
+
width: auto;
|
5
|
+
}
|
6
|
+
.homepage-image-project{
|
7
|
+
height: 206.5px;
|
8
|
+
width: auto;
|
9
|
+
overflow: auto;
|
10
|
+
}
|
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
|
+
a.carousel-control{
|
45
|
+
border-radius: 50px;
|
46
|
+
border: solid 1px white;
|
47
|
+
height: 50px;
|
48
|
+
width: 50px;
|
49
|
+
vertical-align: middle;
|
50
|
+
margin-top: auto;
|
51
|
+
margin-bottom: auto;
|
52
|
+
}
|
53
|
+
|
54
|
+
a.carousel-control span.glyphicon-menu-left {
|
55
|
+
top: 12px;
|
56
|
+
left: -5px;
|
57
|
+
}
|
58
|
+
a.carousel-control span.glyphicon-menu-right {
|
59
|
+
top: 12px;
|
60
|
+
right: 2px;
|
61
|
+
}
|
62
|
+
|
63
|
+
|
64
|
+
.row.activity-holder.center-block {
|
65
|
+
height: auto;
|
66
|
+
}
|
67
|
+
|
68
|
+
.activity-holder .activity-block {
|
69
|
+
border: #fff 3px solid;
|
70
|
+
background: transparent !important;
|
71
|
+
}
|
72
|
+
.activity-block {
|
73
|
+
margin-top: 0px !important;
|
74
|
+
background: transparent !important;
|
75
|
+
}
|
76
|
+
|
77
|
+
.activity-holder p {
|
78
|
+
height:99px;
|
79
|
+
}
|
80
|
+
|
81
|
+
.activity-holder .activity-block {
|
82
|
+
border:0 !important;
|
83
|
+
background: transparent;
|
84
|
+
}
|
85
|
+
.activity-block {
|
86
|
+
border: 0 !important;
|
87
|
+
background: transparent;
|
88
|
+
margin-top: 70px;
|
89
|
+
}
|
90
|
+
|
91
|
+
.activity-holder p {
|
92
|
+
height: auto;
|
93
|
+
}
|
94
|
+
|
95
|
+
.carousel-inner > .item > div.slider-img {
|
96
|
+
position: absolute;
|
97
|
+
top: 0;
|
98
|
+
left: 0;
|
99
|
+
min-width: 100%;
|
100
|
+
height: 500px;
|
101
|
+
}
|
102
|
+
|
103
|
+
//Caption divs for home page content on slider
|
104
|
+
.carousel-caption.top-caption {
|
105
|
+
top: 0;
|
106
|
+
margin-top: 47px;
|
107
|
+
}
|
108
|
+
|
109
|
+
.carousel-caption.right-caption {
|
110
|
+
top: 0;
|
111
|
+
margin-top: 47px;
|
112
|
+
right:-100px;
|
113
|
+
}
|
114
|
+
|
115
|
+
|
116
|
+
/* Left and Right Carousel Control Styles*/
|
117
|
+
a.left.carousel-control {
|
118
|
+
display: none;
|
119
|
+
}
|
120
|
+
a.right.carousel-control{
|
121
|
+
display: none;
|
122
|
+
}
|
123
|
+
|
124
|
+
/* Responsive CSS for Homepage */
|
125
|
+
|
126
|
+
@media only screen and (max-width: $screen-xs-min) {
|
127
|
+
.hero-banner {
|
128
|
+
padding-top: 0px;
|
129
|
+
min-height: auto;
|
130
|
+
}
|
131
|
+
|
132
|
+
.hero-banner h1 {
|
133
|
+
font-size: 20pt;
|
134
|
+
}
|
135
|
+
|
136
|
+
.hero-banner p.sub-tag {
|
137
|
+
width: 90%;
|
138
|
+
margin-top: 10px;
|
139
|
+
margin-bottom: 20px;
|
140
|
+
}
|
141
|
+
|
142
|
+
.activity-container {
|
143
|
+
margin-top: 0px;
|
144
|
+
padding-top: 0px;
|
145
|
+
}
|
146
|
+
|
147
|
+
.activity-block img {
|
148
|
+
width: auto;
|
149
|
+
}
|
150
|
+
|
151
|
+
.activity-holder .col-md-3 {
|
152
|
+
border-bottom: 1px solid #ccc;
|
153
|
+
padding-bottom: 10px;
|
154
|
+
padding-top: 10px;
|
155
|
+
}
|
156
|
+
}
|
157
|
+
|
158
|
+
.hero-banner {
|
159
|
+
padding-top: 0px;
|
160
|
+
min-height: auto;
|
161
|
+
}
|
162
|
+
|
163
|
+
.hero-banner h1 {
|
164
|
+
font-size: 20pt;
|
165
|
+
}
|
166
|
+
|
167
|
+
.hero-banner p.sub-tag {
|
168
|
+
width: 90%;
|
169
|
+
margin-top: 10px;
|
170
|
+
margin-bottom: 20px;
|
171
|
+
}
|
172
|
+
|
173
|
+
.activity-container {
|
174
|
+
margin-top: 0px;
|
175
|
+
padding-top: 0px;
|
176
|
+
}
|
177
|
+
|
178
|
+
.activity-block img {
|
179
|
+
width: auto;
|
180
|
+
}
|
181
|
+
|
182
|
+
.activity-holder .col-md-3 {
|
183
|
+
border-bottom: 1px solid #ccc;
|
184
|
+
padding-bottom: 10px;
|
185
|
+
padding-top: 10px;
|
186
|
+
}
|
187
|
+
|
188
|
+
|
189
|
+
.owl-dots {
|
190
|
+
margin-bottom: 20px;
|
191
|
+
}
|
192
|
+
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
|
193
|
+
background-color: $brand-primary !important;
|
194
|
+
transition: all 1s ease;
|
195
|
+
}
|
196
|
+
|
197
|
+
.activity-container {
|
198
|
+
/*margin-top: 50px;
|
199
|
+
padding-bottom: 30px;*/
|
200
|
+
border-top: 1px solid #efefef;
|
201
|
+
}
|
202
|
+
|
203
|
+
.activity-block img {
|
204
|
+
width: 100%;
|
205
|
+
margin-bottom: 10px;
|
206
|
+
}
|
207
|
+
|
208
|
+
.activity-holder .activity-block {
|
209
|
+
border: #fff 3px solid;
|
210
|
+
background: #fff;
|
211
|
+
|
212
|
+
}
|
213
|
+
.home-project .activity-block img {
|
214
|
+
height: 205px;
|
215
|
+
width: auto;
|
216
|
+
}
|
217
|
+
|
218
|
+
.activity-block {
|
219
|
+
border: #fff 3px solid;
|
220
|
+
background: #fff;
|
221
|
+
margin-top: 70px;
|
222
|
+
}
|
223
|
+
.activity-block a{
|
224
|
+
color: black;
|
225
|
+
text-decoration: none;
|
226
|
+
transition: all 1s ease;
|
227
|
+
}
|
228
|
+
.activity-block a:hover{
|
229
|
+
text-decoration: none;
|
230
|
+
color: $brand-primary;
|
231
|
+
transition: all 1s ease;
|
232
|
+
}
|
233
|
+
|
234
|
+
.activity-block .item {
|
235
|
+
display:none;
|
236
|
+
}
|
237
|
+
|
238
|
+
.owl-text{
|
239
|
+
min-height:100px;
|
240
|
+
}
|
241
|
+
.activity-holder p {
|
242
|
+
height: 99px;
|
243
|
+
}
|
244
|
+
@media (min-width: $screen-sm-min) {
|
245
|
+
.row .activity-holder{
|
246
|
+
height:529.44px;
|
247
|
+
}
|
248
|
+
}
|
249
|
+
@media (max-width: $screen-sm-min) {
|
250
|
+
.row .activity-holder{
|
251
|
+
height:auto;
|
252
|
+
}
|
253
|
+
.activity-holder p {
|
254
|
+
height: auto;
|
255
|
+
}
|
256
|
+
.owl-text{
|
257
|
+
min-height:auto;
|
258
|
+
}
|
259
|
+
.activity-block {
|
260
|
+
margin-top: 70px;
|
261
|
+
}
|
262
|
+
}
|
263
|
+
|
264
|
+
.activity-holder a.btn-primary:hover {
|
265
|
+
background-color: rgb(25, 148, 123);
|
266
|
+
color: #fff;
|
267
|
+
border-color: rgb(25, 148, 123);
|
268
|
+
}
|
269
|
+
|
270
|
+
.owl-prev {
|
271
|
+
background-color: #cccccc !important;
|
272
|
+
transition: all 200ms linear;
|
273
|
+
}
|
274
|
+
.owl-next {
|
275
|
+
background-color: #cccccc !important;
|
276
|
+
transition: all 200ms linear;
|
277
|
+
}
|
278
|
+
.owl-prev:hover {
|
279
|
+
background-color: #545454 !important;
|
280
|
+
}
|
281
|
+
.owl-next:hover {
|
282
|
+
background-color: #545454 !important;
|
283
|
+
}
|
284
|
+
|
285
|
+
.carousel-inner > .item > div.slider-img {
|
286
|
+
position: absolute;
|
287
|
+
top: 0;
|
288
|
+
left: 0;
|
289
|
+
min-width: 100%;
|
290
|
+
height: 500px;
|
291
|
+
}
|
292
|
+
|
293
|
+
/* Caption divs for home page content on slider */
|
294
|
+
.carousel-caption.top-caption {
|
295
|
+
top: 0;
|
296
|
+
margin-top: 47px;
|
297
|
+
}
|
298
|
+
|
299
|
+
.carousel-caption.right-caption {
|
300
|
+
top: 0;
|
301
|
+
margin-top: 47px;
|
302
|
+
right:-100px;
|
303
|
+
}
|
304
|
+
|
305
|
+
|
306
|
+
// Make sure the owl-dots are displayed correctly.
|
307
|
+
button.owl-dot {
|
308
|
+
background: transparent;
|
309
|
+
border: none;
|
310
|
+
outline: none;
|
311
|
+
}
|
312
|
+
|