jumbo-jekyll-theme-test 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +26 -0
- data/_config.yml +122 -0
- data/_data/authors.yml +7 -0
- data/_data/footer.yml +55 -0
- data/_data/nav.yml +77 -0
- data/_data/news.yaml +230 -0
- data/_data/settings.yml +148 -0
- data/_data/sidebar-nav.yml +23 -0
- data/_data/sticky-tab-bar.yml +29 -0
- data/_includes/breadcrumb.html +97 -0
- data/_includes/css.html +9 -0
- data/_includes/custom.html +1 -0
- data/_includes/display-blog-posts.html +67 -0
- data/_includes/disqus-comments.html +14 -0
- data/_includes/footer.html +70 -0
- data/_includes/github-edit.html +73 -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 +87 -0
- data/_includes/linaro-404.html +13 -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-comments.html +9 -0
- data/_includes/post-sidebar.html +74 -0
- data/_includes/post-tags.html +9 -0
- data/_includes/schema.html +50 -0
- data/_includes/shape-divider.html +12 -0
- data/_includes/shape.html +52 -0
- data/_includes/sidebar.html +55 -0
- data/_includes/sticky-tab-bar.html +63 -0
- data/_includes/universal-nav.html +28 -0
- data/_includes/youtube.html +7 -0
- data/_layouts/container-breadcrumb-left-sidebar.html +10 -0
- data/_layouts/container-breadcrumb-right-sidebar.html +9 -0
- data/_layouts/container-breadcrumb-tabs.html +7 -0
- data/_layouts/container-breadcrumb.html +6 -0
- data/_layouts/container-left-sidebar.html +9 -0
- data/_layouts/container-right-sidebar.html +9 -0
- data/_layouts/container.html +9 -0
- data/_layouts/default.html +31 -0
- data/_layouts/full-width-breadcrumb.html +10 -0
- data/_layouts/full-width.html +9 -0
- data/_layouts/home.html +21 -0
- data/_layouts/post-index.html +19 -0
- data/_layouts/post-no-sidebar.html +0 -0
- data/_layouts/post-old.html +70 -0
- data/_layouts/post.html +240 -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 +58 -0
- data/_sass/app/contact.scss +3 -0
- data/_sass/app/custom.scss +1 -0
- data/_sass/app/home.scss +18 -0
- data/_sass/app/overrides.scss +36 -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 +922 -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 +12 -0
- data/_sass/core/404.scss +189 -0
- data/_sass/core/animations.scss +125 -0
- data/_sass/core/blog.scss +441 -0
- data/_sass/core/breadcrumb.scss +97 -0
- data/_sass/core/carousel-styles.scss +3 -0
- data/_sass/core/carousel.scss +318 -0
- data/_sass/core/cookieconsent.scss +42 -0
- data/_sass/core/critical.scss +0 -0
- data/_sass/core/custom.scss +3 -0
- data/_sass/core/fa.scss +2336 -0
- data/_sass/core/flipclock.scss +434 -0
- data/_sass/core/font-awesome.min.scss +4 -0
- data/_sass/core/fonts.scss +3 -0
- data/_sass/core/footer.scss +169 -0
- data/_sass/core/forms.scss +3 -0
- data/_sass/core/homepage.scss +106 -0
- data/_sass/core/jumbotron.scss +51 -0
- data/_sass/core/lightbox.scss +212 -0
- data/_sass/core/nav.scss +971 -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 +630 -0
- data/_sass/core/twitter-feed.scss +414 -0
- data/_sass/core/universal-nav.scss +154 -0
- data/_sass/core/youtube.scss +65 -0
- data/_sass/home.scss +6 -0
- data/assets/css/main-404.scss +18 -0
- data/assets/css/main-blog.scss +19 -0
- data/assets/css/main-contact.scss +23 -0
- data/assets/css/main-home.scss +22 -0
- data/assets/css/main-lightbox.scss +29 -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/background-image.jpg +0 -0
- data/assets/images/banner.jpg +0 -0
- data/assets/images/breadcrumb-image.jpg +0 -0
- data/assets/images/close.png +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/custom.js +0 -0
- data/assets/js/app/facebook.js +8 -0
- data/assets/js/app/home.js +46 -0
- data/assets/js/app/main.js +143 -0
- data/assets/js/app/scroll-to-anchors.js +10 -0
- data/assets/js/app/sticky-tab-bar.js +72 -0
- data/assets/js/app/tables.js +35 -0
- data/assets/js/package-blog.js +10 -0
- data/assets/js/package-extended.js +14 -0
- data/assets/js/package-home.js +12 -0
- data/assets/js/package-main.js +10 -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 +1504 -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/lightbox.js +523 -0
- data/assets/js/vendor/loadCSS.js +35 -0
- data/assets/js/vendor/ls.unveilhooks.js +145 -0
- data/assets/js/vendor/mc.js +255 -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 +528 -0
@@ -0,0 +1,97 @@
|
|
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
|
+
}
|
57
|
+
ol.breadcrumb li a {
|
58
|
+
color: #fff;
|
59
|
+
}
|
60
|
+
|
61
|
+
ol.breadcrumb span {
|
62
|
+
font-size: 12px;
|
63
|
+
letter-spacing: 1px;
|
64
|
+
text-transform: none;
|
65
|
+
text-decoration: none;
|
66
|
+
color: $breadcrumb-span-color;
|
67
|
+
opacity: .5;
|
68
|
+
}
|
69
|
+
|
70
|
+
ol.breadcrumb li.active span {
|
71
|
+
opacity: 1;
|
72
|
+
}
|
73
|
+
ol.breadcrumb li span:hover {
|
74
|
+
opacity: 1;
|
75
|
+
}
|
76
|
+
|
77
|
+
|
78
|
+
/* Bread Crumb Container */
|
79
|
+
|
80
|
+
.breadcrumb-container{
|
81
|
+
background-color: $breadcrumb-background-color;
|
82
|
+
padding-top: 5px;
|
83
|
+
padding-bottom: 5px;
|
84
|
+
}
|
85
|
+
|
86
|
+
.breadcrumb-container > p {
|
87
|
+
color: #fff;
|
88
|
+
}
|
89
|
+
|
90
|
+
.breadcrumb-inner-container h1, .breadcrumb-inner-container h2, .breadcrumb-inner-container h3{
|
91
|
+
color: $breadcrumb-title-color;
|
92
|
+
}
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
@@ -0,0 +1,318 @@
|
|
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
|
+
|
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
|
+
}
|
129
|
+
|
130
|
+
/* Responsive CSS for Homepage */
|
131
|
+
|
132
|
+
@media only screen and (max-width: $screen-xs-min) {
|
133
|
+
.hero-banner {
|
134
|
+
padding-top: 0px;
|
135
|
+
min-height: auto;
|
136
|
+
}
|
137
|
+
|
138
|
+
.hero-banner h1 {
|
139
|
+
font-size: 20pt;
|
140
|
+
}
|
141
|
+
|
142
|
+
.hero-banner p.sub-tag {
|
143
|
+
width: 90%;
|
144
|
+
margin-top: 10px;
|
145
|
+
margin-bottom: 20px;
|
146
|
+
}
|
147
|
+
|
148
|
+
.activity-container {
|
149
|
+
margin-top: 0px;
|
150
|
+
padding-top: 0px;
|
151
|
+
}
|
152
|
+
|
153
|
+
.activity-block img {
|
154
|
+
width: auto;
|
155
|
+
}
|
156
|
+
|
157
|
+
.activity-holder .col-md-3 {
|
158
|
+
border-bottom: 1px solid #ccc;
|
159
|
+
padding-bottom: 10px;
|
160
|
+
padding-top: 10px;
|
161
|
+
}
|
162
|
+
}
|
163
|
+
|
164
|
+
.hero-banner {
|
165
|
+
padding-top: 0px;
|
166
|
+
min-height: auto;
|
167
|
+
}
|
168
|
+
|
169
|
+
.hero-banner h1 {
|
170
|
+
font-size: 20pt;
|
171
|
+
}
|
172
|
+
|
173
|
+
.hero-banner p.sub-tag {
|
174
|
+
width: 90%;
|
175
|
+
margin-top: 10px;
|
176
|
+
margin-bottom: 20px;
|
177
|
+
}
|
178
|
+
|
179
|
+
.activity-container {
|
180
|
+
margin-top: 0px;
|
181
|
+
padding-top: 0px;
|
182
|
+
}
|
183
|
+
|
184
|
+
.activity-block img {
|
185
|
+
width: auto;
|
186
|
+
}
|
187
|
+
|
188
|
+
.activity-holder .col-md-3 {
|
189
|
+
border-bottom: 1px solid #ccc;
|
190
|
+
padding-bottom: 10px;
|
191
|
+
padding-top: 10px;
|
192
|
+
}
|
193
|
+
|
194
|
+
|
195
|
+
.owl-dots {
|
196
|
+
margin-bottom: 20px;
|
197
|
+
}
|
198
|
+
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
|
199
|
+
background-color: $brand-primary !important;
|
200
|
+
transition: all 1s ease;
|
201
|
+
}
|
202
|
+
|
203
|
+
.activity-container {
|
204
|
+
/*margin-top: 50px;
|
205
|
+
padding-bottom: 30px;*/
|
206
|
+
border-top: 1px solid #efefef;
|
207
|
+
}
|
208
|
+
|
209
|
+
.activity-block img {
|
210
|
+
width: 100%;
|
211
|
+
margin-bottom: 10px;
|
212
|
+
}
|
213
|
+
|
214
|
+
.activity-holder .activity-block {
|
215
|
+
border: #fff 3px solid;
|
216
|
+
background: #fff;
|
217
|
+
|
218
|
+
}
|
219
|
+
.home-project .activity-block img {
|
220
|
+
height: 205px;
|
221
|
+
width: auto;
|
222
|
+
}
|
223
|
+
|
224
|
+
.activity-block {
|
225
|
+
border: #fff 3px solid;
|
226
|
+
background: #fff;
|
227
|
+
margin-top: 70px;
|
228
|
+
}
|
229
|
+
.activity-block a{
|
230
|
+
color: black;
|
231
|
+
text-decoration: none;
|
232
|
+
transition: all 1s ease;
|
233
|
+
}
|
234
|
+
.activity-block a:hover{
|
235
|
+
text-decoration: none;
|
236
|
+
color: $brand-primary;
|
237
|
+
transition: all 1s ease;
|
238
|
+
}
|
239
|
+
|
240
|
+
.activity-block .item {
|
241
|
+
display:none;
|
242
|
+
}
|
243
|
+
|
244
|
+
.owl-text{
|
245
|
+
min-height:100px;
|
246
|
+
}
|
247
|
+
.activity-holder p {
|
248
|
+
height: 99px;
|
249
|
+
}
|
250
|
+
@media (min-width: $screen-sm-min) {
|
251
|
+
.row .activity-holder{
|
252
|
+
height:529.44px;
|
253
|
+
}
|
254
|
+
}
|
255
|
+
@media (max-width: $screen-sm-min) {
|
256
|
+
.row .activity-holder{
|
257
|
+
height:auto;
|
258
|
+
}
|
259
|
+
.activity-holder p {
|
260
|
+
height: auto;
|
261
|
+
}
|
262
|
+
.owl-text{
|
263
|
+
min-height:auto;
|
264
|
+
}
|
265
|
+
.activity-block {
|
266
|
+
margin-top: 70px;
|
267
|
+
}
|
268
|
+
}
|
269
|
+
|
270
|
+
.activity-holder a.btn-primary:hover {
|
271
|
+
background-color: rgb(25, 148, 123);
|
272
|
+
color: #fff;
|
273
|
+
border-color: rgb(25, 148, 123);
|
274
|
+
}
|
275
|
+
|
276
|
+
.owl-prev {
|
277
|
+
background-color: #cccccc !important;
|
278
|
+
transition: all 200ms linear;
|
279
|
+
}
|
280
|
+
.owl-next {
|
281
|
+
background-color: #cccccc !important;
|
282
|
+
transition: all 200ms linear;
|
283
|
+
}
|
284
|
+
.owl-prev:hover {
|
285
|
+
background-color: #545454 !important;
|
286
|
+
}
|
287
|
+
.owl-next:hover {
|
288
|
+
background-color: #545454 !important;
|
289
|
+
}
|
290
|
+
|
291
|
+
.carousel-inner > .item > div.slider-img {
|
292
|
+
position: absolute;
|
293
|
+
top: 0;
|
294
|
+
left: 0;
|
295
|
+
min-width: 100%;
|
296
|
+
height: 500px;
|
297
|
+
}
|
298
|
+
|
299
|
+
/* Caption divs for home page content on slider */
|
300
|
+
.carousel-caption.top-caption {
|
301
|
+
top: 0;
|
302
|
+
margin-top: 47px;
|
303
|
+
}
|
304
|
+
|
305
|
+
.carousel-caption.right-caption {
|
306
|
+
top: 0;
|
307
|
+
margin-top: 47px;
|
308
|
+
right:-100px;
|
309
|
+
}
|
310
|
+
|
311
|
+
|
312
|
+
// Make sure the owl-dots are displayed correctly.
|
313
|
+
button.owl-dot {
|
314
|
+
background: transparent;
|
315
|
+
border: none;
|
316
|
+
outline: none;
|
317
|
+
}
|
318
|
+
|
@@ -0,0 +1,42 @@
|
|
1
|
+
.cc-window{opacity:1;transition:opacity 1s ease}.cc-window.cc-invisible{opacity:0}.cc-animate.cc-revoke{transition:transform 1s ease}.cc-animate.cc-revoke.cc-top{transform:translateY(-2em)}.cc-animate.cc-revoke.cc-bottom{transform:translateY(2em)}.cc-animate.cc-revoke.cc-active.cc-bottom,.cc-animate.cc-revoke.cc-active.cc-top,.cc-revoke:hover{transform:translateY(0)}.cc-grower{max-height:0;overflow:hidden;transition:max-height 1s}
|
2
|
+
.cc-link,.cc-revoke:hover{text-decoration:underline}.cc-revoke,.cc-window{position:fixed;overflow:hidden;box-sizing:border-box;font-family:$font-family-sans-serif;font-size:16px;line-height:1.5em;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;z-index:9999}.cc-window.cc-static{position:static}.cc-window.cc-floating{padding:2em;max-width:24em;-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner{padding:1em 1.8em;width:100%;-ms-flex-direction:row;flex-direction:row}.cc-revoke{padding:.5em}.cc-header{font-size:18px;font-weight:700}.cc-btn,.cc-close,.cc-link,.cc-revoke{cursor:pointer}.cc-link{opacity:.8;display:inline-block;padding:.2em}.cc-link:hover{opacity:1}.cc-link:active,.cc-link:visited{color:initial}.cc-btn{display:block;padding:.4em .8em;font-size:.9em;font-weight:700;border-width:2px;border-style:solid;text-align:center;white-space:nowrap}.cc-banner .cc-btn:last-child{min-width:140px}.cc-highlight .cc-btn:first-child{background-color:transparent;border-color:transparent}.cc-highlight .cc-btn:first-child:focus,.cc-highlight .cc-btn:first-child:hover{background-color:transparent;text-decoration:underline}.cc-close{display:block;position:absolute;top:.5em;right:.5em;font-size:1.6em;opacity:.9;line-height:.75}.cc-close:focus,.cc-close:hover{opacity:1}
|
3
|
+
.cc-revoke.cc-top{top:0;left:3em;border-bottom-left-radius:.5em;border-bottom-right-radius:.5em}.cc-revoke.cc-bottom{bottom:0;left:3em;border-top-left-radius:.5em;border-top-right-radius:.5em}.cc-revoke.cc-left{left:3em;right:unset}.cc-revoke.cc-right{right:3em;left:unset}.cc-top{top:1em}.cc-left{left:1em}.cc-right{right:1em}.cc-bottom{bottom:1em}.cc-floating>.cc-link{margin-bottom:1em}.cc-floating .cc-message{display:block;margin-bottom:1em}.cc-window.cc-floating .cc-compliance{-ms-flex:1;flex:1}.cc-window.cc-banner{-ms-flex-align:center;align-items:center}.cc-banner.cc-top{left:0;right:0;top:0}.cc-banner.cc-bottom{left:0;right:0;bottom:0}.cc-banner .cc-message{-ms-flex:1;flex:1}.cc-compliance{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:justify;align-content:space-between}.cc-compliance>.cc-btn{-ms-flex:1;flex:1}.cc-btn+.cc-btn{margin-left:.5em}
|
4
|
+
@media print{.cc-revoke,.cc-window{display:none}}@media screen and (max-width:900px){.cc-btn{white-space:normal}}@media screen and (max-width:414px) and (orientation:portrait),screen and (max-width:736px) and (orientation:landscape){.cc-window.cc-top{top:0}.cc-window.cc-bottom{bottom:0}.cc-window.cc-banner,.cc-window.cc-left,.cc-window.cc-right{left:0;right:0}.cc-window.cc-banner{-ms-flex-direction:column;flex-direction:column}.cc-window.cc-banner .cc-compliance{-ms-flex:1;flex:1}.cc-window.cc-floating{max-width:none}.cc-window .cc-message{margin-bottom:1em}.cc-window.cc-banner{-ms-flex-align:unset;align-items:unset}}
|
5
|
+
.cc-floating.cc-theme-classic{padding:1.2em;border-radius:5px}.cc-floating.cc-type-info.cc-theme-classic .cc-compliance{text-align:center;display:inline;-ms-flex:none;flex:none}.cc-theme-classic .cc-btn{border-radius:5px}.cc-theme-classic .cc-btn:last-child{min-width:140px}.cc-floating.cc-type-info.cc-theme-classic .cc-btn{display:inline-block}
|
6
|
+
.cc-theme-edgeless.cc-window{padding:0}.cc-floating.cc-theme-edgeless .cc-message{margin:2em 2em 1.5em}.cc-banner.cc-theme-edgeless .cc-btn{margin:0;padding:.8em 1.8em;height:100%}.cc-banner.cc-theme-edgeless .cc-message{margin-left:1em}.cc-floating.cc-theme-edgeless .cc-btn+.cc-btn{margin-left:0}
|
7
|
+
|
8
|
+
//Button
|
9
|
+
a.cc-btn.cc-dismiss {
|
10
|
+
border: 1px $brand-primary solid;
|
11
|
+
background-color: $cookie-consent-bg;
|
12
|
+
padding: 2px;
|
13
|
+
}
|
14
|
+
|
15
|
+
//Message
|
16
|
+
.cc-floating .cc-message {
|
17
|
+
display: block;
|
18
|
+
margin-bottom: 6px;
|
19
|
+
font-size: 14px;
|
20
|
+
text-align: left;
|
21
|
+
}
|
22
|
+
|
23
|
+
// Learn More link
|
24
|
+
a.cc-link {
|
25
|
+
color: $brand-primary !important;
|
26
|
+
}
|
27
|
+
|
28
|
+
// Main Div
|
29
|
+
.cc-window.cc-floating.cc-type-info.cc-theme-classic.cc-bottom.cc-right.cc-color-override-3938 {
|
30
|
+
background-color: $navbar-inverse-bg !important;
|
31
|
+
color: $navbar-text-color !important;
|
32
|
+
padding: 10px;
|
33
|
+
border-radius: 5px;
|
34
|
+
height: auto;
|
35
|
+
}
|
36
|
+
|
37
|
+
//Got It! Div around button
|
38
|
+
.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
|
39
|
+
text-align: right !important;
|
40
|
+
display: block !important;
|
41
|
+
|
42
|
+
}
|